Skip to content

Commit

Permalink
[Sam-9307] Add-description-and-license-in-gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Samarinnayak committed Jul 11, 2024
1 parent ec4bbc1 commit e6824b2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,22 @@ publishing {
}
}
}

publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
pom {
name.set("CICS Bundle Gradle")
description.set("A Gradle plugin to build CICS bundles, and deploy them into CICS TS")
licenses {
license {
name.set("EPL-2.0")
url .set("https://www.eclipse.org/legal/epl-2.0/")
}
}
}
}
}
}

repositories {
Expand Down

0 comments on commit e6824b2

Please sign in to comment.