Skip to content

Commit

Permalink
Prepare release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Winkler committed May 2, 2016
1 parent fdefe08 commit 52e2cb0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ buildscript {
}
dependencies {
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0"
//classpath "com.gradle.publish:plugin-publish-plugin:0.9.0"
}
}

group = 'io.github.swagger2markup'
version = '1.0.0-SNAPSHOT'
version = '1.0.0'
description = 'A Swagger to Markup (AsciiDoc and Markdown) converter Maven Plugin.'

apply plugin: 'groovy'
Expand Down Expand Up @@ -43,7 +43,7 @@ repositories {
}

dependencies {
compile ("io.github.swagger2markup:swagger2markup:1.0.0-SNAPSHOT")
compile ("io.github.swagger2markup:swagger2markup:1.0.0")
compile 'org.apache.maven:maven-plugin-api:3.3.3'
compile 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.4'
testCompile 'junit:junit:4.12'
Expand Down
4 changes: 3 additions & 1 deletion gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ if (!project.hasProperty('ossPassword')) ext.ossPassword = ''
bintray {
user = project.bintrayUsername
key = project.bintrayApiKey
userOrg = 'swagger2markup'
dryRun = false //Whether to run this as dry-run, without deploying
publish = true //If version should be auto published after an upload
publications = ['mavenJava']
pkg {
repo = 'maven'
repo = 'Maven'
name = 'swagger2markup-maven-plugin'
userOrg = 'swagger2markup'
websiteUrl = 'https://github.com/Swagger2Markup/swagger2markup-maven-plugin'
issueTrackerUrl = 'https://github.com/Swagger2Markup/swagger2markup-maven-plugin/issues'
vcsUrl = 'https://github.com/Swagger2Markup/swagger2markup-maven-plugin.git'
Expand Down

0 comments on commit 52e2cb0

Please sign in to comment.