提交 dfc53999 编写于 作者: B Bogdan Kobylynskyi

Bump to release version 2.4.1

上级 11b9c269
...@@ -22,7 +22,7 @@ assignees: '' ...@@ -22,7 +22,7 @@ assignees: ''
## Your Environment and Setup ## Your Environment and Setup
* **graphql-java-codegen**: *E.g.: 2.4.0* * **graphql-java-codegen**: *E.g.: 2.4.1*
* **Build tool**: *E.g.: Maven* * **Build tool**: *E.g.: Maven*
* **Java tool**: *E.g.: Oracle 8u241* * **Java tool**: *E.g.: Oracle 8u241*
* **Mapping Config**: *E.g.:* * **Mapping Config**: *E.g.:*
......
...@@ -9,7 +9,7 @@ plugins { ...@@ -9,7 +9,7 @@ plugins {
id "org.sonarqube" version "3.0" id "org.sonarqube" version "3.0"
} }
version = "2.4.1-SNAPSHOT" version = "2.4.1"
group = "io.github.kobylynskyi" group = "io.github.kobylynskyi"
repositories { repositories {
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
```groovy ```groovy
plugins { plugins {
id "io.github.kobylynskyi.graphql.codegen" version "2.4.0" id "io.github.kobylynskyi.graphql.codegen" version "2.4.1"
} }
``` ```
...@@ -32,7 +32,7 @@ buildscript { ...@@ -32,7 +32,7 @@ buildscript {
} }
} }
dependencies { dependencies {
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:2.4.0" classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:2.4.1"
} }
} }
......
...@@ -7,7 +7,7 @@ plugins { ...@@ -7,7 +7,7 @@ plugins {
// use the latest available version: // use the latest available version:
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen // https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
id "io.github.kobylynskyi.graphql.codegen" version "2.4.1-SNAPSHOT" id "io.github.kobylynskyi.graphql.codegen" version "2.4.1"
} }
mainClassName = "io.github.kobylynskyi.order.Application" mainClassName = "io.github.kobylynskyi.order.Application"
...@@ -22,7 +22,7 @@ dependencies { ...@@ -22,7 +22,7 @@ dependencies {
// use the latest available version: // use the latest available version:
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen // https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
implementation "io.github.kobylynskyi:graphql-java-codegen:2.4.1-SNAPSHOT" implementation "io.github.kobylynskyi:graphql-java-codegen:2.4.1"
implementation "org.apache.httpcomponents:httpclient:4.5.12" implementation "org.apache.httpcomponents:httpclient:4.5.12"
implementation "javax.validation:validation-api:2.0.1.Final" implementation "javax.validation:validation-api:2.0.1.Final"
......
...@@ -6,7 +6,7 @@ plugins { ...@@ -6,7 +6,7 @@ plugins {
// //
// use the latest available version: // use the latest available version:
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen // https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
id "io.github.kobylynskyi.graphql.codegen" version "2.4.1-SNAPSHOT" id "io.github.kobylynskyi.graphql.codegen" version "2.4.1"
} }
mainClassName = "io.github.kobylynskyi.product.Application" mainClassName = "io.github.kobylynskyi.product.Application"
......
...@@ -17,7 +17,7 @@ apply plugin: "idea" ...@@ -17,7 +17,7 @@ apply plugin: "idea"
apply plugin: "maven-publish" apply plugin: "maven-publish"
group = "io.github.kobylynskyi" group = "io.github.kobylynskyi"
version = "2.4.1-SNAPSHOT" version = "2.4.1"
description = "Provides a task for generating Java code based on GraphQL schema" description = "Provides a task for generating Java code based on GraphQL schema"
dependencies { dependencies {
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<plugin> <plugin>
<groupId>io.github.kobylynskyi</groupId> <groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin</artifactId> <artifactId>graphql-codegen-maven-plugin</artifactId>
<version>2.4.0</version> <version>2.4.1</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId> <groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId> <artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
<version>2.4.1-SNAPSHOT</version> <version>2.4.1</version>
<name>graphql-codegen-maven-plugin-example-client</name> <name>graphql-codegen-maven-plugin-example-client</name>
<build> <build>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId> <groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId> <artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
<version>2.4.1-SNAPSHOT</version> <version>2.4.1</version>
<name>graphql-codegen-maven-plugin-example-server</name> <name>graphql-codegen-maven-plugin-example-server</name>
<build> <build>
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
<developerConnection>scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git <developerConnection>scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git
</developerConnection> </developerConnection>
<url>https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/maven</url> <url>https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/maven</url>
<tag>v2.4.0</tag> <tag>v2.4.1</tag>
</scm> </scm>
<distributionManagement> <distributionManagement>
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<version.maven-scm-provider-gitexe>1.11.2</version.maven-scm-provider-gitexe> <version.maven-scm-provider-gitexe>1.11.2</version.maven-scm-provider-gitexe>
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin> <version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
<version.graphql-java-codegen>2.4.1-SNAPSHOT</version.graphql-java-codegen> <version.graphql-java-codegen>2.4.1</version.graphql-java-codegen>
</properties> </properties>
<dependencies> <dependencies>
......
...@@ -33,7 +33,7 @@ enablePlugins(GraphQLCodegenPlugin) ...@@ -33,7 +33,7 @@ enablePlugins(GraphQLCodegenPlugin)
GraphQLCodegenPluginDependencies GraphQLCodegenPluginDependencies
//default graphqlJavaCodegen is release //default graphqlJavaCodegen is release
graphqlJavaCodegenVersion := Some("2.2.2-SNAPSHOT") graphqlJavaCodegenVersion := Some("2.4.1")
graphqlSchemaPaths := List("src/main/resources/schema.graphqls") graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model") modelPackageName := Some("io.github.dreamylost.model")
apiPackageName := Some("io.github.dreamylost.api") apiPackageName := Some("io.github.dreamylost.api")
......
...@@ -13,7 +13,7 @@ object Dependencies { ...@@ -13,7 +13,7 @@ object Dependencies {
object Versions { object Versions {
lazy val scala212 = "2.12.12" lazy val scala212 = "2.12.12"
lazy val scala211 = "2.11.12" lazy val scala211 = "2.11.12"
val codegen = "2.4.0" val codegen = "2.4.1"
} }
import Versions._ import Versions._
......
...@@ -28,7 +28,7 @@ class GraphQLCodegenPlugin(configuration: Configuration) extends AutoPlugin with ...@@ -28,7 +28,7 @@ class GraphQLCodegenPlugin(configuration: Configuration) extends AutoPlugin with
//override this by graphqlJavaCodegenVersion and javaxValidationApiVersion //override this by graphqlJavaCodegenVersion and javaxValidationApiVersion
private val jValidation = "2.0.1.Final" private val jValidation = "2.0.1.Final"
private val codegen = "2.4.0" private val codegen = "2.4.1"
object GlobalImport extends GraphQLCodegenKeys { object GlobalImport extends GraphQLCodegenKeys {
......
...@@ -21,7 +21,7 @@ enablePlugins(GraphQLCodegenPlugin) ...@@ -21,7 +21,7 @@ enablePlugins(GraphQLCodegenPlugin)
GraphQLCodegenPluginDependencies GraphQLCodegenPluginDependencies
//default graphqlJavaCodegen is release //default graphqlJavaCodegen is release
//graphqlJavaCodegenVersion := Some("2.2.2-SNAPSHOT") //graphqlJavaCodegenVersion := Some("2.4.1")
graphqlSchemaPaths := List("src/main/resources/schema.graphqls") graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model") modelPackageName := Some("io.github.dreamylost.model")
apiPackageName := Some("io.github.dreamylost.api") apiPackageName := Some("io.github.dreamylost.api")
......
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "2.4.1-SNAPSHOT") addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "2.4.1")
sys.props.get("plugin.version").orElse(Some("2.4.1-SNAPSHOT")) match { sys.props.get("plugin.version").orElse(Some("2.4.1")) match {
case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x) case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x)
case _ => sys.error("""|The system property 'plugin.version' is not defined. case _ => sys.error("""|The system property 'plugin.version' is not defined.
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin) |Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
......
version in ThisBuild := "2.4.1-SNAPSHOT" version in ThisBuild := "2.4.1"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册