pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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.rongwei</groupId>
  7. <artifactId>qcs-business</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <modules>
  10. <module>qcs-server</module>
  11. <module>qcs-common</module>
  12. <module>qcs-entity</module>
  13. </modules>
  14. <!--<parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.1.2.RELEASE</version>
  18. </parent>-->
  19. <parent>
  20. <artifactId>InControl</artifactId>
  21. <groupId>com.rongwei</groupId>
  22. <version>1.1-SNAPSHOT</version>
  23. </parent>
  24. <properties>
  25. <!--<docker.image.prefix>ag</docker.image.prefix>-->
  26. <!--<docker.plugin.version>0.4.13</docker.plugin.version>-->
  27. <mapper.version>3.4.0</mapper.version>
  28. <maven.compile.source>1.8</maven.compile.source>
  29. <maven.compile.target>1.8</maven.compile.target>
  30. <fastjson.version>1.2.31</fastjson.version>
  31. <!--<boot.admin.client>2.1.2</boot.admin.client>-->
  32. </properties>
  33. <packaging>pom</packaging>
  34. <dependencies>
  35. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <version>1.16.14</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>fastjson</artifactId>
  45. <version>${fastjson.version}</version>
  46. </dependency>
  47. </dependencies>
  48. <repositories>
  49. <repository>
  50. <id>oss</id>
  51. <name>oss</name>
  52. <url>https://oss.sonatype.org/content/groups/public</url>
  53. </repository>
  54. <repository>
  55. <id>spring-milestones</id>
  56. <name>Spring Milestones</name>
  57. <url>https://repo.spring.io/libs-milestone</url>
  58. <snapshots>
  59. <enabled>false</enabled>
  60. </snapshots>
  61. </repository>
  62. <repository>
  63. <id>sonatype-nexus-snapshots</id>
  64. <name>Sonatype Nexus Snapshots</name>
  65. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  66. </repository>
  67. </repositories>
  68. <!--依赖管理,用于管理spring-cloud的依赖,其中Camden.SR3是版本号-->
  69. <dependencyManagement>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.springframework.cloud</groupId>
  73. <artifactId>spring-cloud-dependencies</artifactId>
  74. <version>Greenwich.RELEASE</version>
  75. <type>pom</type>
  76. <scope>import</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>1.2.33</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.cloud</groupId>
  85. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  86. <version>0.2.1.RELEASE</version>
  87. <type>pom</type>
  88. <scope>import</scope>
  89. </dependency>
  90. </dependencies>
  91. </dependencyManagement>
  92. <distributionManagement>
  93. <snapshotRepository>
  94. <id>ossrh</id>
  95. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  96. </snapshotRepository>
  97. <repository>
  98. <id>ossrh</id>
  99. <name>Maven Central Staging Repository</name>
  100. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  101. </repository>
  102. </distributionManagement>
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.codehaus.mojo</groupId>
  107. <artifactId>versions-maven-plugin</artifactId>
  108. <version>2.7</version>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-compiler-plugin</artifactId>
  113. <version>${maven-compiler-plugin.version}</version>
  114. <configuration>
  115. <source>${maven.compile.source}</source>
  116. <target>${maven.compile.target}</target>
  117. <encoding>${project.build.sourceEncoding}</encoding>
  118. </configuration>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-source-plugin</artifactId>
  123. <version>2.4</version>
  124. <executions>
  125. <execution>
  126. <id>attach-sources</id>
  127. <goals>
  128. <goal>jar-no-fork</goal>
  129. </goals>
  130. </execution>
  131. </executions>
  132. </plugin>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-deploy-plugin</artifactId>
  136. <version>2.8.2</version>
  137. </plugin>
  138. <!--<plugin>-->
  139. <!--<groupId>org.apache.maven.plugins</groupId>-->
  140. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  141. <!--<version>2.10.3</version>-->
  142. <!--<executions>-->
  143. <!--<execution>-->
  144. <!--<id>attach-javadocs</id>-->
  145. <!--<goals>-->
  146. <!--<goal>jar</goal>-->
  147. <!--</goals>-->
  148. <!--</execution>-->
  149. <!--</executions>-->
  150. <!--</plugin>-->
  151. </plugins>
  152. </build>
  153. </project>