File tree Expand file tree Collapse file tree 18 files changed +25
-25
lines changed
graphql-java-codegen-gradle-plugin
graphql-java-codegen-maven-plugin
graphql-java-codegen-sbt-plugin
src/sbt-test/graphql-codegen-sbt-plugin Expand file tree Collapse file tree 18 files changed +25
-25
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ assignees: ''
22
22
23
23
## Your Environment and Setup
24
24
25
- * ** graphql-java-codegen** : * E.g.: 4.1.0 *
25
+ * ** graphql-java-codegen** : * E.g.: 4.1.1 *
26
26
* ** Build tool** : * E.g.: Maven*
27
27
* ** Java tool** : * E.g.: Oracle 8u241*
28
28
* ** Mapping Config** : * E.g.:*
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
9
9
id " org.sonarqube" version " 3.0"
10
10
}
11
11
12
- version = " 4.1.1-SNAPSHOT "
12
+ version = " 4.1.1"
13
13
group = " io.github.kobylynskyi"
14
14
15
15
repositories {
Original file line number Diff line number Diff line change 18
18
19
19
``` groovy
20
20
plugins {
21
- id "io.github.kobylynskyi.graphql.codegen" version "4.1.0 "
21
+ id "io.github.kobylynskyi.graphql.codegen" version "4.1.1 "
22
22
}
23
23
```
24
24
@@ -32,7 +32,7 @@ buildscript {
32
32
}
33
33
}
34
34
dependencies {
35
- classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:4.1.0 "
35
+ classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:4.1.1 "
36
36
}
37
37
}
38
38
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ 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.1-SNAPSHOT "
7
+ id " io.github.kobylynskyi.graphql.codegen" version " 4.1.1"
8
8
}
9
9
10
10
group ' io.github.dreamylost'
11
- version ' 4.1.1-SNAPSHOT '
11
+ version ' 4.1.1'
12
12
13
13
sourceCompatibility = 1.8
14
14
@@ -27,7 +27,7 @@ repositories {
27
27
28
28
29
29
dependencies {
30
- implementation " io.github.kobylynskyi:graphql-java-codegen:4.1.1-SNAPSHOT "
30
+ implementation " io.github.kobylynskyi:graphql-java-codegen:4.1.1"
31
31
implementation " javax.validation:validation-api:2.0.1.Final"
32
32
implementation " com.squareup.okhttp3:okhttp:4.2.2"
33
33
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.1-SNAPSHOT "
10
+ id " io.github.kobylynskyi.graphql.codegen" version " 4.1.1"
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.1-SNAPSHOT "
25
+ implementation " io.github.kobylynskyi:graphql-java-codegen:4.1.1"
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.1-SNAPSHOT "
9
+ id " io.github.kobylynskyi.graphql.codegen" version " 4.1.1"
10
10
}
11
11
12
12
mainClassName = " io.github.kobylynskyi.product.Application"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: "idea"
17
17
apply plugin : " maven-publish"
18
18
19
19
group = " io.github.kobylynskyi"
20
- version = " 4.1.1-SNAPSHOT "
20
+ version = " 4.1.1"
21
21
description = " Provides a task for generating Java code based on GraphQL schema"
22
22
23
23
dependencies {
Original file line number Diff line number Diff line change 21
21
<plugin >
22
22
<groupId >io.github.kobylynskyi</groupId >
23
23
<artifactId >graphql-codegen-maven-plugin</artifactId >
24
- <version >4.1.0 </version >
24
+ <version >4.1.1 </version >
25
25
<executions >
26
26
<execution >
27
27
<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 >4.1.1-SNAPSHOT </version >
7
+ <version >4.1.1</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.1-SNAPSHOT </version >
7
+ <version >4.1.1</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 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/master/plugins/maven</url >
39
- <tag >v4.1.0 </tag >
39
+ <tag >v4.1.1 </tag >
40
40
</scm >
41
41
42
42
<distributionManagement >
70
70
<version .maven-scm-provider-gitexe>1.11.2</version .maven-scm-provider-gitexe>
71
71
<version .maven-gpg-plugin>1.6</version .maven-gpg-plugin>
72
72
73
- <version .graphql-java-codegen>4.1.1-SNAPSHOT </version .graphql-java-codegen>
73
+ <version .graphql-java-codegen>4.1.1</version .graphql-java-codegen>
74
74
</properties >
75
75
76
76
<dependencies >
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ enablePlugins(GraphQLCodegenPlugin)
36
36
GraphQLCodegenPluginDependencies
37
37
38
38
// default graphqlJavaCodegen is release
39
- graphqlJavaCodegenVersion := Some (" 4.1.0 " )
39
+ graphqlJavaCodegenVersion := Some (" 4.1.1 " )
40
40
graphqlSchemaPaths := List (" src/main/resources/schema.graphqls" )
41
41
modelPackageName := Some (" io.github.dreamylost.model" )
42
42
apiPackageName := Some (" io.github.dreamylost.api" )
@@ -90,7 +90,7 @@ libraryDependencies ++= Seq(
90
90
" org.json" % " json" % " 20190722" )
91
91
92
92
enablePlugins(GraphQLCodegenPlugin )
93
- graphqlJavaCodegenVersion := Some (" 4.1.0 " )
93
+ graphqlJavaCodegenVersion := Some (" 4.1.1 " )
94
94
GraphQLCodegenPluginDependencies
95
95
graphqlSchemaPaths := List (" src/main/resources/schema.graphqls" )
96
96
modelPackageName := Some (" io.github.dreamylost.model" )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ libraryDependencies ++= Seq(
15
15
" org.json" % " json" % " 20190722" )
16
16
17
17
enablePlugins(GraphQLCodegenPlugin )
18
- graphqlJavaCodegenVersion := Some (" 4.1.1-SNAPSHOT " )
18
+ graphqlJavaCodegenVersion := Some (" 4.1.1" )
19
19
GraphQLCodegenPluginDependencies
20
20
graphqlSchemaPaths := List (" src/main/resources/schema.graphqls" )
21
21
modelPackageName := Some (" io.github.dreamylost.model" )
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 4.1.1-SNAPSHOT " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 4.1.1" )
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ libraryDependencies ++= Seq(
17
17
18
18
enablePlugins(GraphQLCodegenPlugin )
19
19
20
- graphqlJavaCodegenVersion := Some (" 4.1.1-SNAPSHOT " )
20
+ graphqlJavaCodegenVersion := Some (" 4.1.1" )
21
21
22
22
GraphQLCodegenPluginDependencies
23
23
24
24
// default graphqlJavaCodegen is release
25
- // graphqlJavaCodegenVersion := Some("4.1.1-SNAPSHOT ")
25
+ // graphqlJavaCodegenVersion := Some("4.1.1")
26
26
graphqlSchemaPaths := List (" src/main/resources/schema.graphqls" )
27
27
modelPackageName := Some (" io.github.dreamylost.model" )
28
28
apiPackageName := Some (" io.github.dreamylost.api" )
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 4.1.1-SNAPSHOT " )
1
+ addSbtPlugin(" io.github.jxnu-liguobin" % " graphql-codegen-sbt-plugin" % " 4.1.1" )
Original file line number Diff line number Diff line change 1
- sys.props.get(" plugin.version" ).orElse(Some (" 4.1.1-SNAPSHOT " )) match {
1
+ sys.props.get(" plugin.version" ).orElse(Some (" 4.1.1" )) 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.1-SNAPSHOT "
1
+ version in ThisBuild := " 4.1.1"
You can’t perform that action at this time.
0 commit comments