Skip to content

Commit 6e1bde7

Browse files
authored
Merge pull request #1057 from kobylynskyi/develop
5.7.1 Release
2 parents 1cb7056 + e3262ec commit 6e1bde7

File tree

20 files changed

+54
-24
lines changed

20 files changed

+54
-24
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
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.7.0' // This variable used in the automatic release process
12+
def graphqlCodegenVersion = '5.7.1' // This variable used in the automatic release process
1313

1414
group = "io.github.kobylynskyi"
1515
version = graphqlCodegenVersion

plugins/gradle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
```groovy
1919
plugins {
20-
id "io.github.kobylynskyi.graphql.codegen" version "5.7.0"
20+
id "io.github.kobylynskyi.graphql.codegen" version "5.7.1"
2121
}
2222
```
2323

@@ -31,7 +31,7 @@ buildscript {
3131
}
3232
}
3333
dependencies {
34-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.7.0"
34+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.7.1"
3535
}
3636
}
3737

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

Lines changed: 5 additions & 5 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.7.0"
7+
id "io.github.kobylynskyi.graphql.codegen" version "5.7.1"
88
}
99

10-
def graphqlCodegenClientKotlinVersion = '5.7.0' // Variable used in the automatic release process
10+
def graphqlCodegenClientKotlinVersion = '5.7.1' // Variable used in the automatic release process
1111

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

3030

3131
dependencies {
32-
implementation "io.github.kobylynskyi:graphql-java-codegen:5.7.0"
32+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.7.1"
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"
3636
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
3737
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3"
3838
implementation "com.fasterxml.jackson.core:jackson-annotations:2.13.3"
3939
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
40-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0"
41-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.0"
40+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.1"
41+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.1"
4242
}
4343

4444
/**

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.7.0"
10+
id "io.github.kobylynskyi.graphql.codegen" version "5.7.1"
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.7.0"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.7.1"
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.7.0"
9+
id "io.github.kobylynskyi.graphql.codegen" version "5.7.1"
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.7.0' // This variable used in the automatic release process
19+
def graphqlCodegenGradlePluginVersion = '5.7.1' // This variable used in the automatic release process
2020

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

plugins/gradle/graphql-java-codegen-gradle-plugin/src/main/java/io/github/kobylynskyi/graphql/codegen/gradle/GraphQLCodegenGradleTask.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ public void generate() throws Exception {
134134
mappingConfig.setPackageName(packageName);
135135
mappingConfig.setCustomTypesMapping(
136136
customTypesMapping != null ? customTypesMapping : new HashMap<>());
137+
mappingConfig.setCustomAnnotationsMapping(
138+
customAnnotationsMapping != null ? customAnnotationsMapping : new HashMap<>());
137139
mappingConfig.setCustomTemplates(
138140
customTemplates != null ? customTemplates : new HashMap<>());
139141
mappingConfig.setDirectiveAnnotationsMapping(

plugins/maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<plugin>
2121
<groupId>io.github.kobylynskyi</groupId>
2222
<artifactId>graphql-codegen-maven-plugin</artifactId>
23-
<version>5.7.0</version>
23+
<version>5.7.1</version>
2424
<executions>
2525
<execution>
2626
<goals>

plugins/maven/example-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.kobylynskyi</groupId>
66
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
7-
<version>5.7.0</version>
7+
<version>5.7.1</version>
88
<name>graphql-codegen-maven-plugin-example-client</name>
99

1010
<build>

plugins/maven/example-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.kobylynskyi</groupId>
66
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
7-
<version>5.7.0</version>
7+
<version>5.7.1</version>
88
<name>graphql-codegen-maven-plugin-example-server</name>
99

1010
<build>

0 commit comments

Comments
 (0)