Skip to content
Snippets Groups Projects
Commit 62dedd81 authored by Georg Graßnick's avatar Georg Graßnick :thinking:
Browse files

Copy tables automatically on gradle invocation

parent be1ced44
No related branches found
No related tags found
1 merge request!24Feat/brailletextrasterizer 38
......@@ -30,7 +30,7 @@ dependencies {
// Use JUnit test framework
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
testImplementation('org.junit.jupiter:junit-jupiter:5.4.2')
// Logging
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.26'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
......@@ -50,6 +50,13 @@ tasks.withType(Test) {
useJUnitPlatform()
}
// Copy Braille tables from submodule to working dir
task copyBrailleTables(type: Copy) {
from "$projectDir/third_party/liblouis/tables/"
into "$buildDir/src/main/resources/mapping/liblouis"
}
processResources.dependsOn copyBrailleTables
// Define the main class for the application
mainClassName = 'de.tudresden.inf.mci.brailleplot.App'
......@@ -70,4 +77,4 @@ checkstyleTest {
// Needed for Integrationtests
apply from: "$rootDir/integrationTest.gradle"
\ No newline at end of file
apply from: "$rootDir/integrationTest.gradle"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment