-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactoring: combining Module and Provider for non-deprecated modules
- Loading branch information
Showing
17 changed files
with
140 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
bootique-cxf-core/src/main/java/io/bootique/cxf/CxfModuleProvider.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
bootique-cxf-core/src/main/resources/META-INF/services/io.bootique.BQModuleProvider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
io.bootique.cxf.CxfModuleProvider | ||
io.bootique.cxf.CxfModule |
14 changes: 14 additions & 0 deletions
14
bootique-cxf-core/src/test/java/io/bootique/cxf/CxfModuleTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.bootique.cxf; | ||
|
||
import io.bootique.junit5.BQModuleProviderChecker; | ||
import io.bootique.junit5.BQTest; | ||
import org.junit.jupiter.api.Test; | ||
|
||
@BQTest | ||
public class CxfModuleTest { | ||
|
||
@Test | ||
public void testAutoLoading() { | ||
BQModuleProviderChecker.testAutoLoadable(CxfModule.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 0 additions & 52 deletions
52
bootique-cxf-jaxrs/src/main/java/io/bootique/cxf/CxfJaxrsModuleProvider.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
bootique-cxf-jaxrs/src/main/resources/META-INF/services/io.bootique.BQModuleProvider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
io.bootique.cxf.CxfJaxrsModuleProvider | ||
io.bootique.cxf.CxfJaxrsModule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
...ue-cxf-jaxws-client/src/main/java/io/bootique/cxf/jaxws/CxfJaxwsClientModuleProvider.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
bootique-cxf-jaxws-client/src/main/resources/META-INF/services/io.bootique.BQModuleProvider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
io.bootique.cxf.jaxws.CxfJaxwsClientModuleProvider | ||
io.bootique.cxf.jaxws.CxfJaxwsClientModule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.