pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>1.5.2.RELEASE</version>
  9. <relativePath></relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>jkes-integration-test</artifactId>
  13. <version>1.1.0</version>
  14. <repositories>
  15. <repository>
  16. <id>spring-releases</id>
  17. <name>Spring Releases</name>
  18. <url>https://repo.spring.io/libs-release</url>
  19. </repository>
  20. <repository>
  21. <id>org.jboss.repository.releases</id>
  22. <name>JBoss Maven Release Repository</name>
  23. <url>https://repository.jboss.org/nexus/content/repositories/releases</url>
  24. </repository>
  25. <repository>
  26. <id>confluent</id>
  27. <url>http://packages.confluent.io/maven/</url>
  28. </repository>
  29. </repositories>
  30. <pluginRepositories>
  31. <pluginRepository>
  32. <id>spring-releases</id>
  33. <name>Spring Releases</name>
  34. <url>https://repo.spring.io/libs-release</url>
  35. </pluginRepository>
  36. </pluginRepositories>
  37. <properties>
  38. <java.version>1.8</java.version>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>com.uas.cloud.base.jkes.boot</groupId>
  43. <artifactId>spring-data-jpa</artifactId>
  44. <version>1.1.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-jpa</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-devtools</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <version>5.1.21</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. <distributionManagement>
  82. <!-- 发布release仓库 -->
  83. <repository>
  84. <id>platform-release</id>
  85. <name>platform-release</name>
  86. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  87. </repository>
  88. <!-- 发布快照版本 -->
  89. <snapshotRepository>
  90. <id>platform-snapshots</id>
  91. <name>platform-snapshots</name>
  92. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  93. </snapshotRepository>
  94. </distributionManagement>
  95. </project>