Skip to content

Commit

Permalink
Add more detailed info to the generated pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Apr 30, 2023
1 parent c9f9ffc commit 94da949
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions translator-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,30 @@ publishing {
version = project.version
artifactId = 'dex-translator'
from components.java

pom {
name = 'dex-translator'
description = ' A translation library for converting between Dalvik and JVM bytecode.'
url = 'https://github.com/Col-E/dex-translator/'
licenses {
license {
name = 'MIT'
url = 'https://spdx.org/licenses/MIT.html'
}
}
developers {
developer {
id = 'mcoley'
name = 'Matt Coley'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/Col-E/dex-translator.git'
developerConnection = 'scm:git:ssh://github.com:Col-E/dex-translator.git'
url = 'https://github.com/Col-E/dex-translator/'
}
}
}
}

Expand Down

0 comments on commit 94da949

Please sign in to comment.