-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
31 lines (27 loc) · 1.07 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//============================================================================//
// //
// Copyright © 2015 - 2022 Sandpolis Software Foundation //
// //
// This source file is subject to the terms of the Mozilla Public License //
// version 2. You may not use this file except in compliance with the MPLv2. //
// //
//============================================================================//
plugins {
id("java-library")
kotlin("multiplatform") version "1.6.10"
id("org.s7s.build.module")
id("org.s7s.build.publish")
}
kotlin {
jvm()
linuxX64()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.+")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.+")
if (project.getParent() == null) {
implementation("org.s7s:core.foundation:+")
} else {
implementation(project(":core:foundation"))
}
}