Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Add missing description and Javadoc artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier committed Aug 28, 2019
1 parent ef09e37 commit 1412d3d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions avm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
id 'java'
}

description = 'web3j integration with the Aion Virtual Machine (AVM)'

githubRelease {
String githubToken = (project.hasProperty('githubToken') ?
project.property('githubToken') : System.getenv('GITHUB_TOKEN'))
Expand Down
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ subprojects {
}
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}

task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
Expand All @@ -89,7 +94,7 @@ subprojects {
}

artifacts {
archives sourcesJar
archives sourcesJar, javadocJar
testOutput testJar
integrationTestOutput integrationTestJar
}
Expand Down Expand Up @@ -197,7 +202,7 @@ subprojects {
pom.project {
packaging 'jar'
name 'web3j Aion Integration'
description rootProject.description
description project.description
url 'https://web3j.io'
scm {
connection 'scm:git:https://github.com/web3j/aion.git'
Expand Down
2 changes: 2 additions & 0 deletions codegen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
id 'distribution'
}

description = 'web3j contract wrapper code generation for the Aion Network'

githubRelease {
String githubToken = (project.hasProperty('githubToken') ?
project.property('githubToken') : System.getenv('GITHUB_TOKEN'))
Expand Down
2 changes: 2 additions & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
description = 'Common classes for web3j integration with the Aion Network'

dependencies {
api "org.web3j:core:${versions.web3j}"
api "org.web3j:abi:${versions.web3j}"
Expand Down

0 comments on commit 1412d3d

Please sign in to comment.