Skip to content

Commit

Permalink
Merge pull request #781 from qxo/chore-build01
Browse files Browse the repository at this point in the history
提交两点构建相关改进
  • Loading branch information
pagehelper committed Nov 13, 2023
2 parents 8182846 + e76d96b commit f7fbde4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ target/
# Eclipse #
.settings/
.classpath
.project
.project

.vscode/
23 changes: 14 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,20 @@
</dependency>
-->
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>dev</id>
Expand All @@ -205,10 +218,6 @@
<!--Compiler-->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -230,10 +239,6 @@
<!--Compiler-->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<!-- Source -->
<plugin>
Expand Down

0 comments on commit f7fbde4

Please sign in to comment.