pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>jutil</artifactId>
  7. <groupId>cn.reghao.jutil</groupId>
  8. <version>jdk17-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>web</artifactId>
  12. <version>jdk17-SNAPSHOT</version>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <springboot.version>3.2.1</springboot.version>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-dependencies</artifactId>
  23. <version>${springboot.version}</version>
  24. <type>pom</type>
  25. <scope>import</scope>
  26. </dependency>
  27. </dependencies>
  28. </dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>cn.reghao.jutil</groupId>
  32. <artifactId>jdk</artifactId>
  33. <version>jdk17-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.validation</groupId>
  37. <artifactId>validation-api</artifactId>
  38. <version>2.0.1.Final</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>jakarta.servlet</groupId>
  42. <artifactId>jakarta.servlet-api</artifactId>
  43. <version>5.0.0</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-web</artifactId>
  49. <version>6.1.2</version>
  50. </dependency>
  51. </dependencies>
  52. </project>