70 lines
3.8 KiB
XML
70 lines
3.8 KiB
XML
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.schisandra</groupId>
|
|
<artifactId>schisandra-cloud-storage-auth</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>schisandra-cloud-storage-auth-application-controller</artifactId>
|
|
<name>schisandra-cloud-storage-auth-application-controller</name>
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <source>1.8</source>-->
|
|
<!-- <target>1.8</target>-->
|
|
<!-- <encoding>UTF-8</encoding>-->
|
|
<!--<!– <annotationProcessorPaths>–>-->
|
|
<!--<!– <path>–>-->
|
|
<!--<!– <groupId>org.projectlombok</groupId>–>-->
|
|
<!--<!– <artifactId>lombok</artifactId>–>-->
|
|
<!--<!– <version>1.18.24</version>–>-->
|
|
<!--<!– </path>–>-->
|
|
<!--<!– <!– 必须要加, 否则生成不了 MapperImpl 实现类 –>–>-->
|
|
<!--<!– <path>–>-->
|
|
<!--<!– <groupId>org.mapstruct</groupId>–>-->
|
|
<!--<!– <artifactId>mapstruct-processor</artifactId>–>-->
|
|
<!--<!– <version>1.4.2.Final</version>–>-->
|
|
<!--<!– </path>–>-->
|
|
<!--<!– <!– 如果是 0.1.0 有可能出现生成了maptruct的实现类, 但该类只创建了对象, 没有进行赋值 –>–>-->
|
|
<!--<!– <path>–>-->
|
|
<!--<!– <groupId>org.projectlombok</groupId>–>-->
|
|
<!--<!– <artifactId>lombok-mapstruct-binding</artifactId>–>-->
|
|
<!--<!– <version>0.2.0</version>–>-->
|
|
<!--<!– </path>–>-->
|
|
<!--<!– </annotationProcessorPaths>–>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>2.4.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.schisandra</groupId>
|
|
<artifactId>schisandra-cloud-storage-auth-domain</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.schisandra</groupId>
|
|
<artifactId>schisandra-cloud-storage-auth-api</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|