Skip to content

Commit 2d69b89

Browse files
authored
Merge pull request #10 from TheSceneCo/convert-to-maven-project
Convert to maven project
2 parents 65ff1a0 + d30ee6b commit 2d69b89

File tree

11 files changed

+44
-87
lines changed

11 files changed

+44
-87
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
bin/*
33
testreport/*
44
examples/backtothefuture/build/*
5+
target/*

build.xml

Lines changed: 0 additions & 84 deletions
This file was deleted.

libs/hamcrest-core.jar

-44 KB
Binary file not shown.

libs/htmlcleaner-2.8.jar

-134 KB
Binary file not shown.

libs/junit.jar

-239 KB
Binary file not shown.

pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>OpenGraph</groupId>
5+
<artifactId>OpenGraph</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<name>A Facebook OpenGraph implementation for Java</name>
8+
<description>OpenGraph for Java</description>
9+
10+
<dependencies>
11+
<dependency>
12+
<groupId>org.hamcrest</groupId>
13+
<artifactId>hamcrest-core</artifactId>
14+
<version>1.3</version>
15+
</dependency>
16+
<dependency>
17+
<groupId>net.sourceforge.htmlcleaner</groupId>
18+
<artifactId>htmlcleaner</artifactId>
19+
<version>2.16</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>junit</groupId>
23+
<artifactId>junit</artifactId>
24+
<version>4.12</version>
25+
</dependency>
26+
</dependencies>
27+
28+
<build>
29+
<sourceDirectory>src</sourceDirectory>
30+
<plugins>
31+
<plugin>
32+
<artifactId>maven-compiler-plugin</artifactId>
33+
<version>3.3</version>
34+
<configuration>
35+
<source />
36+
<target />
37+
</configuration>
38+
</plugin>
39+
</plugins>
40+
</build>
41+
</project>

run.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)