Skip to content

Commit

Permalink
Update version to 4.1.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
kobylynskyi committed Jan 1, 2021
1 parent dc5b277 commit 4093779
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
id "org.sonarqube" version "3.0"
}

version = "4.0.2-SNAPSHOT"
version = "4.1.0-SNAPSHOT"
group = "io.github.kobylynskyi"

repositories {
Expand Down
6 changes: 3 additions & 3 deletions plugins/gradle/example-client-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
plugins {
id 'java'
id "org.jetbrains.kotlin.jvm" version "1.3.71"
id "io.github.kobylynskyi.graphql.codegen" version "4.0.2-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "4.1.0-SNAPSHOT"
}

group 'io.github.dreamylost'
version '4.0.2-SNAPSHOT'
version '4.1.0-SNAPSHOT'

sourceCompatibility = 1.8

Expand All @@ -27,7 +27,7 @@ repositories {


dependencies {
implementation "io.github.kobylynskyi:graphql-java-codegen:4.0.2-SNAPSHOT"
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.0-SNAPSHOT"
implementation "javax.validation:validation-api:2.0.1.Final"
implementation "com.squareup.okhttp3:okhttp:4.2.2"
implementation "com.fasterxml.jackson.core:jackson-core:2.12.0"
Expand Down
4 changes: 2 additions & 2 deletions plugins/gradle/example-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 "4.0.2-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "4.1.0-SNAPSHOT"
}

mainClassName = "io.github.kobylynskyi.order.Application"
Expand All @@ -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:4.0.2-SNAPSHOT"
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.0-SNAPSHOT"

implementation "org.apache.httpcomponents:httpclient:4.5.13"
implementation "javax.validation:validation-api:2.0.1.Final"
Expand Down
2 changes: 1 addition & 1 deletion plugins/gradle/example-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 "4.0.2-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "4.1.0-SNAPSHOT"
}

mainClassName = "io.github.kobylynskyi.product.Application"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: "idea"
apply plugin: "maven-publish"

group = "io.github.kobylynskyi"
version = "4.0.2-SNAPSHOT"
version = "4.1.0-SNAPSHOT"
description = "Provides a task for generating Java code based on GraphQL schema"

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion plugins/maven/example-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
<version>4.0.2-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
<name>graphql-codegen-maven-plugin-example-client</name>

<build>
Expand Down
2 changes: 1 addition & 1 deletion plugins/maven/example-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
<version>4.0.2-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>
<name>graphql-codegen-maven-plugin-example-server</name>

<build>
Expand Down
4 changes: 2 additions & 2 deletions plugins/maven/graphql-java-codegen-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>4.0.2-SNAPSHOT</version>
<version>4.1.0-SNAPSHOT</version>

<name>graphql-codegen-maven-plugin</name>
<description>Provides a goal for generating Java code based on GraphQL schema</description>
Expand Down Expand Up @@ -70,7 +70,7 @@
<version.maven-scm-provider-gitexe>1.11.2</version.maven-scm-provider-gitexe>
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>

<version.graphql-java-codegen>4.0.2-SNAPSHOT</version.graphql-java-codegen>
<version.graphql-java-codegen>4.1.0-SNAPSHOT</version.graphql-java-codegen>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libraryDependencies ++= Seq(
"org.json" % "json" % "20190722")

enablePlugins(GraphQLCodegenPlugin)
graphqlJavaCodegenVersion := Some("4.0.2-SNAPSHOT")
graphqlJavaCodegenVersion := Some("4.1.0-SNAPSHOT")
GraphQLCodegenPluginDependencies
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.0.2-SNAPSHOT")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.0-SNAPSHOT")
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ libraryDependencies ++= Seq(

enablePlugins(GraphQLCodegenPlugin)

graphqlJavaCodegenVersion := Some("4.0.2-SNAPSHOT")
graphqlJavaCodegenVersion := Some("4.1.0-SNAPSHOT")

GraphQLCodegenPluginDependencies

//default graphqlJavaCodegen is release
//graphqlJavaCodegenVersion := Some("4.0.2-SNAPSHOT")
//graphqlJavaCodegenVersion := Some("4.1.0-SNAPSHOT")
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model")
apiPackageName := Some("io.github.dreamylost.api")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.0.2-SNAPSHOT")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.0-SNAPSHOT")
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sys.props.get("plugin.version").orElse(Some("4.0.2-SNAPSHOT")) match {
sys.props.get("plugin.version").orElse(Some("4.1.0-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)
Expand Down
2 changes: 1 addition & 1 deletion plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "4.0.2-SNAPSHOT"
version in ThisBuild := "4.1.0-SNAPSHOT"

0 comments on commit 4093779

Please sign in to comment.