Skip to content

Commit

Permalink
Merge pull request #242 from fabiocarvalho777/butterfly_3
Browse files Browse the repository at this point in the history
Removing Sonatype Staging plugin (didn't work) plus minor javadoc fixes
  • Loading branch information
fabiocarvalho777 authored Aug 20, 2018
2 parents 0fbf1b4 + 358c26c commit 58e8f35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ before_install:
- export SECRING_FILE="$PWD/secring.gpg"

install:
- ./gradlew uploadArchives closeAndReleaseRepository --scan
- ./gradlew uploadArchives --scan
10 changes: 0 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@

plugins {
id 'com.gradle.build-scan' version '1.14'
id "io.codearte.nexus-staging" version "0.11.0"
}
description = "Butterfly - Application transformation tool"

apply plugin: 'io.codearte.nexus-staging'

allprojects {
apply plugin: 'maven'
apply plugin: 'signing'
Expand Down Expand Up @@ -54,17 +51,10 @@ subprojects {
// }

ext {
ossrhStagingProfileId = System.getenv('MAVEN_STAGING_PROFILE_ID')
ossrhUsername = System.getenv('SONATYPE_USER')
ossrhPassword = System.getenv('SONATYPE_PASSWORD')
}

nexusStaging {
stagingProfileId = ossrhStagingProfileId
username = ossrhUsername
password = ossrhPassword
}

jar {
manifest {
attributes 'Implementation-Version': version,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public RunScript setLanguage(String language) {
* @param key the attribute key name, to be used as placeholder in the script text
* @param attributeName the name of the transformation context attribute name whose value
* should be inserted in the script, replacing the key
* @return
* @return this utility instance
*/
public RunScript addAttribute(String key, String attributeName) {
checkForBlankString("key", key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public abstract class AbstractToOperation<A extends AbstractToOperation> extends
* @see CopyDirectory
* @see MoveFile
* @see MoveDirectory
*
* @param description the operation description
*/
protected AbstractToOperation(String description) {
setDescription(description);
Expand Down

0 comments on commit 58e8f35

Please sign in to comment.