Skip to content

Commit

Permalink
none fixes the build
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Tulio Ávila Cerón committed May 24, 2024
1 parent 6190ada commit 9324923
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
- name: Sets permissions to run gradlew
run: chmod a+x gradlew

- name: Print classpath
run: ./gradlew -q printClasspath

- name: Build with Gradle Wrapper
run: ./gradlew --info build

Expand Down
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ sourceSets {
srcDirs = ['src/main/java', "$buildDir/generate-resources/src/main/java"]
}
}
test {
resources {
srcDir 'src/test/resources'
}
}
}

import org.ajoberstar.grgit.Grgit
Expand All @@ -213,4 +218,10 @@ task updateSwaggerVersion {
tasks.named('openApiGenerate').configure {
dependsOn updateSwaggerVersion
}

task printClassPath {
doLast {
println sourceSets.test.runtimeClasspath.join("\n")
}
}
compileJava.dependsOn tasks.named('openApiGenerate')

0 comments on commit 9324923

Please sign in to comment.