CatgirlIntelligenceAgency/build.gradle

63 lines
1.8 KiB
Groovy
Raw Normal View History

2022-05-19 17:45:26 +02:00
plugins {
id 'java'
id("org.jetbrains.gradle.plugin.idea-ext") version "1.0"
2022-05-19 17:45:26 +02:00
}
2023-03-04 13:19:01 +01:00
group 'marginalia'
2022-05-19 17:45:26 +02:00
version 'SNAPSHOT'
2023-03-04 13:19:01 +01:00
2022-05-19 17:45:26 +02:00
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
tasks.register('dist', Copy) {
2023-03-04 13:19:01 +01:00
from subprojects.collect { it.tasks.withType(Tar) }
into "$buildDir/dist"
2022-05-19 17:45:26 +02:00
doLast {
copy {
from tarTree("$buildDir/dist/converter-process.tar")
into "$projectDir/run/dist/"
}
copy {
from tarTree("$buildDir/dist/crawler-process.tar")
into "$projectDir/run/dist/"
}
copy {
from tarTree("$buildDir/dist/loader-process.tar")
into "$projectDir/run/dist/"
}
copy {
from tarTree("$buildDir/dist/website-adjacencies-calculator.tar")
into "$projectDir/run/dist/"
}
copy {
from tarTree("$buildDir/dist/crawl-job-extractor-process.tar")
into "$projectDir/run/dist/"
}
copy {
from tarTree("$buildDir/dist/index-construction-process.tar")
into "$projectDir/run/dist/"
}
}
}
idea {
module {
excludeDirs.add(file("$projectDir/run/model"))
excludeDirs.add(file("$projectDir/run/dist"))
excludeDirs.add(file("$projectDir/run/samples"))
excludeDirs.add(file("$projectDir/run/db"))
excludeDirs.add(file("$projectDir/run/logs"))
excludeDirs.add(file("$projectDir/run/install"))
excludeDirs.add(file("$projectDir/run/data"))
excludeDirs.add(file("$projectDir/run/conf"))
excludeDirs.add(file("$projectDir/run/vol"))
excludeDirs.add(file("$projectDir/run/test-data"))
}
}
2022-05-19 17:45:26 +02:00
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(20))
2022-05-19 17:45:26 +02:00
}
}