1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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-cloud-demo</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <groupId>com.sf</groupId>
- <artifactId>novel-author</artifactId>
- <!-- 使用springboot类型创建模块时 模块的版本是0.0.1-SNAPSHOT 而用maven类型创建时 版本是1.0-SNAPSHOT-->
- <!-- 可以通过删除子模块的版本 这样会默认使用父项目的版本-->
- <!-- <version>0.0.1-SNAPSHOT</version>-->
- <name>novel-author</name>
- <description>novel-author</description>
- <dependencies>
- <dependency>
- <groupId>com.sf</groupId>
- <artifactId>novel-core</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <!-- 使用jwt来做用户登录信息加密和校验 -->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-api</artifactId>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-impl</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-jackson</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.sf</groupId>
- <artifactId>novel-book-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>
|