You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
4.0 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.0.1.RELEASE</version>
  10. </parent>
  11. <groupId>com.digiwin.athena.opt</groupId>
  12. <artifactId>athena_parent</artifactId>
  13. <version>1.0.0.1000</version>
  14. <packaging>pom</packaging>
  15. <modules>
  16. <module>develop</module>
  17. </modules>
  18. <distributionManagement>
  19. <repository>
  20. <id>releases</id>
  21. <name>Nexus Release Repository</name>
  22. <url>${nexus.ip}/content/repositories/releases/</url>
  23. </repository>
  24. <snapshotRepository>
  25. <id>snapshots</id>
  26. <name>Nexus Snapshots Repository</name>
  27. <url>${nexus.ip}/content/repositories/snapshots/</url>
  28. </snapshotRepository>
  29. </distributionManagement>
  30. <properties>
  31. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  32. <nexus.ip>https://repo.digiwincloud.com.cn/maven</nexus.ip>
  33. <revision>1.1.0.0</revision>
  34. <spring.version>5.0.5.RELEASE</spring.version>
  35. <api.version>5.2.0.1029</api.version>
  36. <dwgson.version>2.8.6</dwgson.version>
  37. <DWQueue.version>1.05</DWQueue.version>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>com.digiwin.athena</groupId>
  42. <artifactId>athena-opt-common</artifactId>
  43. <version>1.0.105-SNAPSHOT</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>com.digiwin</groupId>
  47. <artifactId>dwapiplatform-simplified-starter</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.digiwin</groupId>
  53. <artifactId>dwapiplatform-simplified-starter</artifactId>
  54. <version>${api.version}</version>
  55. </dependency>
  56. <!--引入 lmc-sdk 依赖包-->
  57. <dependency>
  58. <groupId>com.digiwin.dap.middleware</groupId>
  59. <artifactId>lmc-sdk-log4j2</artifactId>
  60. <version>2.2.0.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.digiwin.lcdp</groupId>
  64. <artifactId>lcdp-modeldriven</artifactId>
  65. <version>1.0.1.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>junit</groupId>
  69. <artifactId>junit</artifactId>
  70. <version>3.8.1</version>
  71. <scope>test</scope>
  72. </dependency>
  73. </dependencies>
  74. <repositories>
  75. <repository>
  76. <id>athena-releases</id>
  77. <name>Nexus Releases Repository athena</name>
  78. <url>https://athena-devops-nexus.digiwincloud.com.cn/content/repositories/releases/</url>
  79. </repository>
  80. <repository>
  81. <id>athena-snapshots</id>
  82. <name>Nexus Release Repository athena</name>
  83. <url>https://athena-devops-nexus.digiwincloud.com.cn/content/repositories/snapshots/</url>
  84. </repository>
  85. <repository>
  86. <id>releases</id>
  87. <name>Nexus Releases Repository</name>
  88. <url>${nexus.ip}/content/repositories/releases/</url>
  89. </repository>
  90. </repositories>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.3</version>
  96. <configuration>
  97. <source>1.8</source>
  98. <target>1.8</target>
  99. <compilerArgument>-parameters</compilerArgument>
  100. <testCompilerArgument>-parameters</testCompilerArgument>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>