mirror of
https://github.com/PlayEdu/PlayEdu
synced 2026-01-13 07:11:15 +08:00
拆分模块框架初始化
This commit is contained in:
51
pom.xml
51
pom.xml
@@ -9,10 +9,20 @@
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
<groupId>xyz.playedu</groupId>
|
||||
<artifactId>playedu-api</artifactId>
|
||||
<version>1.1</version>
|
||||
<name>playedu-api</name>
|
||||
<description>playedu-api</description>
|
||||
<artifactId>playedu</artifactId>
|
||||
<version>1.2</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>playedu</name>
|
||||
<description>playedu</description>
|
||||
|
||||
<modules>
|
||||
<module>playedu-api</module>
|
||||
<module>playedu-common</module>
|
||||
<module>playedu-system</module>
|
||||
<module>playedu-course</module>
|
||||
<module>playedu-resource</module>
|
||||
</modules>
|
||||
|
||||
<properties>
|
||||
<java.version>17</java.version>
|
||||
</properties>
|
||||
@@ -162,36 +172,15 @@
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.11.0</version>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.diffplug.spotless</groupId>
|
||||
<artifactId>spotless-maven-plugin</artifactId>
|
||||
<version>2.36.0</version>
|
||||
<configuration>
|
||||
<java>
|
||||
<googleJavaFormat>
|
||||
<version>1.16.0</version>
|
||||
<style>AOSP</style>
|
||||
<reflowLongStrings>true</reflowLongStrings>
|
||||
</googleJavaFormat>
|
||||
|
||||
<licenseHeader>
|
||||
<file>${project.basedir}/license-header.txt</file>
|
||||
</licenseHeader>
|
||||
</java>
|
||||
<source>${java.version}</source>
|
||||
<target>${java.version}</target>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user