pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.book</groupId>
  11. <artifactId>novel-book-service</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>novel-book-service</name>
  14. <description>novel-book-service</description>
  15. <url/>
  16. <licenses>
  17. <license/>
  18. </licenses>
  19. <developers>
  20. <developer/>
  21. </developers>
  22. <scm>
  23. <connection/>
  24. <developerConnection/>
  25. <tag/>
  26. <url/>
  27. </scm>
  28. <properties>
  29. <java.version>17</java.version>
  30. </properties>
  31. <dependencies>
  32. <!-- <dependency>-->
  33. <!-- <groupId>org.springframework.boot</groupId>-->
  34. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  35. <!-- </dependency>-->
  36. <!-- <dependency>-->
  37. <!-- <groupId>org.springframework.boot</groupId>-->
  38. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  39. <!-- <scope>test</scope>-->
  40. <!-- </dependency>-->
  41. <dependency>
  42. <groupId>com.sf</groupId>
  43. <artifactId>novel-core</artifactId>
  44. <!-- <version>0.0.1-SNAPSHOT</version>-->
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>