pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <packaging>pom</packaging>
  6. <modules>
  7. <module>common</module>
  8. <module>web</module>
  9. </modules>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.4.1</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <groupId>com.jpsoft.employment</groupId>
  17. <artifactId>parent</artifactId>
  18. <version>1.0.0</version>
  19. <name>enterprise-federation</name>
  20. <description>企业联合会</description>
  21. <properties>
  22. <java.version>1.8</java.version>
  23. <lombok.version>1.16.12</lombok.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-devtools</artifactId>
  29. <scope>runtime</scope>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.junit.vintage</groupId>
  39. <artifactId>junit-vintage-engine</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!--logging start-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-logging</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.lazyluke</groupId>
  50. <artifactId>log4jdbc-remix</artifactId>
  51. <version>0.2.7</version>
  52. </dependency>
  53. <!--logging end-->
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <version>${lombok.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>cn.hutool</groupId>
  61. <artifactId>hutool-all</artifactId>
  62. <version>5.0.6</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-surefire-plugin</artifactId>
  70. <version>2.16</version>
  71. <configuration>
  72. <includes>
  73. <include>**/*TestForPack.java</include>
  74. </includes>
  75. <argLine>-Xmx256M</argLine>
  76. </configuration>
  77. <dependencies>
  78. <dependency>
  79. <groupId>org.apache.maven.surefire</groupId>
  80. <artifactId>surefire-junit47</artifactId>
  81. <version>2.16</version>
  82. </dependency>
  83. </dependencies>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>