Skip to content

Commit 7aad91a

Browse files
committed
Change Dependency Mechanism
1 parent befd1d2 commit 7aad91a

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

build.gradle

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,22 @@ buildscript {
44
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
55
maven { url "http://repo.springsource.org/lib-release" }
66
maven {
7-
url "https://plugins.gradle.org/m2/"
7+
url "https://oss.sonatype.org/content/repositories/snapshots/"
8+
}
9+
maven {
10+
url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
811
}
912
}
1013
dependencies {
1114
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
12-
classpath "gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.2.5"
15+
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.2.0-SNAPSHOT"
1316
}
1417
}
1518
apply plugin: "org.jetbrains.intellij"
1619

1720
intellij {
1821
pluginName name
1922
version ideaVersion
20-
21-
sandboxDirectory = "${rootProject.buildDir}/idea-sandbox"
22-
downloadSources false
23-
// FIXME: hack to support both IDEA 15 and IDEA 16.
24-
// See https://github.com/intellij-rust/intellij-rust/issues/243
25-
updateSinceUntilBuild = false
26-
27-
28-
publishPlugin {
29-
username hasProperty('username') ? username : System.getenv('username')
30-
password hasProperty('password') ? password : System.getenv('password')
31-
}
3223
}
3324

3425

@@ -61,7 +52,6 @@ task wrapper(type: Wrapper) {
6152
}
6253

6354
dependencies {
64-
6555
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
6656
compile 'org.neo4j:neo4j:3.1.1'
6757
compile 'org.neo4j:neo4j-bolt:3.1.1'

0 commit comments

Comments
 (0)