This repository was archived by the owner on Aug 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed
scala/scalatra-graphqlize-demo-web-app Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 3
3
org.postgresql/postgresql {:mvn/version " 42.2.8" }
4
4
mysql/mysql-connector-java {:mvn/version " 8.0.19" }
5
5
6
- org.graphqlize/graphqlize {:mvn/version " 0.1.0-alpha20 " }
6
+ org.graphqlize/graphqlize {:mvn/version " 0.1.0-alpha21 " }
7
7
8
8
metosin/reitit {:mvn/version " 0.4.2" }
9
9
ring/ring-jetty-adapter {:mvn/version " 1.7.1" }
Original file line number Diff line number Diff line change 2
2
:deps {hikari-cp {:mvn/version " 2.10.0" }
3
3
org.postgresql/postgresql {:mvn/version " 42.2.8" }
4
4
mysql/mysql-connector-java {:mvn/version " 8.0.19" }
5
- org.graphqlize/graphqlize {:mvn/version " 0.1.0-alpha20 " }
5
+ org.graphqlize/graphqlize {:mvn/version " 0.1.0-alpha21 " }
6
6
org.clojure/clojure {:mvn/version " 1.10.1" }}}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies {
21
21
implementation ' com.sparkjava:spark-core:2.9.1'
22
22
implementation ' org.postgresql:postgresql:42.2.10'
23
23
implementation ' mysql:mysql-connector-java:8.0.19'
24
- implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha19 '
24
+ implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha20 '
25
25
implementation ' com.zaxxer:HikariCP:3.4.2'
26
26
implementation ' com.fasterxml.jackson.core:jackson-core:2.10.3'
27
27
implementation ' com.fasterxml.jackson.core:jackson-databind:2.10.3'
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
implementation ' org.springframework.boot:spring-boot-starter-web'
27
27
implementation ' org.postgresql:postgresql:42.2.10'
28
28
implementation ' mysql:mysql-connector-java:8.0.19'
29
- implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha19 '
29
+ implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha20 '
30
30
testImplementation(' org.springframework.boot:spring-boot-starter-test' ) {
31
31
exclude group : ' org.junit.vintage' , module : ' junit-vintage-engine'
32
32
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies {
21
21
implementation ' ch.qos.logback:logback-classic:1.2.3'
22
22
implementation ' org.postgresql:postgresql:42.2.10'
23
23
implementation ' mysql:mysql-connector-java:8.0.19'
24
- implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha19 '
24
+ implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha20 '
25
25
implementation ' com.zaxxer:HikariCP:3.4.2'
26
26
27
27
testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ dependencies {
36
36
implementation " io.ktor:ktor-server-core:$ktor_version "
37
37
implementation " io.ktor:ktor-jackson:$ktor_version "
38
38
39
- implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha19 '
39
+ implementation ' org.graphqlize:graphqlize-java:0.1.0-alpha20 '
40
40
implementation ' com.zaxxer:HikariCP:3.4.2'
41
41
implementation ' org.postgresql:postgresql:42.2.10'
42
42
implementation ' mysql:mysql-connector-java:8.0.19'
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dependencies {
23
23
implementation(" com.fasterxml.jackson.module:jackson-module-kotlin" )
24
24
implementation(" org.jetbrains.kotlin:kotlin-reflect" )
25
25
implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
26
- implementation(" org.graphqlize:graphqlize-java:0.1.0-alpha19 " )
26
+ implementation(" org.graphqlize:graphqlize-java:0.1.0-alpha20 " )
27
27
implementation(" org.postgresql:postgresql:42.2.10" )
28
28
implementation(" mysql:mysql-connector-java:8.0.19" )
29
29
testImplementation(" org.springframework.boot:spring-boot-starter-test" ) {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ libraryDependencies ++= Seq(
23
23
" org.postgresql" % " postgresql" % " 42.2.10" ,
24
24
" mysql" % " mysql-connector-java" % " 8.0.19" ,
25
25
" com.zaxxer" % " HikariCP" % " 3.4.2" ,
26
- " org.graphqlize" % " graphqlize-java" % " 0.1.0-alpha19 "
26
+ " org.graphqlize" % " graphqlize-java" % " 0.1.0-alpha20 "
27
27
)
28
28
29
29
enablePlugins(SbtTwirl )
You can’t perform that action at this time.
0 commit comments