-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap Gradle language from Groovy to Kotlin (#1413)
* WIP * WIP * WIP * Working? * Fix usage of Java 17 API * Update checkstyle rules * Fix static analysis * Updates to src dirs * Fixing up missing test sourceSet * Try another way to specify the antlr directory * Third different way * Add some logging * merge master * Change toolchain resolution * Fix tests * More tweaks to animalsniffer * Fix formatting * Trying random stuff * More random stuff * Small improvements for Gradle build (#1418) * Removing references to idea * Fix duplicative generation * Remove references to idea project generation --------- Co-authored-by: Anton Vasetenkov <[email protected]>
- Loading branch information
Showing
59 changed files
with
746 additions
and
817 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.20" | ||
id("org.sonarqube") version "4.4.1.3373" | ||
} | ||
|
||
sonar { | ||
properties { | ||
property("sonar.projectKey", "cqframework_clinical_quality_language") | ||
property("sonar.organization", "cqframework") | ||
property("sonar.host.url", "https://sonarcloud.io") | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") | ||
} | ||
|
||
kotlin { | ||
jvmToolchain(11) | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
|
||
dependencies { | ||
implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.1.0") | ||
implementation("ru.vyarus:gradle-animalsniffer-plugin:1.7.0") | ||
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.14") | ||
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.23.3") | ||
} | ||
|
||
kotlin { | ||
jvmToolchain(11) | ||
} |
31 changes: 0 additions & 31 deletions
31
Src/java/buildSrc/src/main/groovy/cql.fhir-conventions.gradle
This file was deleted.
Oops, something went wrong.
181 changes: 0 additions & 181 deletions
181
Src/java/buildSrc/src/main/groovy/cql.java-conventions.gradle
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
Src/java/buildSrc/src/main/groovy/cql.library-conventions.gradle
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.