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.

113 lines
4.1 KiB

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.1109</api.version>
  36. <dwgson.version>2.8.6</dwgson.version>
  37. <DWQueue.version>1.05</DWQueue.version>
  38. <netty.version>4.1.67.Final</netty.version>
  39. <!--解决模型驱动升级报错-->
  40. <lettuce.version>5.3.4.RELEASE</lettuce.version>
  41. </properties>
  42. <dependencies>
  43. <dependency>
  44. <groupId>com.digiwin.athena</groupId>
  45. <artifactId>athena-opt-common</artifactId>
  46. <version>1.0.107-SNAPSHOT</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>com.digiwin</groupId>
  50. <artifactId>dwapiplatform-simplified-starter</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.digiwin</groupId>
  56. <artifactId>dwapiplatform-simplified-starter</artifactId>
  57. <version>${api.version}</version>
  58. </dependency>
  59. <!--引入 lmc-sdk 依赖包-->
  60. <dependency>
  61. <groupId>com.digiwin.dap.middleware</groupId>
  62. <artifactId>lmc-sdk-log4j2</artifactId>
  63. <version>2.2.0.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.digiwin.lcdp</groupId>
  67. <artifactId>lcdp-modeldriven</artifactId>
  68. <version>1.0.2.62</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>junit</groupId>
  72. <artifactId>junit</artifactId>
  73. <version>3.8.1</version>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. <repositories>
  78. <repository>
  79. <id>athena-releases</id>
  80. <name>Nexus Releases Repository athena</name>
  81. <url>https://athena-devops-nexus.digiwincloud.com.cn/content/repositories/releases/</url>
  82. </repository>
  83. <repository>
  84. <id>athena-snapshots</id>
  85. <name>Nexus Release Repository athena</name>
  86. <url>https://athena-devops-nexus.digiwincloud.com.cn/content/repositories/snapshots/</url>
  87. </repository>
  88. <repository>
  89. <id>releases</id>
  90. <name>Nexus Releases Repository</name>
  91. <url>${nexus.ip}/content/repositories/releases/</url>
  92. </repository>
  93. </repositories>
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>3.3</version>
  99. <configuration>
  100. <source>1.8</source>
  101. <target>1.8</target>
  102. <compilerArgument>-parameters</compilerArgument>
  103. <testCompilerArgument>-parameters</testCompilerArgument>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>