Skip to content

Commit

Permalink
add project name/description/url to published POMs (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoby authored Mar 26, 2021
1 parent c182daa commit 5f990d0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ project.plugins.withType(MavenPublishPlugin).all {
}

pub.pom {
name = project.getName()
url = "https://openziti.org"
description = project.getProperty('description')

licenses {
license {
name = "The Apache Software License, Version 2.0"
Expand Down
4 changes: 4 additions & 0 deletions ziti-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ plugins {

apply plugin: 'com.kezong.fat-aar'

ext {
description "Ziti SDK for Android"
}

android {
compileSdkVersion 30
ndkVersion "21.3.6528147"
Expand Down
4 changes: 4 additions & 0 deletions ziti-netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ plugins {
id 'maven-publish'
}

ext {
description "Netty Adapter for Ziti"
}

repositories {
mavenCentral()
}
Expand Down
4 changes: 4 additions & 0 deletions ziti/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ plugins {
id 'maven-publish'
}

ext {
description "Ziti SDK for JVM"
}

dependencies {
implementation deps.kotlin
implementation deps.kotlinCoroutines
Expand Down

0 comments on commit 5f990d0

Please sign in to comment.