1 Star 1 Fork 0

sofical / hashdb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.19 KB
一键复制 编辑 原始数据 按行查看 历史
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.restphp.java</groupId>
<artifactId>hashdb</artifactId>
<packaging>jar</packaging>
<version>1.0.1-SNAPSHOT</version>
<name>hashdb</name>
<url>http://maven.apache.org</url>
<properties>
<org.projectlombok.lombok.version>1.16.18</org.projectlombok.lombok.version>
<com.alibaba.fastjson.version>1.2.7</com.alibaba.fastjson.version>
<io.netty.netty-all.version>4.1.6.Final</io.netty.netty-all.version>
</properties>
<dependencies>
<!--alibaba json -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${com.alibaba.fastjson.version}</version>
</dependency>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.projectlombok.lombok.version}</version>
</dependency>
<!-- netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${io.netty.netty-all.version}</version>
</dependency>
</dependencies>
<build>
<defaultGoal>compile</defaultGoal>
<resources>
<!--配置文件路径-->
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>**/*.dat</exclude>
<exclude>**/*.ipdb</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*.dat</include>
<include>**/*.ipdb</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>hashdb</finalName>
</build>
<distributionManagement>
<!--<repository>
<id>nexus</id>
<name>Releases</name>
<url>http://182.254.148.50:8081/repository/maven-releases</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Snapshot</name>
<url>http://182.254.148.50:8081/repository/maven-snapshots</url>
</snapshotRepository>-->
<repository>
<id>nexus</id>
<name>Releases</name>
<url>http://192.168.1.40:8082/repository/maven-releases</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Snapshot</name>
<url>http://192.168.1.40:8082/repository/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
Java
1
https://gitee.com/sofical/hashdb.git
git@gitee.com:sofical/hashdb.git
sofical
hashdb
hashdb
master

搜索帮助