Skip to content

Commit 244ec02

Browse files
authored
Merge pull request #62 from Rokko11/master
Run Java-Tests in Travis-Ci-Build
2 parents 007789d + 15521f4 commit 244ec02

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ before_script:
77
- export PATH=$PATH:$PWD/go-ipfs/
88
- ipfs init
99
- ipfs daemon --enable-pubsub-experiment &
10+
script:
11+
- mvn clean verify

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,29 @@
6060
<groupId>com.github.multiformats</groupId>
6161
<artifactId>java-multiaddr</artifactId>
6262
<version>v1.1.1</version>
63+
<scope>system</scope>
64+
<systemPath>${project.basedir}/lib/multiaddr.jar</systemPath>
6365
</dependency>
6466
<dependency>
6567
<groupId>com.github.multiformats</groupId>
6668
<artifactId>java-multihash</artifactId>
69+
<version>v1.1.1</version>
70+
<scope>system</scope>
71+
<systemPath>${project.basedir}/lib/multihash.jar</systemPath>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.github.multiformats</groupId>
75+
<artifactId>java-multibase</artifactId>
6776
<version>v1.1.0</version>
77+
<scope>system</scope>
78+
<systemPath>${project.basedir}/lib/multibase.jar</systemPath>
6879
</dependency>
6980
<dependency>
7081
<groupId>com.github.ipld</groupId>
7182
<artifactId>java-cid</artifactId>
7283
<version>v1.1.0</version>
84+
<scope>system</scope>
85+
<systemPath>${project.basedir}/lib/cid.jar</systemPath>
7386
</dependency>
7487
</dependencies>
7588

0 commit comments

Comments
 (0)