aboutsummaryrefslogtreecommitdiff
path: root/core/build.gradle
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2016-07-08 12:55:26 +0200
committerDmitry Jemerov <yole@jetbrains.com>2016-07-08 12:55:26 +0200
commit95a606f54604d673a8bda00f19dae81463925475 (patch)
tree94979d9f7eac102a8254f170a39a860c7df1e2ba /core/build.gradle
parent0f65cf0e4ce531715b76ac32a36a3dff488b2d70 (diff)
downloaddokka-95a606f54604d673a8bda00f19dae81463925475.tar.gz
dokka-95a606f54604d673a8bda00f19dae81463925475.tar.bz2
dokka-95a606f54604d673a8bda00f19dae81463925475.zip
update Kotlin compiler and kotlin-ide-common to 1.0.4-dev-13, fixing the qualified name resolve problem in doc comments
Diffstat (limited to 'core/build.gradle')
-rw-r--r--core/build.gradle17
1 files changed, 2 insertions, 15 deletions
diff --git a/core/build.gradle b/core/build.gradle
index d3ba259f..c66fc5a1 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -14,12 +14,6 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
- repositories {
- jcenter()
- maven {
- url "https://dl.bintray.com/kotlin/kotlin-eap"
- }
- }
}
apply plugin: 'java'
@@ -30,19 +24,12 @@ apply plugin: 'com.jfrog.bintray'
sourceCompatibility = 1.5
-repositories {
- mavenCentral()
- maven {
- url "https://dl.bintray.com/kotlin/kotlin-eap"
- }
-}
-
configurations {
provided
}
dependencies {
- compile "com.google.inject:guice:4.0"
+ compile "com.google.inject:guice:4.1.0"
compile "com.github.spullara.cli-parser:cli-parser:1.1.1"
compile "org.jsoup:jsoup:1.8.3"
compile "org.apache.ant:ant:1.9.6"
@@ -66,7 +53,7 @@ dependencies {
runtime files("../lib/asm-all.jar")
runtime files("../lib/jps-model.jar")
- testCompile group: 'junit', name: 'junit', version: '4.11'
+ testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: kotlin_version
}