This repository was archived by the owner on Dec 15, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
src/main/java/org/mvcspec/ozark/tck Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 102
102
<artifactId >ozark-resteasy</artifactId >
103
103
<version >${project.version} </version >
104
104
</dependency >
105
+ <dependency >
106
+ <groupId >org.mvc-spec.ozark</groupId >
107
+ <artifactId >ozark-cxf</artifactId >
108
+ <version >${project.version} </version >
109
+ </dependency >
105
110
106
111
</dependencies >
107
112
</dependencyManagement >
Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ protected File[] resolveOzarkRestEasy() {
65
65
return resolveOzarkModule ("org.mvc-spec.ozark" , "ozark-resteasy" );
66
66
}
67
67
68
+ protected File [] resolveOzarkCxf () {
69
+ return resolveOzarkModule ("org.mvc-spec.ozark" , "ozark-cxf" );
70
+ }
71
+
68
72
protected File [] resolveOzarkCore () {
69
73
return resolveOzarkModule ("org.mvc-spec.ozark" , "ozark-core" );
70
74
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public class LibertyArchiveProvider extends AbstractArchiveProvider {
28
28
public WebArchive getBaseArchive () {
29
29
return ShrinkWrap .create (WebArchive .class )
30
30
.addAsLibraries (resolveMvcSpecJar ())
31
- .addAsLibraries (resolveOzarkCore ());
31
+ .addAsLibraries (resolveOzarkCxf ());
32
32
}
33
33
34
34
}
You can’t perform that action at this time.
0 commit comments