86 lines
2.9 KiB
XML
86 lines
2.9 KiB
XML
<?xml version="1.0"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.baeldung.ethereumj</groupId>
|
|
<artifactId>ethereumj</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1.0.0</version>
|
|
<name>ethereumj</name>
|
|
|
|
<parent>
|
|
<artifactId>parent-boot-5</artifactId>
|
|
<groupId>com.baeldung</groupId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../parent-boot-5</relativePath>
|
|
</parent>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>Ethereum</id>
|
|
<name>Ethereum</name>
|
|
<url>https://dl.bintray.com/ethereum/maven/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Spring Boot Dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
</dependency>
|
|
<!-- Unit Testing -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- Ethereum -->
|
|
<dependency>
|
|
<groupId>org.ethereum</groupId>
|
|
<artifactId>ethereumj-core</artifactId>
|
|
<version>${ethereumj-core.version}</version>
|
|
</dependency>
|
|
<!-- Web3j -->
|
|
<dependency>
|
|
<groupId>org.web3j</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${web3j.core.version}</version>
|
|
</dependency>
|
|
<!-- JSTL/JSP -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson-databind.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
<finalName>ethereumj</finalName>
|
|
</build>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>1.8</java.version>
|
|
<tomcat.version>8.5.4</tomcat.version>
|
|
<ethereumj-core.version>1.5.0-RELEASE</ethereumj-core.version>
|
|
<web3j.core.version>3.3.1</web3j.core.version>
|
|
<jackson-databind.version>2.5.0</jackson-databind.version>
|
|
</properties>
|
|
|
|
</project> |