Skip to content

Commit cb719c8

Browse files
committed
First step to mavenization
1 parent a27ef5b commit cb719c8

File tree

14 files changed

+47
-25
lines changed

14 files changed

+47
-25
lines changed

Makefile

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

lib/hamcrest-core-1.3.jar

-44 KB
Binary file not shown.

lib/junit-4.12.jar

-308 KB
Binary file not shown.

pom.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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+
5+
<groupId>org.ipfs</groupId>
6+
<artifactId>api</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>java-ipfs-api</name>
11+
<url>https://github.com/ipfs/java-ipfs-api</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16+
<junit.version>4.12</junit.version>
17+
<hamcrest.version>1.3</hamcrest.version>
18+
</properties>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>junit</groupId>
23+
<artifactId>junit</artifactId>
24+
<version>${junit.version}</version>
25+
<scope>test</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.hamcrest</groupId>
29+
<artifactId>hamcrest-core</artifactId>
30+
<version>${hamcrest.version}</version>
31+
</dependency>
32+
</dependencies>
33+
34+
<build>
35+
<plugins>
36+
<plugin>
37+
<groupId>org.apache.maven.plugins</groupId>
38+
<artifactId>maven-compiler-plugin</artifactId>
39+
<version>3.1</version>
40+
<configuration>
41+
<source>1.8</source>
42+
<target>1.8</target>
43+
</configuration>
44+
</plugin>
45+
</plugins>
46+
</build>
47+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)