File tree 15 files changed +19
-19
lines changed
graphql-java-codegen-gradle-plugin
graphql-java-codegen-maven-plugin
sbt/graphql-java-codegen-sbt-plugin
src/sbt-test/graphql-codegen-sbt-plugin
15 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
id " org.sonarqube" version " 3.1.1"
10
10
}
11
11
12
- def graphqlCodegenVersion = ' 4.1.6 ' // This variable used in the automatic release process
12
+ def graphqlCodegenVersion = ' 5.0.0-SNAPSHOT ' // This variable used in the automatic release process
13
13
14
14
group = " io.github.kobylynskyi"
15
15
version = graphqlCodegenVersion
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
4
4
plugins {
5
5
id ' java'
6
6
id " org.jetbrains.kotlin.jvm" version " 1.3.71"
7
- id " io.github.kobylynskyi.graphql.codegen" version " 4.1.6 "
7
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.0.0-SNAPSHOT "
8
8
}
9
9
10
- def graphqlCodegenClientKotlinVersion = ' 4.1.6 ' // Variable used in the automatic release process
10
+ def graphqlCodegenClientKotlinVersion = ' 5.0.0-SNAPSHOT ' // Variable used in the automatic release process
11
11
12
12
group = ' io.github.dreamylost'
13
13
version = graphqlCodegenClientKotlinVersion
@@ -29,7 +29,7 @@ repositories {
29
29
30
30
31
31
dependencies {
32
- implementation " io.github.kobylynskyi:graphql-java-codegen:4.1.6 "
32
+ implementation " io.github.kobylynskyi:graphql-java-codegen:5.0.0-SNAPSHOT "
33
33
implementation " javax.validation:validation-api:2.0.1.Final"
34
34
implementation " com.squareup.okhttp3:okhttp:4.2.2"
35
35
implementation " com.fasterxml.jackson.core:jackson-core:2.12.0"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
8
8
// use the latest available version:
9
9
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
10
- id " io.github.kobylynskyi.graphql.codegen" version " 4.1.6 "
10
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.0.0-SNAPSHOT "
11
11
}
12
12
13
13
mainClassName = " io.github.kobylynskyi.order.Application"
@@ -22,7 +22,7 @@ dependencies {
22
22
23
23
// use the latest available version:
24
24
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
25
- implementation " io.github.kobylynskyi:graphql-java-codegen:4.1.6 "
25
+ implementation " io.github.kobylynskyi:graphql-java-codegen:5.0.0-SNAPSHOT "
26
26
27
27
implementation " org.apache.httpcomponents:httpclient:4.5.13"
28
28
implementation " javax.validation:validation-api:2.0.1.Final"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
//
7
7
// use the latest available version:
8
8
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
9
- id " io.github.kobylynskyi.graphql.codegen" version " 4.1.6 "
9
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.0.0-SNAPSHOT "
10
10
}
11
11
12
12
mainClassName = " io.github.kobylynskyi.product.Application"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ apply plugin: "java"
16
16
apply plugin : " idea"
17
17
apply plugin : " maven-publish"
18
18
19
- def graphqlCodegenGradlePluginVersion = ' 4.1.6 ' // This variable used in the automatic release process
19
+ def graphqlCodegenGradlePluginVersion = ' 5.0.0-SNAPSHOT ' // This variable used in the automatic release process
20
20
21
21
group = " io.github.kobylynskyi"
22
22
version = graphqlCodegenGradlePluginVersion
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >io.github.kobylynskyi</groupId >
6
6
<artifactId >graphql-codegen-maven-plugin-example-client</artifactId >
7
- <version >4.1.6 </version >
7
+ <version >5.0.0-SNAPSHOT </version >
8
8
<name >graphql-codegen-maven-plugin-example-client</name >
9
9
10
10
<build >
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >io.github.kobylynskyi</groupId >
6
6
<artifactId >graphql-codegen-maven-plugin-example-server</artifactId >
7
- <version >4.1.6 </version >
7
+ <version >5.0.0-SNAPSHOT </version >
8
8
<name >graphql-codegen-maven-plugin-example-server</name >
9
9
10
10
<build >
Original file line number Diff line number Diff line change 3
3
4
4
<groupId >io.github.kobylynskyi</groupId >
5
5
<artifactId >graphql-codegen-maven-plugin</artifactId >
6
- <version >4.1.6 </version >
6
+ <version >5.0.0-SNAPSHOT </version >
7
7
<packaging >maven-plugin</packaging >
8
8
9
9
<name >graphql-codegen-maven-plugin</name >
72
72
<version .maven-gpg-plugin>1.6</version .maven-gpg-plugin>
73
73
<version .maven-shared-utils>3.3.3</version .maven-shared-utils>
74
74
75
- <version .graphql-java-codegen>4.1.6 </version .graphql-java-codegen>
75
+ <version .graphql-java-codegen>5.0.0-SNAPSHOT </version .graphql-java-codegen>
76
76
</properties >
77
77
78
78
<dependencies >
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 4.1.6 " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.0.0-SNAPSHOT " )
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 4.1.6 "
1
+ version in ThisBuild := " 5.0.0-SNAPSHOT "
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 4.1.6 " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.0.0-SNAPSHOT " )
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 4.1.6 "
1
+ version in ThisBuild := " 5.0.0-SNAPSHOT "
Original file line number Diff line number Diff line change 1
- sys.props.get(" plugin.version" ).orElse(Some (" 4.1.6 " )) match {
1
+ sys.props.get(" plugin.version" ).orElse(Some (" 5.0.0-SNAPSHOT " )) match {
2
2
case Some (x) => addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % x)
3
3
case _ => sys.error(""" |The system property 'plugin.version' is not defined.
4
4
|Specify this property using the scriptedLaunchOpts -D.""" .stripMargin)
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 4.1.6 "
1
+ version in ThisBuild := " 5.0.0-SNAPSHOT "
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 4.1.6 "
1
+ version in ThisBuild := " 5.0.0-SNAPSHOT "
You can’t perform that action at this time.
0 commit comments