Bumped Kotlin to version 1.9.24
This commit is contained in:
parent
b020ae4c0d
commit
d2dd66fb4b
2 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# mobibot
|
# mobibot
|
||||||
|
|
||||||
[](https://opensource.org/licenses/BSD-3-Clause)
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
||||||
[](https://kotlinlang.org)
|
[](https://kotlinlang.org)
|
||||||
[](https://rife2.com/bld)
|
[](https://rife2.com/bld)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=ethauvin_mobibot)
|
[](https://sonarcloud.io/summary/new_code?id=ethauvin_mobibot)
|
||||||
[](https://github.com/ethauvin/mobibot/actions/workflows/bld.yml)
|
[](https://github.com/ethauvin/mobibot/actions/workflows/bld.yml)
|
||||||
|
|
|
@ -58,6 +58,7 @@ import static rife.bld.dependencies.Scope.test;
|
||||||
|
|
||||||
public class MobibotBuild extends Project {
|
public class MobibotBuild extends Project {
|
||||||
private static final String DETEKT_BASELINE = "config/detekt/baseline.xml";
|
private static final String DETEKT_BASELINE = "config/detekt/baseline.xml";
|
||||||
|
final File srcMainKotlin = new File(srcMainDirectory(), "kotlin");
|
||||||
|
|
||||||
public MobibotBuild() {
|
public MobibotBuild() {
|
||||||
pkg = "net.thauvin.erik.mobibot";
|
pkg = "net.thauvin.erik.mobibot";
|
||||||
|
@ -77,7 +78,7 @@ public class MobibotBuild extends Project {
|
||||||
SONATYPE_SNAPSHOTS_LEGACY);
|
SONATYPE_SNAPSHOTS_LEGACY);
|
||||||
|
|
||||||
var log4j = version(2, 23, 1);
|
var log4j = version(2, 23, 1);
|
||||||
var kotlin = version(1, 9, 23);
|
var kotlin = version(1, 9, 24);
|
||||||
scope(compile)
|
scope(compile)
|
||||||
// PircBotX
|
// PircBotX
|
||||||
.include(dependency("com.github.pircbotx", "pircbotx", "2.3.1"))
|
.include(dependency("com.github.pircbotx", "pircbotx", "2.3.1"))
|
||||||
|
@ -124,7 +125,7 @@ public class MobibotBuild extends Project {
|
||||||
.manifestAttribute(Attributes.Name.MAIN_CLASS, mainClass())
|
.manifestAttribute(Attributes.Name.MAIN_CLASS, mainClass())
|
||||||
.manifestAttribute(Attributes.Name.CLASS_PATH, ". " + String.join(" ", jars));
|
.manifestAttribute(Attributes.Name.CLASS_PATH, ". " + String.join(" ", jars));
|
||||||
|
|
||||||
jarSourcesOperation().sourceDirectories(new File(srcMainDirectory(), "kotlin"));
|
jarSourcesOperation().sourceDirectories(srcMainKotlin);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
@ -182,6 +183,7 @@ public class MobibotBuild extends Project {
|
||||||
public void jacoco() throws IOException {
|
public void jacoco() throws IOException {
|
||||||
new JacocoReportOperation()
|
new JacocoReportOperation()
|
||||||
.fromProject(this)
|
.fromProject(this)
|
||||||
|
.sourceFiles(srcMainKotlin)
|
||||||
.execute();
|
.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue