Skip to content

Commit

Permalink
Version 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksiyp committed Nov 9, 2017
1 parent d59b07a commit 6990dab
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 45 deletions.
88 changes: 44 additions & 44 deletions dsl/jvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,47 +24,47 @@ kotlin {
}
}

//uploadArchives {
// repositories {
// mavenDeployer {
// beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
//
// repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
// authentication(userName: rootProject.properties['ossrhUsername'] ?: '', password: rootProject.properties['ossrhPassword'] ?: '')
// }
//
// snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
// authentication(userName: rootProject.properties['ossrhUsername'] ?: '', password: rootProject.properties['ossrhPassword'] ?: '')
// }
//
// pom.project {
// name 'MockK'
// packaging 'jar'
// description 'mocking library for Kotlin'
// url 'http://mockk.io'
//
// scm {
// connection 'scm:git:git@github.com:oleksiyp/mockk.git'
// developerConnection 'scm:git:git@github.com:oleksiyp/mockk.git'
// url 'http://www.github.com/oleksiyp/mockk/'
// }
//
// licenses {
// license {
// name 'Apache License, Version 2.0'
// url 'http://www.apache.org/licenses/LICENSE-2.0'
// }
// }
//
// developers {
// developer {
// id 'oleksiyp'
// name 'Oleksii Pylypenko'
// email 'oleksiy.pylypenko@gmail.com'
// }
// }
// }
// }
// }
//}
//
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: rootProject.properties['ossrhUsername'] ?: '', password: rootProject.properties['ossrhPassword'] ?: '')
}

snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: rootProject.properties['ossrhUsername'] ?: '', password: rootProject.properties['ossrhPassword'] ?: '')
}

pom.project {
name 'MockK Java DSL'
packaging 'jar'
description 'MockK DSL extracted to a module'
url 'http://mockk.io'

scm {
connection 'scm:git:git@github.com:oleksiyp/mockk.git'
developerConnection 'scm:git:git@github.com:oleksiyp/mockk.git'
url 'http://www.github.com/oleksiyp/mockk/'
}

licenses {
license {
name 'Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0'
}
}

developers {
developer {
id 'oleksiyp'
name 'Oleksii Pylypenko'
email 'oleksiy.pylypenko@gmail.com'
}
}
}
}
}
}

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.4-SNAPSHOT
version=1.4

0 comments on commit 6990dab

Please sign in to comment.