File: 02-ignore-build-info-extractor.patch

package info (click to toggle)
gradle-propdeps-plugin 0.0.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: xml: 8; makefile: 3
file content (52 lines) | stat: -rw-r--r-- 1,223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Description: Ignore the dependency on org.jfrog.buildinfo:build-info-extractor-gradle
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -2,9 +2,6 @@
     repositories {
         maven { url 'https://repo.spring.io/plugins-release' }
     }
-    dependencies {
-        classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:2.2.2'
-    }
 }
 
 allprojects {
@@ -15,7 +12,6 @@
 subprojects {
     apply plugin: 'groovy'
     apply plugin: 'maven'
-    apply plugin: 'artifactory'
 
     group = 'org.springframework.build.gradle'
 
@@ -40,28 +36,6 @@
     }
 }
 
-artifactory {
-    contextUrl = 'https://repo.spring.io'
-    publish {
-        repository {
-            repoKey = 'plugins-snapshot-local'
-            username = repoUser
-            password = repoPass
-        }
-        defaults {
-            publishConfigs('archives')
-        }
-    }
-    resolve {
-        repository {
-            repoKey = 'libs-releases'
-            username = repoUser
-            password = repoPass
-            maven = true
-        }
-    }
-}
-
 task wrapper(type: Wrapper) {
     description = 'Generates gradlew[.bat] scripts'
     gradleVersion = '1.11'