jacc/build.gradle

31 lines
1.1 KiB
Groovy
Raw Normal View History

plugins {
2023-05-24 14:11:26 +02:00
id 'maven-publish'
id 'signing'
2025-01-01 10:28:13 +01:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
}
wrapper {
2023-05-24 14:11:26 +02:00
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL
}
2016-10-22 23:50:38 +02:00
ext {
2023-05-24 14:11:26 +02:00
user = 'joerg'
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'
2023-05-24 14:11:26 +02:00
url = 'https://xbib.org/' + user + '/' + name
scmUrl = 'https://xbib.org/' + user + '/' + name
scmConnection = 'scm:git:git://xbib.org/' + user + '/' + name + '.git'
scmDeveloperConnection = 'scm:git:ssh://forgejo@xbib.org:' + 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
}
2023-05-24 14:11:26 +02:00
apply from: rootProject.file('gradle/repositories/maven.gradle')
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
2023-05-24 14:11:26 +02:00
apply from: rootProject.file('gradle/publish/maven.gradle')