139 lines
4.2 KiB
XML
139 lines
4.2 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.ethereum</groupId>
|
|
<artifactId>ethereumj</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>0.1-SNAPSHOT</version>
|
|
<name>EthereumJ</name>
|
|
<url>http://www.ethereumj.org</url>
|
|
|
|
<!-- * To deploy all the classes and dependencies to one jar,
|
|
* that's one option to pack stand alone.
|
|
mvn clean package dependency:copy-dependencies -Dmaven.test.skip=true
|
|
-->
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<!-- Third-party dependencies -->
|
|
<junit.version>4.11</junit.version>
|
|
<slf4j.version>1.7.7</slf4j.version>
|
|
<leveldb.version>0.7</leveldb.version>
|
|
<spongycastle.version>1.50.0.0</spongycastle.version>
|
|
<generated.sourceDirectory>gen</generated.sourceDirectory>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>4.0.17.Final</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- Spongy Castle for SHA3 and SECP256K1 -->
|
|
<dependency>
|
|
<groupId>com.madgag.spongycastle</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${spongycastle.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.iq80.leveldb</groupId>
|
|
<artifactId>leveldb</artifactId>
|
|
<version>${leveldb.version}</version>
|
|
</dependency>
|
|
<!-- Added Cedarsoft for DeepEqual function -->
|
|
<dependency>
|
|
<groupId>com.cedarsoftware</groupId>
|
|
<artifactId>java-util</artifactId>
|
|
<version>1.8.0</version>
|
|
</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>antlr4-runtime</artifactId>
|
|
<version>4.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
<version>4.1</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.python</groupId>
|
|
<artifactId>jython</artifactId>
|
|
<version>2.5.3</version>
|
|
</dependency>
|
|
<!-- Consumers are expected to provide their own SLF4J adapters such as
|
|
logback, slf4j-log4j12, slf4j-jcl and so on see http://www.slf4j.org/faq.html -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.yuvalshavit</groupId>
|
|
<artifactId>antlr-denter</artifactId>
|
|
<version>1.1</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>
|
|
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>org.ethereum.gui.ToolBar</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |