pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 https://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-pom</artifactId>
  8. <version>1.0.1</version>
  9. <relativePath />
  10. </parent>
  11. <artifactId>platomix-unicom</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.platomix</groupId>
  15. <artifactId>platomix-gmetry-framework</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.platomix</groupId>
  20. <artifactId>platomix-gmetry-system-client</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.platomix</groupId>
  25. <artifactId>platomix-gmetry-openfeign</artifactId>
  26. <version>1.1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.oracle</groupId>
  30. <artifactId>ojdbc7</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.commons</groupId>
  34. <artifactId>commons-lang3</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-collections</groupId>
  38. <artifactId>commons-collections</artifactId>
  39. <version>3.2.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.itextpdf</groupId>
  43. <artifactId>itextpdf</artifactId>
  44. <version>5.5.13</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.itextpdf</groupId>
  48. <artifactId>itext-asian</artifactId>
  49. <version>5.2.0</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. <repositories>
  61. <repository>
  62. <id>alimaven</id>
  63. <name>aliyun maven</name>
  64. <url>https://maven.aliyun.com/repository/public/</url>
  65. <snapshots>
  66. <enabled>false</enabled>
  67. </snapshots>
  68. </repository>
  69. <repository>
  70. <id>platomix-release</id>
  71. <name>NexusReleases</name>
  72. <url>http://windata.platomix.net/nexus/repository/maven-public/</url>
  73. </repository>
  74. </repositories>
  75. </project>