jacc/build.gradle

32 lines
1.1 KiB
Groovy
Raw Normal View History

plugins {
id "de.marcphilipp.nexus-publish" version "0.4.0"
id "io.codearte.nexus-staging" version "0.21.1"
}
wrapper {
gradleVersion = "${project.property('gradle.wrapper.version')}"
distributionType = Wrapper.DistributionType.ALL
}
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)'
inceptionYear = '2016'
url = 'https://github.com/' + user + '/' + name
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:ssh://git@github.com:' + user + '/' + name + '.git'
issueManagementSystem = 'Github'
issueManagementUrl = ext.scmUrl + '/issues'
licenseName = 'BSD 3-Clause License'
licenseUrl = 'https://opensource.org/licenses/BSD-3-Clause'
2016-10-22 23:50:38 +02:00
}
2020-05-13 15:54:26 +02:00
apply plugin: 'java-library'
2016-10-22 23:50:38 +02:00
apply from: rootProject.file('gradle/ide/idea.gradle')
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
apply from: rootProject.file('gradle/publishing/sonatype.gradle')