pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <parent>
  6. <groupId>com.sf</groupId>
  7. <artifactId>novel-book</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.sf</groupId>
  11. <artifactId>novel-book-service</artifactId>
  12. <name>novel-book-service</name>
  13. <description>novel-book-service</description>
  14. <url/>
  15. <licenses>
  16. <license/>
  17. </licenses>
  18. <developers>
  19. <developer/>
  20. </developers>
  21. <scm>
  22. <connection/>
  23. <developerConnection/>
  24. <tag/>
  25. <url/>
  26. </scm>
  27. <properties>
  28. <java.version>17</java.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.sf</groupId>
  33. <artifactId>novel-core</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sf</groupId>
  38. <artifactId>novel-user-api</artifactId>
  39. <version>${parent.version}</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>