cleanup work

This commit is contained in:
Eugen Paraschiv 2018-07-08 11:51:37 +03:00
parent a35890be98
commit 8fb345975d
1 changed files with 215 additions and 214 deletions

View File

@ -1,228 +1,229 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
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>
<modelVersion>4.0.0</modelVersion> <groupId>com.baeldung.ethereum</groupId>
<groupId>com.baeldung.ethereum</groupId> <artifactId>ethereum</artifactId>
<artifactId>ethereum</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ethereum</name>
<parent>
<artifactId>parent-spring-5</artifactId>
<groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-spring-5</relativePath> <name>ethereum</name>
</parent>
<properties> <parent>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <artifactId>parent-spring-5</artifactId>
<java.version>1.8</java.version> <groupId>com.baeldung</groupId>
<tomcat.version>8.5.4</tomcat.version> <version>0.0.1-SNAPSHOT</version>
<ethereumj-core.version>1.5.0-RELEASE</ethereumj-core.version> <relativePath>../parent-spring-5</relativePath>
<web3j.core.version>3.3.1</web3j.core.version> </parent>
<springframework.version>5.0.5.RELEASE</springframework.version>
<spring.boot.version>1.5.6.RELEASE</spring.boot.version>
<mockito.version>1.10.19</mockito.version>
<jackson-databind.version>2.5.0</jackson-databind.version>
<hamcrest.version>1.3</hamcrest.version>
<jackson.version>2.9.3</jackson.version>
<javax-jsp.version>2.3.1</javax-jsp.version>
<javax-servlet.version>3.1.0</javax-servlet.version>
<jsonpath.version>2.4.0</jsonpath.version>
<jstl.version>1.2</jstl.version>
<junit.version>4.12</junit.version>
<logback.version>1.2.3</logback.version>
<slf4j.version>1.7.25</slf4j.version>
</properties>
<repositories> <dependencies>
<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</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<!-- Spring Boot Dependencies --> <dependency>
<dependency> <groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId>
<artifactId>spring-boot-starter</artifactId> <version>${spring.boot.version}</version>
<version>${spring.boot.version}</version> </dependency>
</dependency> <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency> <!-- Spring Dependencies -->
<groupId>org.springframework.boot</groupId> <dependency>
<artifactId>spring-boot-starter-web</artifactId> <groupId>org.springframework</groupId>
<version>${spring.boot.version}</version> <artifactId>spring-core</artifactId>
</dependency> <version>${springframework.version}</version>
<dependency> </dependency>
<groupId>org.springframework.boot</groupId> <dependency>
<artifactId>spring-boot-starter-tomcat</artifactId> <groupId>org.springframework</groupId>
<version>${spring.boot.version}</version> <artifactId>spring-web</artifactId>
</dependency> <version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springframework.version}</version>
</dependency>
<!-- Spring Dependencies --> <!-- Ethereum -->
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.ethereum</groupId>
<artifactId>spring-core</artifactId> <artifactId>ethereumj-core</artifactId>
<version>${springframework.version}</version> <version>${ethereumj-core.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.web3j</groupId>
<artifactId>spring-web</artifactId> <artifactId>core</artifactId>
<version>${springframework.version}</version> <version>${web3j.core.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springframework.version}</version>
</dependency>
<!-- Ethereum --> <!-- Jackson Dependencies -->
<dependency> <dependency>
<groupId>org.ethereum</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>ethereumj-core</artifactId> <artifactId>jackson-core</artifactId>
<version>${ethereumj-core.version}</version> <version>${jackson.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.web3j</groupId> <groupId>com.fasterxml.jackson.core</groupId>
<artifactId>core</artifactId> <artifactId>jackson-databind</artifactId>
<version>${web3j.core.version}</version> <version>${jackson.version}</version>
</dependency> </dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Jackson Dependencies --> <!-- Servlet -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>javax.servlet</groupId>
<artifactId>jackson-core</artifactId> <artifactId>jstl</artifactId>
<version>${jackson.version}</version> <version>${jstl.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>javax.servlet</groupId>
<artifactId>jackson-databind</artifactId> <artifactId>javax.servlet-api</artifactId>
<version>${jackson.version}</version> <version>${javax-servlet.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jackson-annotations</artifactId> <artifactId>jstl-api</artifactId>
<version>${jackson.version}</version> <version>${jstl.version}</version>
</dependency> </dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>${javax-jsp.version}</version>
</dependency>
<!-- Servlet --> <!-- Logging -->
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>org.slf4j</groupId>
<artifactId>jstl</artifactId> <artifactId>jcl-over-slf4j</artifactId>
<version>${jstl.version}</version> <version>${slf4j.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>ch.qos.logback</groupId>
<artifactId>javax.servlet-api</artifactId> <artifactId>logback-classic</artifactId>
<version>${javax-servlet.version}</version> <version>${logback.version}</version>
</dependency> </dependency>
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>${jstl.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>${javax-jsp.version}</version>
</dependency>
<!-- Logging --> <!-- Spring Testing -->
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>jcl-over-slf4j</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<version>${slf4j.version}</version> <scope>test</scope>
</dependency> <version>${spring.boot.version}</version>
<dependency> </dependency>
<groupId>ch.qos.logback</groupId> <dependency>
<artifactId>logback-classic</artifactId> <groupId>org.springframework</groupId>
<version>${logback.version}</version> <artifactId>spring-context</artifactId>
</dependency> <version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${springframework.version}</version>
<scope>test</scope>
</dependency>
<!-- Spring Testing --> <!-- Testing -->
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.mockito</groupId>
<artifactId>spring-boot-starter-test</artifactId> <artifactId>mockito-core</artifactId>
<scope>test</scope> <version>${mockito.version}</version>
<version>${spring.boot.version}</version> <exclusions>
</dependency> <exclusion>
<dependency> <groupId>org.hamcrest</groupId>
<groupId>org.springframework</groupId> <artifactId>hamcrest-core</artifactId>
<artifactId>spring-context</artifactId> </exclusion>
<version>${springframework.version}</version> </exclusions>
</dependency> <scope>test</scope>
<dependency> </dependency>
<groupId>org.springframework</groupId> <dependency>
<artifactId>spring-test</artifactId> <groupId>junit</groupId>
<version>${springframework.version}</version> <artifactId>junit</artifactId>
<scope>test</scope> <version>${junit.version}</version>
</dependency> <scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>${jsonpath.version}</version>
</dependency>
</dependencies>
<build>
<finalName>ethereum</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>Ethereum</id>
<name>Ethereum</name>
<url>https://dl.bintray.com/ethereum/maven/</url>
</repository>
</repositories>
<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>
<springframework.version>5.0.5.RELEASE</springframework.version>
<spring.boot.version>1.5.6.RELEASE</spring.boot.version>
<mockito.version>1.10.19</mockito.version>
<jackson-databind.version>2.5.0</jackson-databind.version>
<hamcrest.version>1.3</hamcrest.version>
<jackson.version>2.9.3</jackson.version>
<javax-jsp.version>2.3.1</javax-jsp.version>
<javax-servlet.version>3.1.0</javax-servlet.version>
<jsonpath.version>2.4.0</jsonpath.version>
<jstl.version>1.2</jstl.version>
<junit.version>4.12</junit.version>
<logback.version>1.2.3</logback.version>
<slf4j.version>1.7.25</slf4j.version>
</properties>
<!-- Testing -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>${jsonpath.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
<finalName>ethereum</finalName>
</build>
</project> </project>