1
mirror of https://github.com/CarmJos/cn2b2t-project.git synced 2024-09-19 22:05:45 +00:00
cn2b2t-project/2b2t-proxy/pom.xml

37 lines
1.2 KiB
XML
Raw Normal View History

2020-05-26 16:08:58 +00:00
<?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>
<artifactId>cn2b2t</artifactId>
<groupId>org.cn2b2t</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>2b2t-proxy</artifactId>
2020-05-26 16:25:24 +00:00
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
2020-05-26 16:08:58 +00:00
2020-05-26 16:25:24 +00:00
<dependencies>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>Cord</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/../_lib/Cord.jar</systemPath>
</dependency>
</dependencies>
2020-05-26 16:08:58 +00:00
</project>