1 Star 1 Fork 0

zhangjiangnan/treeChain

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.37 KB
一键复制 编辑 原始数据 按行查看 历史
zhangjiangnan 提交于 2020-06-30 15:38 . init
<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">
<name>treeChain</name>
<description>treeChain</description>
<url>http://www.treeChain.org/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>zhangjiangnan</name>
<email>13401190417@139.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@git.oschina.net:dajiangnan/xxx.git</connection>
<developerConnection>scm:git:git@git.oschina.net:dajiangnan/xxx.git</developerConnection>
<url>git@git.oschina.net:dajiangnan/treeChain.git</url>
</scm>
<modelVersion>4.0.0</modelVersion>
<groupId>net.oschina.dajiangnan</groupId>
<artifactId>treeChain</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 设置源文件编码方式 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dajiangnan/treeChain.git
git@gitee.com:dajiangnan/treeChain.git
dajiangnan
treeChain
treeChain
master

搜索帮助