Skip to content

Commit 11b1afa

Browse files
committed
Extend test coverage on Jena module
1 parent fdac6b6 commit 11b1afa

File tree

1 file changed

+42
-2
lines changed

1 file changed

+42
-2
lines changed

jena/pom.xml

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,18 @@
7373
<version>${project.version}</version>
7474
<scope>test</scope>
7575
</dependency>
76+
<dependency>
77+
<groupId>com.inrupt.client</groupId>
78+
<artifactId>inrupt-client-jsonb</artifactId>
79+
<version>${project.version}</version>
80+
<scope>test</scope>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.eclipse</groupId>
84+
<artifactId>yasson</artifactId>
85+
<version>${yasson.version}</version>
86+
<scope>test</scope>
87+
</dependency>
7688
<dependency>
7789
<groupId>org.wiremock</groupId>
7890
<artifactId>wiremock</artifactId>
@@ -92,26 +104,54 @@
92104
<phase>none</phase>
93105
</execution>
94106
<execution>
95-
<id>httpclient-test</id>
107+
<id>httpclient-jackson-test</id>
108+
<phase>test</phase>
109+
<goals>
110+
<goal>test</goal>
111+
</goals>
112+
<configuration>
113+
<classpathDependencyExcludes>
114+
<classpathDependencyExclude>com.inrupt.client:inrupt-client-okhttp</classpathDependencyExclude>
115+
<classpathDependencyExclude>com.inrupt.client:inrupt-client-jsonb</classpathDependencyExclude>
116+
</classpathDependencyExcludes>
117+
</configuration>
118+
</execution>
119+
<execution>
120+
<id>httpclient-jsonb-test</id>
96121
<phase>test</phase>
97122
<goals>
98123
<goal>test</goal>
99124
</goals>
100125
<configuration>
101126
<classpathDependencyExcludes>
102127
<classpathDependencyExclude>com.inrupt.client:inrupt-client-okhttp</classpathDependencyExclude>
128+
<classpathDependencyExclude>com.inrupt.client:inrupt-client-jackson</classpathDependencyExclude>
129+
</classpathDependencyExcludes>
130+
</configuration>
131+
</execution>
132+
<execution>
133+
<id>okhttp-jackson-test</id>
134+
<phase>test</phase>
135+
<goals>
136+
<goal>test</goal>
137+
</goals>
138+
<configuration>
139+
<classpathDependencyExcludes>
140+
<classpathDependencyExclude>com.inrupt.client:inrupt-client-httpclient</classpathDependencyExclude>
141+
<classpathDependencyExclude>com.inrupt.client:inrupt-client-jsonb</classpathDependencyExclude>
103142
</classpathDependencyExcludes>
104143
</configuration>
105144
</execution>
106145
<execution>
107-
<id>okhhttp-test</id>
146+
<id>okhttp-jsonb-test</id>
108147
<phase>test</phase>
109148
<goals>
110149
<goal>test</goal>
111150
</goals>
112151
<configuration>
113152
<classpathDependencyExcludes>
114153
<classpathDependencyExclude>com.inrupt.client:inrupt-client-httpclient</classpathDependencyExclude>
154+
<classpathDependencyExclude>com.inrupt.client:inrupt-client-jackson</classpathDependencyExclude>
115155
</classpathDependencyExcludes>
116156
</configuration>
117157
</execution>

0 commit comments

Comments
 (0)