Skip to content

Commit f429cf3

Browse files
committed
Switch build back to maven
1 parent 5c883f5 commit f429cf3

8 files changed

+76
-310
lines changed

.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
target/
22
.idea
33
*.iml
4-
5-
.gradle
6-
build
7-
out/

build.gradle

-43
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-53.4 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

-6
This file was deleted.

gradlew

-172
This file was deleted.

gradlew.bat

-84
This file was deleted.

pom.xml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>by.andd3dfx</groupId>
8+
<artifactId>sandbox</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
</properties>
14+
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
<version>3.6.1</version>
21+
<configuration>
22+
<source>1.8</source>
23+
<target>1.8</target>
24+
</configuration>
25+
</plugin>
26+
</plugins>
27+
</build>
28+
29+
<dependencies>
30+
<dependency>
31+
<groupId>org.jsoup</groupId>
32+
<artifactId>jsoup</artifactId>
33+
<version>1.8.2</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.apache.activemq</groupId>
37+
<artifactId>activemq-broker</artifactId>
38+
<version>5.14.5</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>log4j</groupId>
42+
<artifactId>log4j</artifactId>
43+
<version>1.2.17</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.springframework.boot</groupId>
47+
<artifactId>spring-boot-starter-logging</artifactId>
48+
<version>1.5.8.RELEASE</version>
49+
</dependency>
50+
51+
<dependency>
52+
<groupId>junit</groupId>
53+
<artifactId>junit</artifactId>
54+
<version>4.12</version>
55+
<scope>test</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.jmock</groupId>
59+
<artifactId>jmock-legacy</artifactId>
60+
<version>2.8.3</version>
61+
<scope>test</scope>
62+
</dependency>
63+
<dependency>
64+
<groupId>org.hamcrest</groupId>
65+
<artifactId>hamcrest-all</artifactId>
66+
<version>1.3</version>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.github.stefanbirkner</groupId>
71+
<artifactId>system-rules</artifactId>
72+
<version>1.17.0</version>
73+
<scope>test</scope>
74+
</dependency>
75+
</dependencies>
76+
</project>

settings.gradle

-1
This file was deleted.

0 commit comments

Comments
 (0)