-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
128 additions
and
244 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
name: SmallRye Async API | ||
# This is not ready to release yet, unless the the Release Plugin and GPG Plugin are configured properly. | ||
# The Parent POM (>18) requires a fix for the Release, or the plugins need to be configured directly. | ||
release: | ||
current-version: 1.0.0-SNAPSHOT | ||
next-version: 1.0.0-SNAPSHOT |
Binary file not shown.
Binary file not shown.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
/** | ||
* Implementation of the {@link AsyncApiConfig} interface that gets config information from a | ||
* standard MP Config object. | ||
* | ||
* | ||
* @author [email protected] | ||
*/ | ||
public class AsyncApiConfigImpl implements AsyncApiConfig { | ||
|
@@ -48,7 +48,7 @@ public class AsyncApiConfigImpl implements AsyncApiConfig { | |
|
||
/** | ||
* Constructor. | ||
* | ||
* | ||
* @param config MicroProfile Config instance | ||
*/ | ||
public AsyncApiConfigImpl(Config config) { | ||
|
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 |
---|---|---|
|
@@ -42,7 +42,7 @@ | |
|
||
/** | ||
* Some useful methods for creating stuff from ShrinkWrap {@link Archive}s. | ||
* | ||
* | ||
* @author [email protected] | ||
*/ | ||
public class ArchiveUtil { | ||
|
@@ -56,7 +56,7 @@ private ArchiveUtil() { | |
|
||
/** | ||
* Creates an {@link AsyncApiConfig} instance from the given ShrinkWrap archive. | ||
* | ||
* | ||
* @param archive Shrinkwrap Archive instance | ||
* @return AsyncApiConfig | ||
*/ | ||
|
@@ -73,7 +73,7 @@ public static AsyncApiConfig archiveToConfig(Archive<?> archive) { | |
* it as an {@link AsyncApiStaticFile}. If not found, returns null. The static file | ||
* (when not null) contains an {@link InputStream} to the contents of the static file. | ||
* The caller is responsible for closing this stream. | ||
* | ||
* | ||
* @param archive Shrinkwrap Archive instance | ||
* @return AsyncApiStaticFile | ||
*/ | ||
|
@@ -112,7 +112,7 @@ public static AsyncApiStaticFile archiveToStaticFile(Archive<?> archive) { | |
|
||
/** | ||
* Index the ShrinkWrap archive to produce a jandex index. | ||
* | ||
* | ||
* @param config AsyncApiConfig | ||
* @param archive Shrinkwrap Archive | ||
* @return indexed classes in Archive | ||
|
@@ -129,7 +129,7 @@ public static IndexView archiveToIndex(AsyncApiConfig config, Archive<?> archive | |
|
||
/** | ||
* Indexes the given archive. | ||
* | ||
* | ||
* @param config | ||
* @param indexer | ||
* @param archive | ||
|
@@ -165,7 +165,7 @@ && acceptJarForScanning(config, archivePath.get())) { | |
/** | ||
* Returns true if the given JAR archive (dependency) should be cracked open and indexed | ||
* along with the rest of the deployment's classes. | ||
* | ||
* | ||
* @param config | ||
* @param jarName | ||
*/ | ||
|
@@ -184,7 +184,7 @@ private static boolean acceptJarForScanning(AsyncApiConfig config, String jarNam | |
/** | ||
* Returns true if the class represented by the given archive path should be included in | ||
* the annotation index. | ||
* | ||
* | ||
* @param config | ||
* @param archivePath | ||
*/ | ||
|
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
Oops, something went wrong.