提交 0204e971 编写于 作者: B Bogdan Kobylynskyi

Bump to release version 3.1.0

上级 96b4b4a2
......@@ -22,7 +22,7 @@ assignees: ''
## Your Environment and Setup
* **graphql-java-codegen**: *E.g.: 3.0.0*
* **graphql-java-codegen**: *E.g.: 3.1.0*
* **Build tool**: *E.g.: Maven*
* **Java tool**: *E.g.: Oracle 8u241*
* **Mapping Config**: *E.g.:*
......
......@@ -9,7 +9,7 @@ plugins {
id "org.sonarqube" version "3.0"
}
version = "3.0.1-SNAPSHOT"
version = "3.1.0"
group = "io.github.kobylynskyi"
repositories {
......
......@@ -18,7 +18,7 @@
```groovy
plugins {
id "io.github.kobylynskyi.graphql.codegen" version "3.0.0"
id "io.github.kobylynskyi.graphql.codegen" version "3.1.0"
}
```
......@@ -32,7 +32,7 @@ buildscript {
}
}
dependencies {
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:3.0.0"
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:3.1.0"
}
}
......
......@@ -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.0.1-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "3.1.0"
}
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.0.1-SNAPSHOT"
implementation "io.github.kobylynskyi:graphql-java-codegen:3.1.0"
implementation "org.apache.httpcomponents:httpclient:4.5.12"
implementation "javax.validation:validation-api:2.0.1.Final"
......
......@@ -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.0.1-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "3.1.0"
}
mainClassName = "io.github.kobylynskyi.product.Application"
......
......@@ -17,7 +17,7 @@ apply plugin: "idea"
apply plugin: "maven-publish"
group = "io.github.kobylynskyi"
version = "3.0.1-SNAPSHOT"
version = "3.1.0"
description = "Provides a task for generating Java code based on GraphQL schema"
dependencies {
......
......@@ -21,7 +21,7 @@
<plugin>
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<executions>
<execution>
<goals>
......
......@@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.1.0</version>
<name>graphql-codegen-maven-plugin-example-client</name>
<build>
......
......@@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.1.0</version>
<name>graphql-codegen-maven-plugin-example-server</name>
<build>
......
......@@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>3.0.1-SNAPSHOT</version>
<version>3.1.0-SNAPSHOT</version>
<name>graphql-codegen-maven-plugin</name>
<description>Provides a goal for generating Java code based on GraphQL schema</description>
......@@ -36,7 +36,7 @@
<developerConnection>scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git
</developerConnection>
<url>https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/maven</url>
<tag>v3.0.0</tag>
<tag>v3.1.0</tag>
</scm>
<distributionManagement>
......@@ -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>3.0.1-SNAPSHOT</version.graphql-java-codegen>
<version.graphql-java-codegen>3.1.0</version.graphql-java-codegen>
</properties>
<dependencies>
......
......@@ -33,7 +33,7 @@ enablePlugins(GraphQLCodegenPlugin)
GraphQLCodegenPluginDependencies
//default graphqlJavaCodegen is release
graphqlJavaCodegenVersion := Some("3.0.0")
graphqlJavaCodegenVersion := Some("3.1.0")
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model")
apiPackageName := Some("io.github.dreamylost.api")
......
......@@ -13,7 +13,7 @@ object Dependencies {
object Versions {
lazy val scala212 = "2.12.12"
lazy val scala211 = "2.11.12"
val codegen = "3.0.1-SNAPSHOT"
val codegen = "3.1.0"
}
import Versions._
......
......@@ -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.0.1-SNAPSHOT"
private val codegen = "3.1.0"
object GlobalImport extends GraphQLCodegenKeys {
......
......@@ -17,12 +17,12 @@ libraryDependencies ++= Seq(
enablePlugins(GraphQLCodegenPlugin)
graphqlJavaCodegenVersion := Some("3.0.1-SNAPSHOT")
graphqlJavaCodegenVersion := Some("3.1.0")
GraphQLCodegenPluginDependencies
//default graphqlJavaCodegen is release
//graphqlJavaCodegenVersion := Some("3.0.0")
//graphqlJavaCodegenVersion := Some("3.1.0")
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model")
apiPackageName := Some("io.github.dreamylost.api")
......
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.0.1-SNAPSHOT")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.0")
sys.props.get("plugin.version").orElse(Some("3.0.1-SNAPSHOT")) match {
sys.props.get("plugin.version").orElse(Some("3.1.0")) 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)
......
version in ThisBuild := "3.0.1-SNAPSHOT"
version in ThisBuild := "3.1.0"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册