File tree 17 files changed +23
-23
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
17 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
id " org.sonarqube" version " 4.0.0.2929"
10
10
}
11
11
12
- def graphqlCodegenVersion = ' 5.9.1-SNAPSHOT ' // This variable used in the automatic release process
12
+ def graphqlCodegenVersion = ' 5.10.0 ' // 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 17
17
18
18
``` groovy
19
19
plugins {
20
- id "io.github.kobylynskyi.graphql.codegen" version "5.9 .0"
20
+ id "io.github.kobylynskyi.graphql.codegen" version "5.10 .0"
21
21
}
22
22
```
23
23
@@ -31,7 +31,7 @@ buildscript {
31
31
}
32
32
}
33
33
dependencies {
34
- classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.9 .0"
34
+ classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.10 .0"
35
35
}
36
36
}
37
37
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.9.22"
7
- id " io.github.kobylynskyi.graphql.codegen" version " 5.9.1-SNAPSHOT "
7
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.10.0 "
8
8
}
9
9
10
- def graphqlCodegenClientKotlinVersion = ' 5.9.1-SNAPSHOT ' // Variable used in the automatic release process
10
+ def graphqlCodegenClientKotlinVersion = ' 5.10.0 ' // Variable used in the automatic release process
11
11
12
12
group = ' io.github.dreamylost'
13
13
version = graphqlCodegenClientKotlinVersion
@@ -28,7 +28,7 @@ repositories {
28
28
dependencies {
29
29
// use the latest available version:
30
30
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
31
- implementation " io.github.kobylynskyi:graphql-java-codegen:5.9.1-SNAPSHOT "
31
+ implementation " io.github.kobylynskyi:graphql-java-codegen:5.10.0 "
32
32
33
33
implementation " javax.validation:validation-api:2.0.1.Final"
34
34
implementation " com.squareup.okhttp3:okhttp:4.11.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 " 5.9.1-SNAPSHOT "
10
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.10.0 "
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:5.9.1-SNAPSHOT "
25
+ implementation " io.github.kobylynskyi:graphql-java-codegen:5.10.0 "
26
26
27
27
implementation " org.apache.httpcomponents:httpclient:4.5.14"
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 " 5.9.1-SNAPSHOT "
9
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.10.0 "
10
10
}
11
11
12
12
mainClassName = " io.github.kobylynskyi.product.Application"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ apply plugin: "java"
15
15
apply plugin : " idea"
16
16
apply plugin : " maven-publish"
17
17
18
- def graphqlCodegenGradlePluginVersion = ' 5.9.1-SNAPSHOT ' // This variable used in the automatic release process
18
+ def graphqlCodegenGradlePluginVersion = ' 5.10.0 ' // This variable used in the automatic release process
19
19
20
20
group = " io.github.kobylynskyi"
21
21
version = graphqlCodegenGradlePluginVersion
Original file line number Diff line number Diff line change 20
20
<plugin >
21
21
<groupId >io.github.kobylynskyi</groupId >
22
22
<artifactId >graphql-codegen-maven-plugin</artifactId >
23
- <version >5.9 .0</version >
23
+ <version >5.10 .0</version >
24
24
<executions >
25
25
<execution >
26
26
<goals >
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 >5.9.1-SNAPSHOT </version >
7
+ <version >5.10.0 </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 >5.9.1-SNAPSHOT </version >
7
+ <version >5.10.0 </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 >5.9.1 -SNAPSHOT</version >
6
+ <version >5.10.0 -SNAPSHOT</version >
7
7
<packaging >maven-plugin</packaging >
8
8
9
9
<name >graphql-codegen-maven-plugin</name >
36
36
<
developerConnection >scm:git:
[email protected] :kobylynskyi/graphql-java-codegen.git
37
37
</developerConnection >
38
38
<url >https://github.com/kobylynskyi/graphql-java-codegen/tree/main/plugins/maven</url >
39
- <tag >v5.9.1-SNAPSHOT </tag >
39
+ <tag >v5.10.0 </tag >
40
40
</scm >
41
41
42
42
<distributionManagement >
72
72
<version .maven-gpg-plugin>3.1.0</version .maven-gpg-plugin>
73
73
<version .maven-shared-utils>3.4.2</version .maven-shared-utils>
74
74
75
- <version .graphql-java-codegen>5.9.1-SNAPSHOT </version .graphql-java-codegen>
75
+ <version .graphql-java-codegen>5.10.0 </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" % " 5.9.1-SNAPSHOT " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.10.0 " )
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 5.9.1-SNAPSHOT "
1
+ version in ThisBuild := " 5.10.0 "
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.9.1-SNAPSHOT " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.10.0 " )
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 5.9.1-SNAPSHOT "
1
+ version in ThisBuild := " 5.10.0 "
Original file line number Diff line number Diff line change 1
- sys.props.get(" plugin.version" ).orElse(Some (" 5.9.1-SNAPSHOT " )) match {
1
+ sys.props.get(" plugin.version" ).orElse(Some (" 5.10.0 " )) 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 := " 5.9.1-SNAPSHOT "
1
+ version in ThisBuild := " 5.10.0 "
Original file line number Diff line number Diff line change 1
- ThisBuild / version := " 5.9.1-SNAPSHOT "
1
+ ThisBuild / version := " 5.10.0 "
You can’t perform that action at this time.
0 commit comments