pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.platomix</groupId>
  7. <artifactId>platomix-gmetry-xxljob</artifactId>
  8. <version>1.0.0-cloud</version>
  9. </parent>
  10. <artifactId>platomix-gmetry-xxljob-core</artifactId>
  11. <packaging>jar</packaging>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <!-- ********************** embed server: netty + gson ********************** -->
  15. <dependency>
  16. <groupId>io.netty</groupId>
  17. <artifactId>netty-all</artifactId>
  18. <version>${netty-all.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.code.gson</groupId>
  22. <artifactId>gson</artifactId>
  23. <version>${gson.version}</version>
  24. </dependency>
  25. <!-- ********************** plugin ********************** -->
  26. <!-- groovy-all -->
  27. <dependency>
  28. <groupId>org.codehaus.groovy</groupId>
  29. <artifactId>groovy</artifactId>
  30. <version>${groovy.version}</version>
  31. </dependency>
  32. <!-- spring-context -->
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-context</artifactId>
  36. <version>${spring.version}</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <!-- ********************** base ********************** -->
  40. <!-- slf4j -->
  41. <dependency>
  42. <groupId>org.slf4j</groupId>
  43. <artifactId>slf4j-api</artifactId>
  44. <version>${slf4j-api.version}</version>
  45. </dependency>
  46. <!-- javax.annotation-api -->
  47. <dependency>
  48. <groupId>javax.annotation</groupId>
  49. <artifactId>javax.annotation-api</artifactId>
  50. <version>${javax.annotation-api.version}</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-source-plugin</artifactId>
  59. <version>3.0.1</version>
  60. <configuration>
  61. <attach>true</attach>
  62. </configuration>
  63. <executions>
  64. <execution>
  65. <phase>compile</phase>
  66. <goals>
  67. <goal>jar</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>