Skip to content

Commit

Permalink
Release 7.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MediaMarco committed Dec 2, 2019
1 parent d37212b commit 49f2a86
Showing 1 changed file with 1 addition and 32 deletions.
33 changes: 1 addition & 32 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

group = 'de.otto'
archivesBaseName='flummi'
version='6.0.0.0'
version='7.0.0.0'

if (project.hasProperty('isSnapshot')) {
version += '-SNAPSHOT'
Expand Down Expand Up @@ -135,34 +135,3 @@ uploadArchives {
}
}
}

artifactory {
contextUrl = project.properties["artifactoryUrl"]
//The base Artifactory URL if not overridden by the publisher/resolver
publish {
repository {
if (project.hasProperty('isSnapshot')) {
repoKey = 'maven-san-snapshots-local'
} else {
repoKey = 'maven-san-releases-local'
}
username = project.properties["artifactoryUsername"]
password = project.properties["artifactoryPassword"]
}
defaults {
// Reference to Gradle publications defined in the build script.
// This is how we tell the Artifactory Plugin which artifacts should be
// published to Artifactory.
publishConfigs('archives')
publishArtifacts = true
// Publish generated POM files to Artifactory (true by default)
publishPom = true
publishIvy = false
}
}
resolve {
repository {
repoKey = 'libs-release-virtual'
}
}
}

0 comments on commit 49f2a86

Please sign in to comment.