Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
yangxiaoze committed Jul 3, 2013
1 parent 3a18d68 commit 7ac685f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions common.gradle
Expand Up @@ -157,20 +157,15 @@ task sourceJar(type: Jar) {
archiveName = FILE_SOURCE_JAR
destinationDir = file("${projectDir}/${PATH_DIST}")
from sourceSets.main.allSource
classifier = 'source'
classifier = 'sources'
}

task assemble(overwrite: true, dependsOn: [classJar, javadocJar, sourceJar]) {
}

artifacts {
archives(javadocJar) {
type = 'javadoc'
}

archives(sourceJar) {
type = 'source'
}
archives(javadocJar)
archives(sourceJar)
}

signing {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -13,7 +13,7 @@ DIST_PREFIX=jidefx-
DIST_SUFFIX=.jar
DIST_DEBUG_SUFFIX=-debug
DIST_JAVADOC_SUFFIX=-javadoc
DIST_SOURCE_SUFFIX=-source
DIST_SOURCE_SUFFIX=-sources

SONATYPE_USERNAME=
SONATYPE_PASSWORD=

0 comments on commit 7ac685f

Please sign in to comment.