Skip to content

Commit

Permalink
Remove not needed maven repos
Browse files Browse the repository at this point in the history
  • Loading branch information
gianluz committed Feb 28, 2019
1 parent d2efe90 commit abbbcfa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
buildscript {
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}

dependencies {
Expand All @@ -13,7 +11,5 @@ buildscript {
allprojects {
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ package com.danger.runner

import platform.posix.*


fun main(args: Array<String>) {
if (args.size > 0) {
val command = args.first()
when (command) {
if (args.isNotEmpty()) {
when (val command = args.first()) {
"ci", "local", "pr" -> {
val dangerArgs = args.drop(1)
runDangerJS(command, dangerArgs)
Expand Down
4 changes: 0 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@ pluginManagement {
}
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}

enableFeaturePreview('GRADLE_METADATA')

include ':danger-kotlin-library'

if (MPPTools.isMacos() || MPPTools.isLinux() || MPPTools.isWindows()) {
Expand Down

0 comments on commit abbbcfa

Please sign in to comment.