pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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>quality-inspection</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <modules>
  10. <module>business-server</module>
  11. <module>business-common</module>
  12. <module>business-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. <!--依赖管理,用于管理spring-cloud的依赖,其中Camden.SR3是版本号-->
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>org.springframework.cloud</groupId>
  53. <artifactId>spring-cloud-dependencies</artifactId>
  54. <version>Greenwich.RELEASE</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. <version>1.2.70</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.cloud</groupId>
  65. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  66. <version>0.2.1.RELEASE</version>
  67. <type>pom</type>
  68. <scope>import</scope>
  69. </dependency>
  70. </dependencies>
  71. </dependencyManagement>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.codehaus.mojo</groupId>
  76. <artifactId>versions-maven-plugin</artifactId>
  77. <version>2.7</version>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-compiler-plugin</artifactId>
  82. <version>${maven-compiler-plugin.version}</version>
  83. <configuration>
  84. <source>${maven.compile.source}</source>
  85. <target>${maven.compile.target}</target>
  86. <encoding>${project.build.sourceEncoding}</encoding>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-source-plugin</artifactId>
  92. <version>2.4</version>
  93. <executions>
  94. <execution>
  95. <id>attach-sources</id>
  96. <goals>
  97. <goal>jar-no-fork</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-deploy-plugin</artifactId>
  105. <version>2.8.2</version>
  106. </plugin>
  107. <!--<plugin>-->
  108. <!--<groupId>org.apache.maven.plugins</groupId>-->
  109. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  110. <!--<version>2.10.3</version>-->
  111. <!--<executions>-->
  112. <!--<execution>-->
  113. <!--<id>attach-javadocs</id>-->
  114. <!--<goals>-->
  115. <!--<goal>jar</goal>-->
  116. <!--</goals>-->
  117. <!--</execution>-->
  118. <!--</executions>-->
  119. <!--</plugin>-->
  120. </plugins>
  121. </build>
  122. </project>