Skip to content

Commit e95f029

Browse files
committed
fix buildscript
1 parent 57218bf commit e95f029

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

de.peeeq.wurstscript/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ plugins {
1313
id 'idea'
1414
id 'jacoco'
1515
id 'maven-publish'
16-
id 'com.github.kt3k.coveralls' version '2.12.2'
1716
id 'com.gradleup.shadow' version '9.2.2'
1817
id 'de.undercouch.download' version '5.6.0'
1918
}
Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
rootProject.name = 'wurstscript'
1+
pluginManagement {
2+
repositories {
3+
maven { url = uri("https://cache-redirector.jetbrains.com/plugins.gradle.org/m2") }
4+
gradlePluginPortal()
5+
maven { url = uri("https://plugins.gradle.org/m2") }
6+
maven { url = uri("https://cache-redirector.jetbrains.com/maven-central") }
7+
mavenCentral()
8+
}
9+
}
10+
11+
dependencyResolutionManagement {
12+
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
13+
repositories {
14+
maven { url = uri("https://cache-redirector.jetbrains.com/maven-central") }
15+
mavenCentral()
16+
google()
17+
}
18+
}
19+
20+
rootProject.name = 'wurstscript'
21+

0 commit comments

Comments
 (0)