Skip to content

Commit 5d1e360

Browse files
authored
Merge pull request #1051 from kobylynskyi/develop
5.7.0 Release
2 parents 711ac38 + b81740f commit 5d1e360

File tree

82 files changed

+1465
-411
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1465
-411
lines changed

.github/workflows/check-code-style.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v2
1919

20+
# brew install sbt; cd graphql-java-codegen-sbt-plugin; sbt fmt or sbt check
21+
- name: Check Scala Code Style
22+
working-directory: plugins/sbt/graphql-java-codegen-sbt-plugin
23+
run: sbt check
24+
2025
- name: Check Code Style
2126
env:
2227
WORKDIR: ./

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ build
66
modules.xml
77
.idea/misc.xml
88
*.ipr
9-
9+
bin/
10+
.classpath
11+
.project
12+
.settings/
1013

1114
### Maven ###
1215
target/

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ Please follow the steps below in order to make the changes:
3636
./gradlew -p plugins/gradle/graphql-java-codegen-gradle-plugin clean build
3737

3838
# Build Maven plugin
39-
cd plugins/maven/graphql-java-codegen-maven-plugin
40-
mvn clean verify
39+
mvn clean verify -f plugins/maven/graphql-java-codegen-maven-plugin/pom.xml
4140
```
4241

4342
9. Make changes to the plugin code
@@ -48,8 +47,7 @@ Please follow the steps below in order to make the changes:
4847
./gradlew -p plugins/gradle/graphql-java-codegen-gradle-plugin clean build publishToMavenLocal
4948

5049
# Install Maven plugin
51-
cd plugins/maven/graphql-java-codegen-maven-plugin
52-
mvn clean install
50+
mvn clean install -f plugins/maven/graphql-java-codegen-maven-plugin/pom.xml
5351
```
5452

5553
11. Make sure that `example` projects are compiling and running.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# GraphQL Codegen #
22

3+
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/donate/?business=V5VX4NAQT7TW8&no_recurring=0&item_name=to+help+maintaining+GraphQL+Java+Codegen+project+🙏&currency_code=USD)
4+
35
![Build](https://github.com/kobylynskyi/graphql-java-codegen/workflows/Build/badge.svg)
46
[![Discussions](https://img.shields.io/badge/github-discussions-green)](https://github.com/kobylynskyi/graphql-java-codegen/discussions)
57
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id "org.sonarqube" version "3.2.0"
1010
}
1111

12-
def graphqlCodegenVersion = '5.6.0' // This variable used in the automatic release process
12+
def graphqlCodegenVersion = '5.6.1-SNAPSHOT' // This variable used in the automatic release process
1313

1414
group = "io.github.kobylynskyi"
1515
version = graphqlCodegenVersion
@@ -21,8 +21,8 @@ repositories {
2121

2222
dependencies {
2323
compileOnly "org.freemarker:freemarker:2.3.31"
24-
compileOnly "com.graphql-java:graphql-java:16.2"
25-
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.13.3"
24+
compileOnly "com.graphql-java:graphql-java:20.0"
25+
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.14.2"
2626
compileOnly "com.typesafe:config:1.4.1"
2727

2828
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.1"

docs/codegen-options.md

Lines changed: 66 additions & 64 deletions
Large diffs are not rendered by default.

plugins/gradle/example-client-kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
44
plugins {
55
id "java"
66
id "org.jetbrains.kotlin.jvm" version "1.6.21"
7-
id "io.github.kobylynskyi.graphql.codegen" version "5.6.0"
7+
id "io.github.kobylynskyi.graphql.codegen" version "5.6.1-SNAPSHOT"
88
}
99

10-
def graphqlCodegenClientKotlinVersion = '5.6.0' // Variable used in the automatic release process
10+
def graphqlCodegenClientKotlinVersion = '5.6.1-SNAPSHOT' // Variable used in the automatic release process
1111

1212
group = 'io.github.dreamylost'
1313
version = graphqlCodegenClientKotlinVersion
@@ -29,7 +29,7 @@ repositories {
2929

3030

3131
dependencies {
32-
implementation "io.github.kobylynskyi:graphql-java-codegen:5.6.0"
32+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.6.1-SNAPSHOT"
3333
implementation "javax.validation:validation-api:2.0.1.Final"
3434
implementation "com.squareup.okhttp3:okhttp:4.2.2"
3535
implementation "com.fasterxml.jackson.core:jackson-core:2.13.3"

plugins/gradle/example-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
// use the latest available version:
99
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
10-
id "io.github.kobylynskyi.graphql.codegen" version "5.6.0"
10+
id "io.github.kobylynskyi.graphql.codegen" version "5.6.1-SNAPSHOT"
1111
}
1212

1313
mainClassName = "io.github.kobylynskyi.order.Application"
@@ -22,7 +22,7 @@ dependencies {
2222

2323
// use the latest available version:
2424
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
25-
implementation "io.github.kobylynskyi:graphql-java-codegen:5.6.0"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.6.1-SNAPSHOT"
2626

2727
implementation "org.apache.httpcomponents:httpclient:4.5.13"
2828
implementation "javax.validation:validation-api:2.0.1.Final"

plugins/gradle/example-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
//
77
// use the latest available version:
88
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
9-
id "io.github.kobylynskyi.graphql.codegen" version "5.6.0"
9+
id "io.github.kobylynskyi.graphql.codegen" version "5.6.1-SNAPSHOT"
1010
}
1111

1212
mainClassName = "io.github.kobylynskyi.product.Application"

plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: "java"
1616
apply plugin: "idea"
1717
apply plugin: "maven-publish"
1818

19-
def graphqlCodegenGradlePluginVersion = '5.6.0' // This variable used in the automatic release process
19+
def graphqlCodegenGradlePluginVersion = '5.6.1-SNAPSHOT' // This variable used in the automatic release process
2020

2121
group = "io.github.kobylynskyi"
2222
version = graphqlCodegenGradlePluginVersion

0 commit comments

Comments
 (0)