124 lines
3.4 KiB
XML
124 lines
3.4 KiB
XML
<?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>
|
|
|
|
<groupId>EthereumJ</groupId>
|
|
<artifactId>EthereumJ</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>repository.jboss.org</id>
|
|
<name>JBoss Releases Repository</name>
|
|
<url>http://repository.jboss.org/maven2</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>repository.jboss.org</id>
|
|
<name>JBoss Releases Repository</name>
|
|
<url>http://repository.jboss.org/maven2</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>4.0.17.Final</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcpg-jdk15on</artifactId>
|
|
<version>1.49</version>
|
|
<classifier>sources</classifier>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-ext-jdk15on</artifactId>
|
|
<version>1.49</version>
|
|
<classifier>sources</classifier>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
<version>1.49</version>
|
|
<classifier>sources</classifier>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.fifesoft</groupId>
|
|
<artifactId>rsyntaxtextarea</artifactId>
|
|
<version>2.5.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
<artifactId>geoip2</artifactId>
|
|
<version>0.6.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.maxmind.geoip</groupId>
|
|
<artifactId>geoip-api</artifactId>
|
|
<version>1.2.11</version>
|
|
</dependency>
|
|
|
|
<!--
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr</artifactId>
|
|
<version>3.5.2</version>
|
|
</dependency>
|
|
-->
|
|
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr</artifactId>
|
|
<version>3.1.3</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>stringtemplate</artifactId>
|
|
<version>3.2.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.python</groupId>
|
|
<artifactId>jython</artifactId>
|
|
<version>2.5.3</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |