blob: 2f741574934ee5f3e9cf0592af93fd0acddda616 [file] [log] [blame]
Marc Kupietz4f6ed422024-03-01 07:27:46 +01001/*
2 * This file was generated by the Gradle 'init' task.
3 *
4 * This generated file contains a sample Kotlin application project to get you started.
5 * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
6 * User Manual available at https://docs.gradle.org/7.4.2/userguide/building_java_projects.html
7 */
8
9
10plugins {
11 // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
Marc Kupietz16150202024-03-20 22:13:49 +010012 id 'org.jetbrains.kotlin.jvm' version '2.0.0-Beta5'
Marc Kupietz4f6ed422024-03-01 07:27:46 +010013
14 // Apply the application plugin to add support for building a CLI application in Java.
15 id 'application'
Marc Kupietz1b595992024-03-01 14:54:30 +010016 id 'com.github.johnrengelman.shadow' version '8.1.1'
Marc Kupietz16150202024-03-20 22:13:49 +010017 id ("org.jetbrains.kotlin.kapt") version "2.0.0-Beta5"
Marc Kupietz4f6ed422024-03-01 07:27:46 +010018}
19
Marc Kupietz4f6ed422024-03-01 07:27:46 +010020repositories {
Marc Kupietz4f6ed422024-03-01 07:27:46 +010021 mavenCentral()
Marc Kupietz56a45562024-03-20 20:18:08 +010022 maven { url 'https://jitpack.io' }
Marc Kupietz4f6ed422024-03-01 07:27:46 +010023}
24
Marc Kupietz47b43c32024-03-27 20:43:32 +010025test {
26 minHeapSize = "1000m" // initial heap size
27 maxHeapSize = "8000m" // maximum heap size
28 jvmArgs '-XX:MaxMetaspaceSize=8000m' // mem argument for the test JVM
29}
30
Marc Kupietz4f6ed422024-03-01 07:27:46 +010031dependencies {
32 // Align versions of all Kotlin components
33 implementation platform('org.jetbrains.kotlin:kotlin-bom')
34
35 // Use the Kotlin JDK 8 standard library.
36 implementation 'org.jetbrains.kotlin:kotlin-stdlib'
Marc Kupietz6181f222024-03-12 16:59:59 +010037 implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0'
Marc Kupietz4f6ed422024-03-01 07:27:46 +010038
39 // This dependency is used by the application.
Marc Kupietza02fc442024-03-20 22:14:04 +010040 implementation 'com.google.guava:guava:33.1.0-jre'
Marc Kupietz4f6ed422024-03-01 07:27:46 +010041
Marc Kupietz31122362024-03-02 11:13:37 +010042
43 kapt("info.picocli:picocli-codegen:4.7.5")
44 implementation ("info.picocli:picocli:4.7.5")
45
Marc Kupietz4f6ed422024-03-01 07:27:46 +010046 // Use the Kotlin test library.
47 testImplementation 'org.jetbrains.kotlin:kotlin-test'
48
49 // Use the Kotlin JUnit integration.
50 testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
Marc Kupietz16150202024-03-20 22:13:49 +010051 testImplementation "org.jetbrains.kotlin:kotlin-test:2.0.0-Beta5"
Marc Kupietz0c6e8772024-03-19 07:03:07 +010052
Marc Kupietz1465ce22024-03-26 09:51:17 +010053 implementation 'com.github.kupietz:cistern:v1.0.4'
Marc Kupietzaf682a42024-03-22 06:51:55 +010054 implementation 'org.maltparser:maltparser:1.9.2'
Marc Kupietz9da19db2024-04-01 11:06:51 +020055 implementation 'org.apache.opennlp:opennlp-tools:2.3.2'
56 implementation 'org.slf4j:slf4j-simple:2.1.0-alpha1'
Marc Kupietz4f6ed422024-03-01 07:27:46 +010057}
58
59
Marc Kupietz9da19db2024-04-01 11:06:51 +020060
Marc Kupietz4f6ed422024-03-01 07:27:46 +010061application {
62 // Define the main class for the application.
Marc Kupietz1b595992024-03-01 14:54:30 +010063 mainClass = 'de.ids_mannheim.korapxmltools.KorapXml2ConlluKt'
Marc Kupietz4f6ed422024-03-01 07:27:46 +010064}
65
66jar {
67 // Will include every single one of your dependencies, project or not
Marc Kupietzfb0a2ca2024-03-01 12:38:05 +010068 // def lowerCasedName = baseName.toLowerCase()
69 // def normalizedName = lowerCasedName.substring(0,1).toUpperCase() + lowerCasedName.substring(1)
Marc Kupietz4f6ed422024-03-01 07:27:46 +010070
71 manifest.attributes(
72 'Class-Path': configurations.compileClasspath.collect { it.getName() }.join(' '),
Marc Kupietz1b595992024-03-01 14:54:30 +010073 'Main-Class': "de.ids_mannheim.korapxmltools.KorapXml2ConlluKt"
Marc Kupietz4f6ed422024-03-01 07:27:46 +010074 )
Marc Kupietz1b595992024-03-01 14:54:30 +010075 shadowJar {
76 archiveBaseName.set('korapxml2conllu')
77 archiveClassifier.set('')
78 archiveVersion.set('')
79 }
Marc Kupietz4f6ed422024-03-01 07:27:46 +010080}
81
82
83configurations {
84 runtimeLib.extendsFrom implementation
85}