Skip to content

Commit

Permalink
0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yole committed Feb 4, 2016
1 parent 39fad68 commit efd5925
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ bintray {
key = System.getenv('BINTRAY_KEY')

pkg {
repo = dokka_eap ? 'kotlin-eap' : 'dokka'
repo = dokka_eap.toBoolean() ? 'kotlin-eap' : 'dokka'
name = 'dokka'
userOrg = 'kotlin'
desc = 'Dokka, the Kotlin documentation tool'
Expand All @@ -52,6 +52,6 @@ bintray {

filesSpec {
from 'maven-plugin/upload'
into "/kotlin/${dokka_eap ? 'kotlin-eap' : 'dokka'}/dokka/${dokka_version}/org/jetbrains/dokka/dokka-maven-plugin/${dokka_version}"
into "/kotlin/${dokka_eap.toBoolean() ? 'kotlin-eap' : 'dokka'}/dokka/${dokka_version}/org/jetbrains/dokka/dokka-maven-plugin/${dokka_version}"
}
}
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ bintray {
key = System.getenv('BINTRAY_KEY')

pkg {
repo = dokka_eap ? 'kotlin-eap' : 'dokka'
repo = dokka_eap.toBoolean() ? 'kotlin-eap' : 'dokka'
name = 'dokka'
userOrg = 'kotlin'
desc = 'Dokka, the Kotlin documentation tool'
Expand Down
2 changes: 1 addition & 1 deletion dokka-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bintray {
key = System.getenv('BINTRAY_KEY')

pkg {
repo = dokka_eap ? 'kotlin-eap' : 'dokka'
repo = dokka_eap.toBoolean() ? 'kotlin-eap' : 'dokka'
name = 'dokka'
userOrg = 'kotlin'
desc = 'Dokka, the Kotlin documentation tool'
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin_version=1.0.0-rc-1007
dokka_version=0.9.5
dokka_eap=true
kotlin_version=1.0.0-rc-1036
dokka_version=0.9.6
dokka_eap=false
4 changes: 2 additions & 2 deletions maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>0.9.4</version>
<version>0.9.6</version>
<packaging>maven-plugin</packaging>
<properties>
<maven-plugin-anno.version>1.4.1</maven-plugin-anno.version>
<maven.version>3.0.5</maven.version>
<plexus.version>3.0.22</plexus.version>
<kotlinVersion>1.0.0-rc-1007</kotlinVersion>
<kotlinVersion>1.0.0-rc-1036</kotlinVersion>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit efd5925

Please sign in to comment.