mirror of
https://github.com/continew-org/continew-starter.git
synced 2025-11-13 16:57:12 +08:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8bacd87d25 | |||
|
|
c1ebc4621c |
@@ -61,9 +61,10 @@ ContiNew Starter 就是将脚手架项目中的通用基础配置进行了封装
|
|||||||
## 项目源码
|
## 项目源码
|
||||||
|
|
||||||
| 开源平台 | 源码地址 |
|
| 开源平台 | 源码地址 |
|
||||||
| :------------ | :-------------------------------------------- |
|
| :------------ | :----------------------------------------------- |
|
||||||
| GitHub | https://github.com/continew-org/continew-starter |
|
|
||||||
| Gitee(码云) | https://gitee.com/continew/continew-starter |
|
| Gitee(码云) | https://gitee.com/continew/continew-starter |
|
||||||
|
| GitCode | https://gitcode.com/continew/continew-starter |
|
||||||
|
| GitHub | https://github.com/continew-org/continew-starter |
|
||||||
|
|
||||||
## 像数1,2,3一样容易
|
## 像数1,2,3一样容易
|
||||||
|
|
||||||
|
|||||||
@@ -73,6 +73,7 @@
|
|||||||
<flatten.version>1.6.0</flatten.version>
|
<flatten.version>1.6.0</flatten.version>
|
||||||
<spotless.version>2.43.0</spotless.version>
|
<spotless.version>2.43.0</spotless.version>
|
||||||
<sonar.version>3.11.0.3922</sonar.version>
|
<sonar.version>3.11.0.3922</sonar.version>
|
||||||
|
<maven-compiler-plugin.verison>3.11.0</maven-compiler-plugin.verison>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
@@ -654,6 +655,12 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<!-- 编译插件 -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>${maven-compiler-plugin.verison}</version>
|
||||||
|
</plugin>
|
||||||
<!-- 统一版本号插件 -->
|
<!-- 统一版本号插件 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
|||||||
8
pom.xml
8
pom.xml
@@ -76,6 +76,14 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<!-- 编译插件 -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<compilerArgument>-parameters</compilerArgument>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
<!-- 代码格式化插件 -->
|
<!-- 代码格式化插件 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.diffplug.spotless</groupId>
|
<groupId>com.diffplug.spotless</groupId>
|
||||||
|
|||||||
Reference in New Issue
Block a user