File tree 17 files changed +22
-22
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 +22
-22
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
id " org.sonarqube" version " 3.2.0"
10
10
}
11
11
12
- def graphqlCodegenVersion = ' 5.3.0-SNAPSHOT ' // This variable used in the automatic release process
12
+ def graphqlCodegenVersion = ' 5.3.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.2 .0"
20
+ id "io.github.kobylynskyi.graphql.codegen" version "5.3 .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.2 .0"
34
+ classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.3 .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.3.71"
7
- id " io.github.kobylynskyi.graphql.codegen" version " 5.3.0-SNAPSHOT "
7
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.3.0"
8
8
}
9
9
10
- def graphqlCodegenClientKotlinVersion = ' 5.3.0-SNAPSHOT ' // Variable used in the automatic release process
10
+ def graphqlCodegenClientKotlinVersion = ' 5.3.0' // 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:5.3.0-SNAPSHOT "
32
+ implementation " io.github.kobylynskyi:graphql-java-codegen:5.3.0"
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 " 5.3.0-SNAPSHOT "
10
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.3.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.3.0-SNAPSHOT "
25
+ implementation " io.github.kobylynskyi:graphql-java-codegen:5.3.0"
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 " 5.3.0-SNAPSHOT "
9
+ id " io.github.kobylynskyi.graphql.codegen" version " 5.3.0"
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 = ' 5.3.0-SNAPSHOT ' // This variable used in the automatic release process
19
+ def graphqlCodegenGradlePluginVersion = ' 5.3.0' // 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 20
20
<plugin >
21
21
<groupId >io.github.kobylynskyi</groupId >
22
22
<artifactId >graphql-codegen-maven-plugin</artifactId >
23
- <version >5.2 .0</version >
23
+ <version >5.3 .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.3.0-SNAPSHOT </version >
7
+ <version >5.3.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.3.0-SNAPSHOT </version >
7
+ <version >5.3.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.3.0-SNAPSHOT </version >
6
+ <version >5.3.0</version >
7
7
<packaging >maven-plugin</packaging >
8
8
9
9
<name >graphql-codegen-maven-plugin</name >
72
72
<version .maven-gpg-plugin>3.0.1</version .maven-gpg-plugin>
73
73
<version .maven-shared-utils>3.3.4</version .maven-shared-utils>
74
74
75
- <version .graphql-java-codegen>5.3.0-SNAPSHOT </version .graphql-java-codegen>
75
+ <version .graphql-java-codegen>5.3.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.3.0-SNAPSHOT " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.3.0" )
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 5.3.0-SNAPSHOT "
1
+ version in ThisBuild := " 5.3.0"
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.3.0-SNAPSHOT " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 5.3.0" )
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 5.3.0-SNAPSHOT "
1
+ version in ThisBuild := " 5.3.0"
Original file line number Diff line number Diff line change 1
- sys.props.get(" plugin.version" ).orElse(Some (" 5.3.0-SNAPSHOT " )) match {
1
+ sys.props.get(" plugin.version" ).orElse(Some (" 5.3.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.3.0-SNAPSHOT "
1
+ version in ThisBuild := " 5.3.0"
Original file line number Diff line number Diff line change 1
- version in ThisBuild := " 5.3.0-SNAPSHOT "
1
+ version in ThisBuild := " 5.3.0"
You can’t perform that action at this time.
0 commit comments