2018-09-23 07:44:11 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2018-11-20 23:04:05 +08:00
|
|
|
<groupId>cn.emergentdesign.se</groupId>
|
2018-09-23 07:44:11 +08:00
|
|
|
<artifactId>depends</artifactId>
|
2019-04-04 09:47:20 +08:00
|
|
|
<!-- <version>1.0-SNAPSHOT</version> -->
|
|
|
|
<version>0.9.1</version>
|
2018-09-23 07:44:11 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2018-10-30 00:34:28 +08:00
|
|
|
<antlr4.visitor>true</antlr4.visitor>
|
|
|
|
<antlr4.listener>true</antlr4.listener>
|
2018-09-23 07:44:11 +08:00
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
<version>4.7.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2019-04-04 09:47:20 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-09-23 07:44:11 +08:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2019-04-04 09:47:20 +08:00
|
|
|
<version>3.1.1</version>
|
2018-09-23 07:44:11 +08:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>depends.Main</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
2019-04-04 09:47:20 +08:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assemble/jar-with-dependencies.xml</descriptor>
|
|
|
|
<descriptor>src/main/assemble/package.xml</descriptor>
|
|
|
|
</descriptors>
|
2018-09-23 07:44:11 +08:00
|
|
|
</configuration>
|
2019-04-10 19:49:24 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-09-23 07:44:11 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-10-30 00:34:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
</dependency>
|
2018-09-23 07:44:11 +08:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.antlr/antlr4 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
<version>4.7.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2019-06-14 15:13:03 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>[2.9.9,)</version>
|
2018-09-23 07:44:11 +08:00
|
|
|
</dependency>
|
2018-10-30 00:34:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
<version>3.16</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>3.16</version>
|
|
|
|
</dependency>
|
2018-12-11 23:59:46 +08:00
|
|
|
<dependency>
|
2018-10-23 17:11:28 +08:00
|
|
|
<groupId>org.eclipse.cdt</groupId>
|
|
|
|
<artifactId>org.eclipse.cdt.core</artifactId>
|
2018-10-30 00:34:28 +08:00
|
|
|
<version>6.5.0.201806170908</version>
|
2018-12-11 23:59:46 +08:00
|
|
|
</dependency>
|
2018-10-23 17:11:28 +08:00
|
|
|
<dependency>
|
2018-10-30 00:34:28 +08:00
|
|
|
<groupId>eclipse-photon</groupId>
|
|
|
|
<artifactId>org.eclipse.equinox.registry</artifactId>
|
|
|
|
<version>3.8.0.v20180426-1327</version>
|
2018-10-23 17:11:28 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-10-30 00:34:28 +08:00
|
|
|
<groupId>eclipse-photon</groupId>
|
|
|
|
<artifactId>org.eclipse.core.runtime</artifactId>
|
|
|
|
<version>3.14.0.v20180417-0825</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eclipse-photon</groupId>
|
|
|
|
<artifactId>org.eclipse.equinox.common</artifactId>
|
|
|
|
<version>3.10.0.v20180412-1130</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eclipse-photon</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
|
|
<version>3.13.0.v20180409-1500</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eclipse-photon</groupId>
|
|
|
|
<artifactId>org.eclipse.equinox.preferences</artifactId>
|
|
|
|
<version>3.7.100.v20180510-1129</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eclipse-photon</groupId>
|
|
|
|
<artifactId>org.eclipse.core.jobs</artifactId>
|
|
|
|
<version>3.10.0.v20180427-1454</version>
|
2018-12-11 23:59:46 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>info.picocli</groupId>
|
|
|
|
<artifactId>picocli</artifactId>
|
|
|
|
<version>3.8.2</version>
|
|
|
|
</dependency>
|
2018-12-25 08:02:46 +08:00
|
|
|
<dependency>
|
2018-12-25 13:46:35 +08:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.25</version>
|
2018-12-25 08:02:46 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-12-25 13:46:35 +08:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
2019-04-04 09:47:20 +08:00
|
|
|
|
2019-02-08 18:41:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jruby</groupId>
|
|
|
|
<artifactId>jrubyparser</artifactId>
|
|
|
|
<version>0.5.5-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2018-09-23 07:44:11 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|