blob: 693a7beaa285144b60a605dd34ce5532656b00dd [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 Kupietz4f6ed422024-03-01 07:27:46 +010055}
56
57
58application {
59 // Define the main class for the application.
Marc Kupietz1b595992024-03-01 14:54:30 +010060 mainClass = 'de.ids_mannheim.korapxmltools.KorapXml2ConlluKt'
Marc Kupietz4f6ed422024-03-01 07:27:46 +010061}
62
63jar {
64 // Will include every single one of your dependencies, project or not
Marc Kupietzfb0a2ca2024-03-01 12:38:05 +010065 // def lowerCasedName = baseName.toLowerCase()
66 // def normalizedName = lowerCasedName.substring(0,1).toUpperCase() + lowerCasedName.substring(1)
Marc Kupietz4f6ed422024-03-01 07:27:46 +010067
68 manifest.attributes(
69 'Class-Path': configurations.compileClasspath.collect { it.getName() }.join(' '),
Marc Kupietz1b595992024-03-01 14:54:30 +010070 'Main-Class': "de.ids_mannheim.korapxmltools.KorapXml2ConlluKt"
Marc Kupietz4f6ed422024-03-01 07:27:46 +010071 )
Marc Kupietz1b595992024-03-01 14:54:30 +010072 shadowJar {
73 archiveBaseName.set('korapxml2conllu')
74 archiveClassifier.set('')
75 archiveVersion.set('')
76 }
Marc Kupietz4f6ed422024-03-01 07:27:46 +010077}
78
79
80configurations {
81 runtimeLib.extendsFrom implementation
82}