netty-http/build.gradle

39 lines
1.3 KiB
Groovy
Raw Permalink Normal View History

2017-05-02 00:52:09 +02:00
plugins {
id 'maven-publish'
id 'signing'
id "build-dashboard"
2023-10-24 10:41:15 +02:00
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-1"
id "org.xbib.gradle.plugin.asciidoctor" version "3.0.0"
2017-05-02 00:52:09 +02:00
}
wrapper {
gradleVersion = libs.versions.gradle.get()
2024-04-29 15:54:12 +02:00
distributionType = Wrapper.DistributionType.BIN
}
ext {
user = 'joerg'
name = 'netty-http'
description = 'HTTP client and server for Netty'
inceptionYear = '2012'
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 = 'The Apache License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
2017-05-02 00:52:09 +02:00
2018-03-12 11:22:40 +01:00
subprojects {
apply from: rootProject.file('gradle/repositories/maven.gradle')
apply from: rootProject.file('gradle/compile/java.gradle')
apply from: rootProject.file('gradle/test/junit5.gradle')
apply from: rootProject.file('gradle/publish/maven.gradle')
}
apply from: rootProject.file('gradle/publish/sonatype.gradle')
apply from: rootProject.file('gradle/publish/forgejo.gradle')