Skip to content

Commit 67bb931

Browse files
committed
further work on getting the jsonldplayground working smoothly
1 parent 8197e04 commit 67bb931

3 files changed

Lines changed: 144 additions & 137 deletions

File tree

jsonldplayground

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# run ./jsonldplayground for the usage
88

99
if [ ! -d "tools/target/appassembler/bin" ]; then
10-
mvn -quiet clean install
10+
mvn -quiet clean install -DskipTests
1111
fi
1212

1313
chmod u+x tools/target/appassembler/bin/*
14-
tools/target/appassembler/bin/jsonldplayground
14+
tools/target/appassembler/bin/jsonldplayground "$@"

tools/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,47 @@
3838
<artifactId>jopt-simple</artifactId>
3939
<version>4.6</version>
4040
</dependency>
41+
<dependency>
42+
<groupId>org.openrdf.sesame</groupId>
43+
<artifactId>sesame-rio-nquads</artifactId>
44+
<scope>runtime</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.openrdf.sesame</groupId>
48+
<artifactId>sesame-rio-turtle</artifactId>
49+
<version>${sesame.version}</version>
50+
<scope>runtime</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.openrdf.sesame</groupId>
54+
<artifactId>sesame-rio-rdfxml</artifactId>
55+
<version>${sesame.version}</version>
56+
<scope>runtime</scope>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.openrdf.sesame</groupId>
60+
<artifactId>sesame-rio-rdfjson</artifactId>
61+
<version>${sesame.version}</version>
62+
<scope>runtime</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.openrdf.sesame</groupId>
66+
<artifactId>sesame-rio-ntriples</artifactId>
67+
<version>${sesame.version}</version>
68+
<scope>runtime</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.openrdf.sesame</groupId>
72+
<artifactId>sesame-rio-trig</artifactId>
73+
<version>${sesame.version}</version>
74+
<scope>runtime</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.openrdf.sesame</groupId>
78+
<artifactId>sesame-rio-trix</artifactId>
79+
<version>${sesame.version}</version>
80+
<scope>runtime</scope>
81+
</dependency>
4182
</dependencies>
4283

4384
<build>

0 commit comments

Comments
 (0)