pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.sencorsta</groupId>
  6. <artifactId>ids</artifactId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>idsUser</artifactId>
  10. <packaging>jar</packaging>
  11. <name>idsUser</name>
  12. <description>ICe Distribution Service idsUser</description>
  13. <url>http://www.sencorsta.com</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.sencorsta</groupId>
  20. <artifactId>idsCommon</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <version>3.8.0</version>
  30. <configuration>
  31. <source>${maven.compiler.source}</source>
  32. <target>${maven.compiler.target}</target>
  33. <encoding>UTF-8</encoding>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-assembly-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <phase>package</phase>
  42. <goals>
  43. <goal>single</goal>
  44. </goals>
  45. <configuration>
  46. <archive>
  47. <manifest>
  48. <mainClass>
  49. com.sencorsta.ids.idsuser.IdsUserMain
  50. </mainClass>
  51. </manifest>
  52. </archive>
  53. <descriptorRefs>
  54. <descriptorRef>jar-with-dependencies</descriptorRef>
  55. </descriptorRefs>
  56. </configuration>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>