pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. </modules>
  16. <name>BlackBoxSystem</name>
  17. <description>BlackBoxSystem</description>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.junit.vintage</groupId>
  41. <artifactId>junit-vintage-engine</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>junit</groupId>
  47. <artifactId>junit</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.netty</groupId>
  52. <artifactId>netty-all</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <dependencyManagement>
  56. <dependencies>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-dependencies</artifactId>
  60. <version>${spring-boot.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. </dependencies>
  65. </dependencyManagement>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-surefire-plugin</artifactId>
  71. <version>2.20.1</version>
  72. <configuration>
  73. <skipTests>true</skipTests>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. <!-- <build>-->
  79. <!-- <plugins>-->
  80. <!-- <plugin>-->
  81. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  82. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  83. <!-- <version>3.8.1</version>-->
  84. <!-- <configuration>-->
  85. <!-- <source>1.8</source>-->
  86. <!-- <target>1.8</target>-->
  87. <!-- <encoding>UTF-8</encoding>-->
  88. <!-- </configuration>-->
  89. <!-- </plugin>-->
  90. <!-- <plugin>-->
  91. <!-- <groupId>org.springframework.boot</groupId>-->
  92. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  93. <!-- <version>2.3.7.RELEASE</version>-->
  94. <!-- <configuration>-->
  95. <!-- <mainClass>db.blackboxsystem.BlackBoxSystemApplication</mainClass>-->
  96. <!-- </configuration>-->
  97. <!-- <executions>-->
  98. <!-- <execution>-->
  99. <!-- <id>repackage</id>-->
  100. <!-- <goals>-->
  101. <!-- <goal>repackage</goal>-->
  102. <!-- </goals>-->
  103. <!-- </execution>-->
  104. <!-- </executions>-->
  105. <!-- </plugin>-->
  106. <!-- </plugins>-->
  107. <!-- </build>-->
  108. </project>