pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>oss</artifactId>
  8. <groupId>cn.reghao.oss</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>oss-api</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <properties>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.reghao.jutil</groupId>
  22. <artifactId>jdk</artifactId>
  23. <version>1.0.0-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. <version>1.18.6</version>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>javax.validation</groupId>
  33. <artifactId>validation-api</artifactId>
  34. <version>2.0.1.Final</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.jsonwebtoken</groupId>
  38. <artifactId>jjwt</artifactId>
  39. <version>0.9.1</version>
  40. </dependency>
  41. </dependencies>
  42. <distributionManagement>
  43. <repository>
  44. <id>maven-local-hosted</id>
  45. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  46. </repository>
  47. </distributionManagement>
  48. </project>