jacc/build.gradle

27 lines
606 B
Groovy
Raw Normal View History

2016-10-22 23:50:38 +02:00
ext {
2016-11-23 23:51:10 +01:00
user = 'xbib'
2016-10-22 23:50:38 +02:00
name = 'jacc'
2016-11-23 23:51:10 +01:00
description = 'A Java implementation of yacc (yet another compiler-compiler)'
2016-10-22 23:50:38 +02:00
scmUrl = 'https://github.com/' + user + '/' + name
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
}
2020-05-13 15:54:26 +02:00
apply plugin: 'java-library'
2016-10-22 23:50:38 +02:00
repositories {
mavenCentral()
}
dependencies {
2020-05-13 15:54:26 +02:00
testImplementation "junit:junit:${project.property('junit.version')}"
2016-11-23 23:51:10 +01:00
}
2016-10-25 22:27:05 +02:00
test {
testLogging {
2020-05-13 15:54:26 +02:00
showStandardStreams = true
2016-10-25 22:27:05 +02:00
exceptionFormat = 'full'
}
}