archive/build.gradle

36 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2023-05-21 14:09:29 +02:00
2020-05-28 12:09:56 +02:00
plugins {
2023-05-21 14:09:29 +02:00
id 'maven-publish'
id 'signing'
2023-10-21 22:34:30 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
2020-05-28 12:09:56 +02:00
}
wrapper {
2022-10-07 15:11:38 +02:00
gradleVersion = libs.versions.gradle.get()
2020-05-28 12:09:56 +02:00
distributionType = Wrapper.DistributionType.ALL
}
ext {
user = 'xbib'
name = 'archive'
description = 'Archive algorithms for Java'
inceptionYear = '2016'
url = 'https://github.com/' + user + '/' + name
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 = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
subprojects {
apply plugin: 'java-library'
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
2023-05-21 14:09:29 +02:00
apply from: rootProject.file('gradle/publish/maven.gradle')
2020-05-28 12:09:56 +02:00
}
2023-05-21 14:09:29 +02:00
apply from: rootProject.file('gradle/publish/sonatype.gradle')
2024-01-07 16:10:28 +01:00
apply from: rootProject.file('gradle/publish/forgejo.gradle')