Skip to content

Commit

Permalink
settings cleanup, readding sourcesJar and javadocJar
Browse files Browse the repository at this point in the history
  • Loading branch information
erosb committed Oct 30, 2024
1 parent adb8614 commit 481ee13
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@ publishing {
}
}

task sourcesJar(type: Jar, dependsOn: classes) {
archiveClassifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar) {
archiveClassifier = 'javadoc'
from javadoc.destinationDir
}

tasks.withType(Sign) {
onlyIf { !version.endsWith("SNAPSHOT") }
}
Expand Down
5 changes: 0 additions & 5 deletions openapi-operation-adapters/build/tmp/jar/MANIFEST.MF

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 2 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
rootProject.name = "kappa"
//include("openapi-core")
include("openapi-perf-checker")
include("kappa-restassured-adapter")
include("kappa-servlet-adapter")
include("openapi-operation-adapters:openapi-operation-undertow")
include("openapi-operation-adapters:openapi-operation-vertx")
include("kappa-undertow-adapter")
include("kappa-vertx-adapter")
//include("openapi-operation-adapters:openapi-operation-spring")

0 comments on commit 481ee13

Please sign in to comment.