-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set up Version Catalog and typesafe project accessors
- Loading branch information
Showing
43 changed files
with
434 additions
and
377 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
[versions] | ||
|
||
## compilation ## | ||
jvm = "11" | ||
kotlin = "1.8.10" | ||
kotlin-languageLevel = "1.4" | ||
|
||
|
||
## libs ## | ||
kotlin-plugin = "213-1.8.10-release-430-IJ6777.52" | ||
kotlinx-coroutines = "1.6.3" | ||
kotlinx-html = "0.7.5" | ||
jsoup = "1.15.3" | ||
idea = "213.6777.52" | ||
|
||
jackson = "2.12.7" # jackson 2.13.X does not support kotlin language version 1.4, check before updating | ||
jacksonDatabind = "2.12.7.1" # fixes CVE-2022-42003 | ||
|
||
freemarker = "2.3.31" | ||
|
||
jetbrainsMarkdown = "0.3.1" | ||
|
||
|
||
apache-maven = "3.5.0" | ||
apache-mavenArtifact = "3.8.5" | ||
apache-mavenArchiver = "2.5" | ||
apache-mavenPluginTools = "3.5.2" | ||
|
||
eclipse-jgit = "5.12.0.202106070339-r" | ||
|
||
## test ## | ||
junit = "5.9.2" | ||
|
||
## gradle plugins ## | ||
gradlePlugin-shadow = "7.1.2" | ||
gradlePlugin-binaryCompatibilityValidator = "0.12.1" | ||
gradlePlugin-nexusPublish = "1.1.0" | ||
gradlePlugin-dokka = "1.7.10" | ||
gradlePlugin-gradlePluginPublish = "0.20.0" | ||
gradlePlugin-gradle = "4.0.1" | ||
|
||
## NPM ## | ||
node = "16.13.0" | ||
|
||
[libraries] | ||
|
||
## Kotlin ## | ||
kotlin-bom = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin" } | ||
|
||
kotlin-compiler = { module = "org.jetbrains.kotlin:kotlin-compiler", version.ref = "kotlin" } | ||
kotlin-idea = { module = "org.jetbrains.kotlin:idea", version.ref = "kotlin" } | ||
kotlin-common = { module = "org.jetbrains.kotlin:common", version.ref = "kotlin" } | ||
kotlin-core = { module = "org.jetbrains.kotlin:core", version.ref = "kotlin" } | ||
kotlin-native = { module = "org.jetbrains.kotlin:native", version.ref = "kotlin" } | ||
|
||
kotlinx-cli = { module = "org.jetbrains.kotlinx:kotlinx-cli", version = "0.3.4" } | ||
kotlinx-html = { module = "org.jetbrains.kotlinx:kotlinx-html", version.ref = "kotlinx-html" } | ||
|
||
kotlinx-coroutines-bom = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-bom", version.ref = "kotlinx-coroutines" } | ||
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" } | ||
|
||
kotlinPlugin-common = { module = "org.jetbrains.kotlin:common", version.ref = "kotlin.plugin" } | ||
kotlinPlugin-idea = { module = "org.jetbrains.kotlin:idea", version.ref = "kotlin.plugin" } | ||
kotlinPlugin-core = { module = "org.jetbrains.kotlin:core", version.ref = "kotlin.plugin" } | ||
kotlinPlugin-native = { module = "org.jetbrains.kotlin:native", version.ref = "kotlin.plugin" } | ||
|
||
jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" } | ||
jetbrainsMarkdown = { module = "org.jetbrains:markdown", version.ref = "jetbrainsMarkdown" } | ||
freemarker = { module = "org.freemarker:freemarker", version.ref = "freemarker" } | ||
soywiz-korte = { module = "com.soywiz.korlibs.korte:korte", version = "2.7.0" } | ||
|
||
jetbrainsIntelliJ-core = { module = "com.jetbrains.intellij.idea:intellij-core", version.ref = "idea" } | ||
jetbrainsIntelliJ-jpsStandalone = { module = "com.jetbrains.intellij.idea:jps-standalone", version.ref = "idea" } | ||
|
||
## Jackson ## | ||
jackson-bom = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" } | ||
jackson-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" } | ||
jackson-xml = { module = "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", version.ref = "jackson" } | ||
|
||
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jacksonDatabind" } | ||
|
||
|
||
|
||
## Apache Maven ## | ||
apache-mavenArchiver = { module = "org.apache.maven:maven-archiver", version.ref = "apache-mavenArchiver" } | ||
apache-mavenCore = { module = "org.apache.maven:maven-core", version.ref = "apache-maven" } | ||
apache-mavenPluginAnnotations = { module = "org.apache.maven.plugin-tools:maven-plugin-annotations", version.ref = "apache-mavenPluginTools" } | ||
apache-mavenPluginApi = { module = "org.apache.maven:maven-plugin-api", version.ref = "apache-maven" } | ||
apache-mavenArtifact = { module = "org.apache.maven:maven-artifact", version.ref = "apache-mavenArtifact" } | ||
|
||
|
||
eclipse-jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version.ref = "eclipse-jgit" } | ||
|
||
## logging ## | ||
|
||
|
||
############# | ||
### test ### | ||
############# | ||
|
||
## junit ## | ||
|
||
## junit ## | ||
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit" } | ||
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter" } | ||
|
||
assertk = { module = "com.willowtreeapps.assertk:assertk", version = "0.25" } | ||
|
||
### Gradle plugins ### | ||
# The Maven coordinates of Gradle plugins that are used as | ||
|
||
gradlePlugin-dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "gradlePlugin-dokka" } | ||
gradlePlugin-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } | ||
gradlePlugin-shadow = { module = "gradle.plugin.com.github.johnrengelman:shadow", version.ref = "gradlePlugin-shadow" } | ||
gradlePlugin-android = { module = "com.android.tools.build:gradle", version.ref = "gradlePlugin-gradle" } | ||
|
||
|
||
[plugins] | ||
|
||
kotlinx-binaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "gradlePlugin-binaryCompatibilityValidator" } | ||
shadow = { id = "com.github.johnrengelman.shadow", version.ref = "gradlePlugin-shadow" } | ||
gradle-pluginPublish = { id = "com.gradle.plugin-publish", version.ref = "gradlePlugin-gradlePluginPublish" } | ||
nexusPublish = { id = "io.github.gradle-nexus.publish-plugin", version.ref = "gradlePlugin-nexusPublish" } |
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,3 @@ plugins { | |
kotlin("jvm") | ||
id("org.jetbrains.dokka") | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
} |
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 |
---|---|---|
|
@@ -2,7 +2,3 @@ plugins { | |
kotlin("jvm") | ||
id("org.jetbrains.dokka") | ||
} | ||
|
||
dependencies { | ||
implementation(kotlin("stdlib")) | ||
} |
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
Oops, something went wrong.