pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.uas.cloud.base.jkes</groupId>
  7. <artifactId>ucloud-jkes</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.1.0</version>
  10. <modules>
  11. <module>jkes-core</module>
  12. <module>jkes-boot</module>
  13. <module>jkes-services</module>
  14. <module>jkes-integration-test</module>
  15. </modules>
  16. <properties>
  17. <jackson.version>2.8.0</jackson.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. <version>1.16.14</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-resources-plugin</artifactId>
  32. <version>2.6</version>
  33. <configuration>
  34. <encoding>UTF-8</encoding>
  35. </configuration>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>3.6.0</version>
  41. <configuration>
  42. <source>1.8</source>
  43. <target>1.8</target>
  44. <encoding>UTF-8</encoding>
  45. </configuration>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-surefire-plugin</artifactId>
  50. <version>2.18.1</version>
  51. <configuration>
  52. <argLine>-Djava.awt.headless=true</argLine>
  53. <argLine>-Dtests.security.manager=false</argLine>
  54. </configuration>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-source-plugin</artifactId>
  59. <version>3.0.1</version>
  60. <executions>
  61. <execution>
  62. <id>attach-sources</id>
  63. <phase>verify</phase>
  64. <goals>
  65. <goal>jar-no-fork</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. <distributionManagement>
  73. <!-- 发布release仓库 -->
  74. <repository>
  75. <id>platform-release</id>
  76. <name>platform-release</name>
  77. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  78. </repository>
  79. <!-- 发布快照版本 -->
  80. <snapshotRepository>
  81. <id>platform-snapshots</id>
  82. <name>platform-snapshots</name>
  83. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  84. </snapshotRepository>
  85. </distributionManagement>
  86. </project>