cm-cloud/cloud-token-out/pom.xml

52 lines
1.7 KiB
XML
Raw Normal View History

2019-07-27 23:03:27 +08: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>cm-cloud</artifactId>
<groupId>com.cm</groupId>
2019-10-26 15:55:49 +08:00
<version>1.0.1-SNAPSHOT</version>
2019-07-27 23:03:27 +08:00
</parent>
<description>发送系统校验</description>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-token-out</artifactId>
2019-10-26 15:55:49 +08:00
<version>1.0.1-SNAPSHOT</version>
2019-07-27 23:03:27 +08:00
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
2020-03-13 15:15:07 +08:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
2019-07-27 23:03:27 +08:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<!-- 打包JDK内部类 -->
<compilerArguments>
<!--<bootclasspath>${JAVA_HOME}/jre/lib/rt.jar</bootclasspath>-->
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
</project>