-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
37 lines (29 loc) · 1.08 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
32
33
34
35
36
37
import org.jetbrains.gradle.ext.ProjectSettings
import org.jetbrains.gradle.ext.BuildArtifact
plugins {
java
checkstyle
kotlin("jvm") version "1.6.10"
id("org.jetbrains.gradle.plugin.idea-ext") version "1.1.1"
}
version = "1.0.0"
group = "com.shehatamilo"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
// https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core
implementation("com.sun.xml.bind:jaxb-core:3.0.2")
// https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl
implementation("com.sun.xml.bind:jaxb-impl:3.0.2")
// https://mvnrepository.com/artifact/org.eclipse.persistence/org.eclipse.persistence.moxy
implementation("org.eclipse.persistence:org.eclipse.persistence.moxy:3.0.2")
// https://mvnrepository.com/artifact/org.glassfish/jakarta.json
implementation("org.glassfish:jakarta.json:2.0.1")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}