pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. </dependency>
  56. </dependencies>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-dependencies</artifactId>
  62. <version>${spring-boot.version}</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. </dependencies>
  67. </dependencyManagement>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-surefire-plugin</artifactId>
  73. <version>2.20.1</version>
  74. <configuration>
  75. <skipTests>true</skipTests>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. <!-- <build>-->
  81. <!-- <plugins>-->
  82. <!-- <plugin>-->
  83. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  84. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  85. <!-- <version>3.8.1</version>-->
  86. <!-- <configuration>-->
  87. <!-- <source>1.8</source>-->
  88. <!-- <target>1.8</target>-->
  89. <!-- <encoding>UTF-8</encoding>-->
  90. <!-- </configuration>-->
  91. <!-- </plugin>-->
  92. <!-- <plugin>-->
  93. <!-- <groupId>org.springframework.boot</groupId>-->
  94. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  95. <!-- <version>2.3.7.RELEASE</version>-->
  96. <!-- <configuration>-->
  97. <!-- <mainClass>db.blackboxsystem.BlackBoxSystemApplication</mainClass>-->
  98. <!-- </configuration>-->
  99. <!-- <executions>-->
  100. <!-- <execution>-->
  101. <!-- <id>repackage</id>-->
  102. <!-- <goals>-->
  103. <!-- <goal>repackage</goal>-->
  104. <!-- </goals>-->
  105. <!-- </execution>-->
  106. <!-- </executions>-->
  107. <!-- </plugin>-->
  108. <!-- </plugins>-->
  109. <!-- </build>-->
  110. </project>