pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  3. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.com.citycloud</groupId>
  6. <artifactId>service-querySrm-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>service-querySrm-parent</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <jdk.version>1.8</jdk.version>
  14. <maven.compile.plugin.version>3.6.1</maven.compile.plugin.version>
  15. </properties>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>1.5.2.RELEASE</version>
  20. </parent>
  21. <modules>
  22. <module>service-common</module>
  23. <module>service-entity</module>
  24. <module>service-configuration</module>
  25. <module>service-querySrm</module>
  26. </modules>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <!-- 企业要素核验 -->
  43. <dependency>
  44. <groupId>com.aliyun</groupId>
  45. <artifactId>cloudauth20221125</artifactId>
  46. <version>1.1.1</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <configuration>
  55. <source>${jdk.version}</source>
  56. <target>${jdk.version}</target>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <reporting>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-checkstyle-plugin</artifactId>
  66. <version>2.17</version>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.codehaus.mojo</groupId>
  70. <artifactId>findbugs-maven-plugin</artifactId>
  71. <version>3.0.4</version>
  72. <configuration>
  73. <xmlOutput>true</xmlOutput>
  74. <findbugsXmlOutput>true</findbugsXmlOutput>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </reporting>
  79. </project>