-
Notifications
You must be signed in to change notification settings - Fork 2
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
Bump graphql-simple-bindings-to-latest-greatest #94
Conversation
9f65b68
to
697ce50
Compare
721cfd8
to
6bb6d85
Compare
java-version: 11 | ||
java-version: 17 |
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.
Bump java to java 17. The graphql-simple-bindings dependency is built with java 17.
<repository> | ||
<id>jfrog-flock-community</id> | ||
<name>jfrog-repositories</name> | ||
<url>https://flock.jfrog.io/artifactory/flock-maven</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
<id>jfrog-flock-community</id> | ||
<name>jfrog-plugins</name> | ||
<url>https://flock.jfrog.io/artifactory/flock-maven</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
|
||
<distributionManagement> | ||
<repository> | ||
<id>jfrog-flock-community</id> | ||
<name>jfrog-repo-releases</name> | ||
<url>https://flock.jfrog.io/artifactory/flock-maven</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>jfrog-flock-community</id> | ||
<name>jfrog-repo-snapshots</name> | ||
<url>https://flock.jfrog.io/artifactory/flock-maven</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
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.
Boyscouting, removing all jfrog
references as packages are published to maven central
@@ -335,7 +335,7 @@ | |||
<plugin> | |||
<groupId>community.flock</groupId> | |||
<artifactId>graphql-simple-bindings-maven-plugin</artifactId> | |||
<version>0.6.1</version> | |||
<version>0.8.0</version> |
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.
With graphql-simple-bindings-maven-plugin
version 0.8.0 the package name is suffixed with a .kotlin
package. As a result all references to classes generated by the plugin had their import changed.
-import community.flock.eco.iso.language.graphql.Language
+import community.flock.eco.iso.language.graphql.kotlin.Language
No description provided.