-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
PR for openapi-generator-maven-plugin inputSpec -- Allow jar: URLs #10037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ffe36ed
Added support for <inputSpec/> arguments of JAR URLs.
allen-ball b2a5c4f
Merge branch 'OpenAPITools:master' into master
allen-ball 98aef3d
Resolve and search COMPILE dependencies for inputSpec resource.
allen-ball 31bae43
Merge branch 'OpenAPITools:master' into master
allen-ball d0bb29c
Added test cases for openapi-generator-maven-plugin:generate input
allen-ball 9973898
Merge branch 'master' of https://github.com/allen-ball/openapi-generator
allen-ball 2944e78
Merge branch 'OpenAPITools:master' into master
allen-ball 0b246f2
Merge branch 'OpenAPITools:master' into master
allen-ball c364a63
Merge branch 'OpenAPITools:master' into master
allen-ball a580536
Merge branch 'OpenAPITools:master' into master
allen-ball 01c40f4
Merge branch 'OpenAPITools:master' into master
allen-ball 6694e9e
Merge branch 'OpenAPITools:master' into master
allen-ball 9b0200e
Merge branch 'OpenAPITools:master' into master
allen-ball 5842fb0
Merge branch 'OpenAPITools:master' into master
allen-ball 9d2e711
Merge branch 'OpenAPITools:master' into master
allen-ball b4a8c5a
Merge branch 'OpenAPITools:master' into master
allen-ball 6f347e3
Merge branch 'OpenAPITools:master' into master
allen-ball File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
Binary file added
BIN
+3.42 KB
...nerator-maven-plugin/src/test/resources/default/local-repo/petstore/schema/1/schema-1.jar
Binary file not shown.
9 changes: 9 additions & 0 deletions
9
...nerator-maven-plugin/src/test/resources/default/local-repo/petstore/schema/1/schema-1.pom
This file contains hidden or 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,9 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <groupId>petstore</groupId> | ||
| <artifactId>schema</artifactId> | ||
| <version>1</version> | ||
| <description>POM was created from install:install-file</description> | ||
| </project> |
12 changes: 12 additions & 0 deletions
12
...ven-plugin/src/test/resources/default/local-repo/petstore/schema/maven-metadata-local.xml
This file contains hidden or 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,12 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <metadata> | ||
| <groupId>petstore</groupId> | ||
| <artifactId>schema</artifactId> | ||
| <versioning> | ||
| <release>1</release> | ||
| <versions> | ||
| <version>1</version> | ||
| </versions> | ||
| <lastUpdated>20210724220722</lastUpdated> | ||
| </versioning> | ||
| </metadata> |
This file contains hidden or 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
11 changes: 11 additions & 0 deletions
11
modules/openapi-generator-maven-plugin/src/test/resources/default/settings.xml
This file contains hidden or 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,11 @@ | ||
| <settings> | ||
| <activeProfiles> | ||
| <activeProfile>default</activeProfile> | ||
| </activeProfiles> | ||
| <profiles> | ||
| <profile> | ||
| <id>default</id> | ||
| <localRepository>${basedir}/local-repo</localRepository> | ||
| </profile> | ||
| </profiles> | ||
| </settings> |
File renamed without changes.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we will need to wait for the 2.0.28 release before merging this enhancement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that 2.1.12 has already been released