提交 213d99d6 编写于 作者: B Bogdan Kobylynskyi

Prepare for next dev iteration - 4.1.2-SNAPSHOT

上级 f8826805
......@@ -9,7 +9,7 @@ plugins {
id "org.sonarqube" version "3.0"
}
version = "4.1.1"
version = "4.1.2-SNAPSHOT"
group = "io.github.kobylynskyi"
repositories {
......
......@@ -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.1.1"
id "io.github.kobylynskyi.graphql.codegen" version "4.1.2-SNAPSHOT"
}
group 'io.github.dreamylost'
version '4.1.1'
version '4.1.2-SNAPSHOT'
sourceCompatibility = 1.8
......@@ -27,7 +27,7 @@ repositories {
dependencies {
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.1"
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.2-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"
......
......@@ -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.1.1"
id "io.github.kobylynskyi.graphql.codegen" version "4.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:4.1.1"
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.2-SNAPSHOT"
implementation "org.apache.httpcomponents:httpclient:4.5.13"
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 "4.1.1"
id "io.github.kobylynskyi.graphql.codegen" version "4.1.2-SNAPSHOT"
}
mainClassName = "io.github.kobylynskyi.product.Application"
......
......@@ -17,7 +17,7 @@ apply plugin: "idea"
apply plugin: "maven-publish"
group = "io.github.kobylynskyi"
version = "4.1.1"
version = "4.1.2-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>4.1.1</version>
<version>4.1.2-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>4.1.1</version>
<version>4.1.2-SNAPSHOT</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>4.1.1</version>
<version>4.1.2-SNAPSHOT</version>
<name>graphql-codegen-maven-plugin</name>
<description>Provides a goal for generating Java code based on GraphQL schema</description>
......@@ -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.1.1</version.graphql-java-codegen>
<version.graphql-java-codegen>4.1.2-SNAPSHOT</version.graphql-java-codegen>
</properties>
<dependencies>
......
......@@ -15,7 +15,7 @@ libraryDependencies ++= Seq(
"org.json" % "json" % "20190722")
enablePlugins(GraphQLCodegenPlugin)
graphqlJavaCodegenVersion := Some("4.1.1")
graphqlJavaCodegenVersion := Some("4.1.2-SNAPSHOT")
GraphQLCodegenPluginDependencies
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
modelPackageName := Some("io.github.dreamylost.model")
......
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.1")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.2-SNAPSHOT")
......@@ -17,12 +17,12 @@ libraryDependencies ++= Seq(
enablePlugins(GraphQLCodegenPlugin)
graphqlJavaCodegenVersion := Some("4.1.1")
graphqlJavaCodegenVersion := Some("4.1.2-SNAPSHOT")
GraphQLCodegenPluginDependencies
//default graphqlJavaCodegen is release
//graphqlJavaCodegenVersion := Some("4.1.1")
//graphqlJavaCodegenVersion := Some("4.1.2-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" % "4.1.1")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "4.1.2-SNAPSHOT")
sys.props.get("plugin.version").orElse(Some("4.1.1")) match {
sys.props.get("plugin.version").orElse(Some("4.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)
......
version in ThisBuild := "4.1.1"
version in ThisBuild := "4.1.2-SNAPSHOT"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册