Skip to content

Commit

Permalink
prepare for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed Jun 25, 2020
1 parent 44ab32a commit 2120b6b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ subprojects {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar

versionMapping {
usage('java-api') {
fromResolutionOf('runtimeClasspath')
Expand All @@ -85,6 +88,29 @@ subprojects {
fromResolutionResult()
}
}
pom {
name = 'Spring OpenAPI 3.0 documentation generator'
description = 'Spring OpenAPI 3.0 documentation generator'
url = 'https://springdoc.org/'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'bnasslahsen'
name = 'Badr NASS'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:[email protected]:springdoc/springdoc-openapi.git'
developerConnection = 'scm:git:ssh://github.com:springdoc/springdoc-openapi.git'
url = 'https://springdoc.org/'
}
}
}
}
repositories {
Expand Down

0 comments on commit 2120b6b

Please sign in to comment.