12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.sf</groupId>
- <artifactId>novel-book</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <groupId>com.sf</groupId>
- <artifactId>novel-book-service</artifactId>
- <name>novel-book-service</name>
- <description>novel-book-service</description>
- <url/>
- <licenses>
- <license/>
- </licenses>
- <developers>
- <developer/>
- </developers>
- <scm>
- <connection/>
- <developerConnection/>
- <tag/>
- <url/>
- </scm>
- <properties>
- <java.version>17</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.sf</groupId>
- <artifactId>novel-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sf</groupId>
- <artifactId>novel-user-api</artifactId>
- <version>${parent.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|