提交 32a98c0e 编写于 作者: B Bogdan Kobylynskyi

Prepare for next dev iteration - 3.1.1-SNAPSHOT

上级 bc6906e4
......@@ -9,7 +9,7 @@ plugins {
id "org.sonarqube" version "3.0"
}
version = "3.1.0"
version = "3.1.1-SNAPSHOT"
group = "io.github.kobylynskyi"
repositories {
......
......@@ -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.0"
id "io.github.kobylynskyi.graphql.codegen" version "3.1.1-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.0"
implementation "io.github.kobylynskyi:graphql-java-codegen:3.1.1-SNAPSHOT"
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.1.0"
id "io.github.kobylynskyi.graphql.codegen" version "3.1.1-SNAPSHOT"
}
mainClassName = "io.github.kobylynskyi.product.Application"
......
......@@ -17,7 +17,7 @@ apply plugin: "idea"
apply plugin: "maven-publish"
group = "io.github.kobylynskyi"
version = "3.1.0"
version = "3.1.1-SNAPSHOT"
description = "Provides a task for generating Java code based on GraphQL schema"
dependencies {
......
......@@ -4,7 +4,7 @@
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
<version>3.1.0</version>
<version>3.1.1-SNAPSHOT</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.1.0</version>
<version>3.1.1-SNAPSHOT</version>
<name>graphql-codegen-maven-plugin-example-server</name>
<build>
......
......@@ -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.1.0</version.graphql-java-codegen>
<version.graphql-java-codegen>3.1.1-SNAPSHOT</version.graphql-java-codegen>
</properties>
<dependencies>
......
......@@ -13,7 +13,7 @@ object Dependencies {
object Versions {
lazy val scala212 = "2.12.12"
lazy val scala211 = "2.11.12"
val codegen = "3.1.0"
val codegen = "3.1.1-SNAPSHOT"
}
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.1.0"
private val codegen = "3.1.1-SNAPSHOT"
object GlobalImport extends GraphQLCodegenKeys {
......
......@@ -17,12 +17,12 @@ libraryDependencies ++= Seq(
enablePlugins(GraphQLCodegenPlugin)
graphqlJavaCodegenVersion := Some("3.1.0")
graphqlJavaCodegenVersion := Some("3.1.1-SNAPSHOT")
GraphQLCodegenPluginDependencies
//default graphqlJavaCodegen is release
//graphqlJavaCodegenVersion := Some("3.1.0")
//graphqlJavaCodegenVersion := Some("3.1.1-SNAPSHOT")
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.1.0")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.1-SNAPSHOT")
sys.props.get("plugin.version").orElse(Some("3.1.0")) match {
sys.props.get("plugin.version").orElse(Some("3.1.1-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)
......
version in ThisBuild := "3.1.0"
version in ThisBuild := "3.1.1-SNAPSHOT"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册