From ba1cc28ceedc113a3fef1976561b0b81b0943a20 Mon Sep 17 00:00:00 2001 From: Bogdan Kobylynskyi <92bogdan@gmail.com> Date: Wed, 30 Sep 2020 17:04:58 -0500 Subject: [PATCH] Prepare for next dev iteration - 3.1.2-SNAPSHOT --- build.gradle | 2 +- plugins/gradle/example-client/build.gradle | 4 ++-- plugins/gradle/example-server/build.gradle | 2 +- .../gradle/graphql-java-codegen-gradle-plugin/build.gradle | 2 +- plugins/maven/example-client/pom.xml | 2 +- plugins/maven/example-server/pom.xml | 2 +- plugins/maven/graphql-java-codegen-maven-plugin/pom.xml | 2 +- .../project/Dependencies.scala | 2 +- .../dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala | 2 +- .../graphql-codegen-sbt-plugin/example-client/build.sbt | 4 ++-- .../example-client/project/plugins.sbt | 2 +- .../graphql-codegen-sbt-plugin/simple/project/plugins.sbt | 2 +- plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/build.gradle b/build.gradle index 46b3e048..6d098db2 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { id "org.sonarqube" version "3.0" } -version = "3.1.1" +version = "3.1.2-SNAPSHOT" group = "io.github.kobylynskyi" repositories { diff --git a/plugins/gradle/example-client/build.gradle b/plugins/gradle/example-client/build.gradle index 5d03b852..dd27eb0f 100644 --- a/plugins/gradle/example-client/build.gradle +++ b/plugins/gradle/example-client/build.gradle @@ -7,7 +7,7 @@ plugins { // use the latest available version: // https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen - id "io.github.kobylynskyi.graphql.codegen" version "3.1.1" + id "io.github.kobylynskyi.graphql.codegen" version "3.1.2-SNAPSHOT" } mainClassName = "io.github.kobylynskyi.order.Application" @@ -22,7 +22,7 @@ dependencies { // use the latest available version: // https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen - implementation "io.github.kobylynskyi:graphql-java-codegen:3.1.1" + implementation "io.github.kobylynskyi:graphql-java-codegen:3.1.2-SNAPSHOT" implementation "org.apache.httpcomponents:httpclient:4.5.12" implementation "javax.validation:validation-api:2.0.1.Final" diff --git a/plugins/gradle/example-server/build.gradle b/plugins/gradle/example-server/build.gradle index 44fb26a0..8f85c65a 100644 --- a/plugins/gradle/example-server/build.gradle +++ b/plugins/gradle/example-server/build.gradle @@ -6,7 +6,7 @@ plugins { // // use the latest available version: // https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen - id "io.github.kobylynskyi.graphql.codegen" version "3.1.1" + id "io.github.kobylynskyi.graphql.codegen" version "3.1.2-SNAPSHOT" } mainClassName = "io.github.kobylynskyi.product.Application" diff --git a/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle b/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle index 333767f4..e7723a8a 100644 --- a/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle +++ b/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle @@ -17,7 +17,7 @@ apply plugin: "idea" apply plugin: "maven-publish" group = "io.github.kobylynskyi" -version = "3.1.1" +version = "3.1.2-SNAPSHOT" description = "Provides a task for generating Java code based on GraphQL schema" dependencies { diff --git a/plugins/maven/example-client/pom.xml b/plugins/maven/example-client/pom.xml index f433fc1f..669df23d 100644 --- a/plugins/maven/example-client/pom.xml +++ b/plugins/maven/example-client/pom.xml @@ -4,7 +4,7 @@ io.github.kobylynskyi graphql-codegen-maven-plugin-example-client - 3.1.1 + 3.1.2-SNAPSHOT graphql-codegen-maven-plugin-example-client diff --git a/plugins/maven/example-server/pom.xml b/plugins/maven/example-server/pom.xml index e33e9dbf..a963e324 100644 --- a/plugins/maven/example-server/pom.xml +++ b/plugins/maven/example-server/pom.xml @@ -4,7 +4,7 @@ io.github.kobylynskyi graphql-codegen-maven-plugin-example-server - 3.1.1 + 3.1.2-SNAPSHOT graphql-codegen-maven-plugin-example-server diff --git a/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml b/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml index c7368a0c..c4db9735 100644 --- a/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml +++ b/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml @@ -70,7 +70,7 @@ 1.11.2 1.6 - 3.1.1 + 3.1.2-SNAPSHOT diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala b/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala index 790009b2..29ef6053 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala @@ -13,7 +13,7 @@ object Dependencies { object Versions { lazy val scala212 = "2.12.12" lazy val scala211 = "2.11.12" - val codegen = "3.1.1" + val codegen = "3.1.2-SNAPSHOT" } import Versions._ diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala index 2bd0e279..74569d6f 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala @@ -29,7 +29,7 @@ class GraphQLCodegenPlugin(configuration: Configuration, private[codegen] val co //override this by graphqlJavaCodegenVersion and javaxValidationApiVersion private val jValidation = "2.0.1.Final" - private val codegen = "3.1.1" + private val codegen = "3.1.2-SNAPSHOT" object GlobalImport extends GraphQLCodegenKeys { diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt index 4168c8b0..15c88dc7 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt @@ -17,12 +17,12 @@ libraryDependencies ++= Seq( enablePlugins(GraphQLCodegenPlugin) -graphqlJavaCodegenVersion := Some("3.1.1") +graphqlJavaCodegenVersion := Some("3.1.2-SNAPSHOT") GraphQLCodegenPluginDependencies //default graphqlJavaCodegen is release -//graphqlJavaCodegenVersion := Some("3.1.1") +//graphqlJavaCodegenVersion := Some("3.1.2-SNAPSHOT") graphqlSchemaPaths := List("src/main/resources/schema.graphqls") modelPackageName := Some("io.github.dreamylost.model") apiPackageName := Some("io.github.dreamylost.api") diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt index b08dcb18..ae4dfcff 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.1") +addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.2-SNAPSHOT") diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt index 3fcbe517..c43785cb 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt @@ -1,4 +1,4 @@ -sys.props.get("plugin.version").orElse(Some("3.1.1")) match { +sys.props.get("plugin.version").orElse(Some("3.1.2-SNAPSHOT")) match { case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x) case _ => sys.error("""|The system property 'plugin.version' is not defined. |Specify this property using the scriptedLaunchOpts -D.""".stripMargin) diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt index 1eb87944..b3c6fd51 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt @@ -1 +1 @@ -version in ThisBuild := "3.1.1" +version in ThisBuild := "3.1.2-SNAPSHOT" -- GitLab