Skip to content

Commit 2120b6b

Browse files
author
bnasslahsen
committed
prepare for next release
1 parent 44ab32a commit 2120b6b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

build.gradle

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ subprojects {
7777
publications {
7878
mavenJava(MavenPublication) {
7979
from components.java
80+
artifact sourcesJar
81+
artifact javadocJar
82+
8083
versionMapping {
8184
usage('java-api') {
8285
fromResolutionOf('runtimeClasspath')
@@ -85,6 +88,29 @@ subprojects {
8588
fromResolutionResult()
8689
}
8790
}
91+
pom {
92+
name = 'Spring OpenAPI 3.0 documentation generator'
93+
description = 'Spring OpenAPI 3.0 documentation generator'
94+
url = 'https://springdoc.org/'
95+
licenses {
96+
license {
97+
name = 'The Apache License, Version 2.0'
98+
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
99+
}
100+
}
101+
developers {
102+
developer {
103+
id = 'bnasslahsen'
104+
name = 'Badr NASS'
105+
email = 'support@springdoc.org'
106+
}
107+
}
108+
scm {
109+
connection = 'scm:git:git@github.com:springdoc/springdoc-openapi.git'
110+
developerConnection = 'scm:git:ssh://github.com:springdoc/springdoc-openapi.git'
111+
url = 'https://springdoc.org/'
112+
}
113+
}
88114
}
89115
}
90116
repositories {

0 commit comments

Comments
 (0)