pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>db</groupId>
  6. <artifactId>BlackBoxSystem</artifactId>
  7. <packaging>pom</packaging>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <modules>
  10. <module>db-api</module>
  11. <module>file-api</module>
  12. <module>query-app</module>
  13. <module>insert-app</module>
  14. <module>common</module>
  15. <module>probe</module>
  16. <module>protocol</module>
  17. </modules>
  18. <name>BlackBoxSystem</name>
  19. <description>BlackBoxSystem</description>
  20. <properties>
  21. <java.version>1.8</java.version>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.junit.vintage</groupId>
  43. <artifactId>junit-vintage-engine</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.netty</groupId>
  54. <artifactId>netty-all</artifactId>
  55. <version>4.1.86.Final</version>
  56. </dependency>
  57. </dependencies>
  58. <dependencyManagement>
  59. <dependencies>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-dependencies</artifactId>
  63. <version>${spring-boot.version}</version>
  64. <type>pom</type>
  65. <scope>import</scope>
  66. </dependency>
  67. </dependencies>
  68. </dependencyManagement>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-surefire-plugin</artifactId>
  74. <version>2.20.1</version>
  75. <configuration>
  76. <skipTests>true</skipTests>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. <!-- <build>-->
  82. <!-- <plugins>-->
  83. <!-- <plugin>-->
  84. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  85. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  86. <!-- <version>3.8.1</version>-->
  87. <!-- <configuration>-->
  88. <!-- <source>1.8</source>-->
  89. <!-- <target>1.8</target>-->
  90. <!-- <encoding>UTF-8</encoding>-->
  91. <!-- </configuration>-->
  92. <!-- </plugin>-->
  93. <!-- <plugin>-->
  94. <!-- <groupId>org.springframework.boot</groupId>-->
  95. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  96. <!-- <version>2.3.7.RELEASE</version>-->
  97. <!-- <configuration>-->
  98. <!-- <mainClass>db.blackboxsystem.BlackBoxSystemApplication</mainClass>-->
  99. <!-- </configuration>-->
  100. <!-- <executions>-->
  101. <!-- <execution>-->
  102. <!-- <id>repackage</id>-->
  103. <!-- <goals>-->
  104. <!-- <goal>repackage</goal>-->
  105. <!-- </goals>-->
  106. <!-- </execution>-->
  107. <!-- </executions>-->
  108. <!-- </plugin>-->
  109. <!-- </plugins>-->
  110. <!-- </build>-->
  111. </project>