Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,25 @@ jobs:

- name: Check
run: |
./gradlew --info --no-watch-fs check
./gradlew --no-watch-fs check

- name: Publish Locally
run: |
./gradlew --info --no-watch-fs publishToMavenLocal --warning-mode all
./gradlew --no-watch-fs publishToMavenLocal --warning-mode all

- name: Clone dgs-examples-java
uses: actions/[email protected]
with:
repository: Netflix/dgs-examples-java
path: build/examples/dgs-examples-java
ref: boot4

- name: Clone dgs-examples-kotlin
uses: actions/[email protected]
with:
repository: Netflix/dgs-examples-kotlin
path: build/examples/dgs-examples-kotlin

ref: boot4
- name: Build Examples
run: |
find /home/runner/.m2/repository/ -type f -name "*graphql-dgs-codegen-gradle*"
Expand Down
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ plugins {

allprojects {
group = "com.netflix.graphql.dgs"

repositories {
mavenCentral()
maven {
url = uri("https://repo.spring.io/milestone/")
}
}

apply(plugin = "nebula.netflixoss")
Expand All @@ -50,7 +54,7 @@ allprojects {
// and suggest an upgrade. The only exception currently are those defined
// in buildSrc, most likely because the variables are used in plugins as well
// as dependencies. e.g. KOTLIN_VERSION
extra["sb.version"] = "3.5.5"
extra["sb.version"] = "4.0.0-RC1"
extra["kotlin.version"] = Versions.KOTLIN_VERSION
}
val internalBomModules by extra(
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
*/

object Versions {
const val KOTLIN_VERSION = "1.9.25"
const val KOTLIN_VERSION = "2.2.20"
}
82 changes: 66 additions & 16 deletions dependencies.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading