pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>seecoder-logTracking</artifactId>
  7. <groupId>com.nju.edu</groupId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-maven-plugin</artifactId>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <properties>
  20. <maven.compiler.source>8</maven.compiler.source>
  21. <maven.compiler.target>8</maven.compiler.target>
  22. <seecoder-logTracking-version>0.1.0</seecoder-logTracking-version>
  23. </properties>
  24. <artifactId>seecoder-logTracking-server</artifactId>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-autoconfigure</artifactId>
  29. <version>2.5.5</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot</artifactId>
  34. <version>2.5.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.slf4j</groupId>
  47. <artifactId>slf4j-log4j12</artifactId>
  48. <version>LATEST</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.nju.edu</groupId>
  52. <artifactId>seecoder-logTracking-common</artifactId>
  53. <version>${seecoder-logTracking-version}</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. </dependencies>
  57. </project>