1 Star 0 Fork 3

vinplezhang/code-camp-java

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
程序员架构师13 提交于 2020-06-30 12:42 . 结构优化
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>2.3.1.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.wuwenxu.codecamp</groupId>
<artifactId>code-camp-java</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>code-camp-java</name>
<description>code-camp-java</description>
<modules>
<module>code-camp-java-base</module>
<module>code-camp-java-bigdata</module>
</modules>
<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>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/vinplezhang/code-camp-java.git
git@gitee.com:vinplezhang/code-camp-java.git
vinplezhang
code-camp-java
code-camp-java
master

搜索帮助