We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938e591 commit 45bc5f5Copy full SHA for 45bc5f5
gradle/forbiddenapis.gradle
@@ -1,9 +1,22 @@
1
buildscript {
2
repositories {
3
- maven {
4
- url "https://plugins.gradle.org/m2/"
+ mavenLocal()
+ if (project.rootProject.hasProperty("gradlePluginProxy")) {
5
+ maven {
6
+ url project.rootProject.property("gradlePluginProxy")
7
+ allowInsecureProtocol true
8
+ }
9
}
10
+ if (project.rootProject.hasProperty("mavenRepositoryProxy")) {
11
12
+ url project.rootProject.property("mavenRepositoryProxy")
13
14
15
16
+ gradlePluginPortal()
17
+ mavenCentral()
18
19
+
20
dependencies {
21
classpath "de.thetaphi:forbiddenapis:3.8"
22
0 commit comments