Skip to content

Commit e95e60c

Browse files
committed
Update to next development version: 5.0.0-SNAPSHOT
1 parent 57086a8 commit e95e60c

File tree

15 files changed

+19
-19
lines changed

15 files changed

+19
-19
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id "org.sonarqube" version "3.1.1"
1010
}
1111

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

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

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

+3-3
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.3.71"
7-
id "io.github.kobylynskyi.graphql.codegen" version "4.1.6"
7+
id "io.github.kobylynskyi.graphql.codegen" version "5.0.0-SNAPSHOT"
88
}
99

10-
def graphqlCodegenClientKotlinVersion = '4.1.6' // Variable used in the automatic release process
10+
def graphqlCodegenClientKotlinVersion = '5.0.0-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:4.1.6"
32+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.0.0-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.12.0"

plugins/gradle/example-client/build.gradle

+2-2
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 "4.1.6"
10+
id "io.github.kobylynskyi.graphql.codegen" version "5.0.0-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:4.1.6"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.0.0-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

+1-1
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 "4.1.6"
9+
id "io.github.kobylynskyi.graphql.codegen" version "5.0.0-SNAPSHOT"
1010
}
1111

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

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

+1-1
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 = '4.1.6' // This variable used in the automatic release process
19+
def graphqlCodegenGradlePluginVersion = '5.0.0-SNAPSHOT' // This variable used in the automatic release process
2020

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

plugins/maven/example-client/pom.xml

+1-1
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>4.1.6</version>
7+
<version>5.0.0-SNAPSHOT</version>
88
<name>graphql-codegen-maven-plugin-example-client</name>
99

1010
<build>

plugins/maven/example-server/pom.xml

+1-1
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>4.1.6</version>
7+
<version>5.0.0-SNAPSHOT</version>
88
<name>graphql-codegen-maven-plugin-example-server</name>
99

1010
<build>

plugins/maven/graphql-java-codegen-maven-plugin/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>io.github.kobylynskyi</groupId>
55
<artifactId>graphql-codegen-maven-plugin</artifactId>
6-
<version>4.1.6</version>
6+
<version>5.0.0-SNAPSHOT</version>
77
<packaging>maven-plugin</packaging>
88

99
<name>graphql-codegen-maven-plugin</name>
@@ -72,7 +72,7 @@
7272
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
7373
<version.maven-shared-utils>3.3.3</version.maven-shared-utils>
7474

75-
<version.graphql-java-codegen>4.1.6</version.graphql-java-codegen>
75+
<version.graphql-java-codegen>5.0.0-SNAPSHOT</version.graphql-java-codegen>
7676
</properties>
7777

7878
<dependencies>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.6")
1+
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.0.0-SNAPSHOT")
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "4.1.6"
1+
version in ThisBuild := "5.0.0-SNAPSHOT"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.6")
1+
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.0.0-SNAPSHOT")
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "4.1.6"
1+
version in ThisBuild := "5.0.0-SNAPSHOT"

plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sys.props.get("plugin.version").orElse(Some("4.1.6")) match {
1+
sys.props.get("plugin.version").orElse(Some("5.0.0-SNAPSHOT")) match {
22
case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x)
33
case _ => sys.error("""|The system property 'plugin.version' is not defined.
44
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "4.1.6"
1+
version in ThisBuild := "5.0.0-SNAPSHOT"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "4.1.6"
1+
version in ThisBuild := "5.0.0-SNAPSHOT"

0 commit comments

Comments
 (0)