67 lines
1.7 KiB
XML
67 lines
1.7 KiB
XML
|
|
<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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>com.robot</groupId>
|
||
|
|
<artifactId>robot_common_bak</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>robot_common</name>
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<!--依赖 taurus-core -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.taurus</groupId>
|
||
|
|
<artifactId>taurus-core</artifactId>
|
||
|
|
<version>1.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.taurus</groupId>
|
||
|
|
<artifactId>taurus-web</artifactId>
|
||
|
|
<version>1.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<!--依赖 game_common -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.game</groupId>
|
||
|
|
<artifactId>game_common</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
<version>2.10.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>log4j</groupId>
|
||
|
|
<artifactId>log4j</artifactId>
|
||
|
|
<version>1.2.17</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.6.1</version>
|
||
|
|
<configuration>
|
||
|
|
<!-- <compilerArgument>-parameters</compilerArgument> -->
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|