Skip to content
This repository was archived by the owner on Dec 15, 2018. It is now read-only.

Commit 8a5ed55

Browse files
committed
Liberty provider should use Ozark CXF module
1 parent 87139c3 commit 8a5ed55

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

tck/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@
102102
<artifactId>ozark-resteasy</artifactId>
103103
<version>${project.version}</version>
104104
</dependency>
105+
<dependency>
106+
<groupId>org.mvc-spec.ozark</groupId>
107+
<artifactId>ozark-cxf</artifactId>
108+
<version>${project.version}</version>
109+
</dependency>
105110

106111
</dependencies>
107112
</dependencyManagement>

tck/src/main/java/org/mvcspec/ozark/tck/AbstractArchiveProvider.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ protected File[] resolveOzarkRestEasy() {
6565
return resolveOzarkModule("org.mvc-spec.ozark", "ozark-resteasy");
6666
}
6767

68+
protected File[] resolveOzarkCxf() {
69+
return resolveOzarkModule("org.mvc-spec.ozark", "ozark-cxf");
70+
}
71+
6872
protected File[] resolveOzarkCore() {
6973
return resolveOzarkModule("org.mvc-spec.ozark", "ozark-core");
7074
}

tck/src/main/java/org/mvcspec/ozark/tck/liberty/LibertyArchiveProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class LibertyArchiveProvider extends AbstractArchiveProvider {
2828
public WebArchive getBaseArchive() {
2929
return ShrinkWrap.create(WebArchive.class)
3030
.addAsLibraries(resolveMvcSpecJar())
31-
.addAsLibraries(resolveOzarkCore());
31+
.addAsLibraries(resolveOzarkCxf());
3232
}
3333

3434
}

0 commit comments

Comments
 (0)