pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>starRiverLake</artifactId>
  10. <packaging>jar</packaging>
  11. <name>starRiverLake</name>
  12. <description>ICe Distribution Service starRiverLake</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>2.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sencorsta</groupId>
  25. <artifactId>idsCore</artifactId>
  26. <version>2.0-SNAPSHOT</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <version>3.8.0</version>
  35. <configuration>
  36. <source>${maven.compiler.source}</source>
  37. <target>${maven.compiler.target}</target>
  38. <encoding>UTF-8</encoding>
  39. </configuration>
  40. </plugin>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-assembly-plugin</artifactId>
  44. <executions>
  45. <execution>
  46. <phase>package</phase>
  47. <goals>
  48. <goal>single</goal>
  49. </goals>
  50. <configuration>
  51. <archive>
  52. <manifest>
  53. <mainClass>
  54. com.sencorsta.starriverlake.StarRiverLakeMain
  55. </mainClass>
  56. </manifest>
  57. </archive>
  58. <descriptorRefs>
  59. <descriptorRef>jar-with-dependencies</descriptorRef>
  60. </descriptorRefs>
  61. </configuration>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>