-
Notifications
You must be signed in to change notification settings - Fork 46
/
build.gradle
55 lines (49 loc) · 1.82 KB
/
build.gradle
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
53
54
55
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.23.4'
}
}
allprojects {
repositories {
google()
mavenCentral()
ivy {
url 'http://cwe.cs.washington.edu:8082/artifactory/libs-demo/'
}
maven {
url 'http://cwe.cs.washington.edu:8082/artifactory/libs-master/'
}
ivy {
url 'http://cwe.cs.washington.edu:8082/artifactory/libs-snapshot/'
}
}
}
configurations.all {
transitive = true
}
apply plugin: "com.jfrog.artifactory"
artifactoryPublish.skip=true
artifactory {
publish {
contextUrl = 'http://cwe.cs.washington.edu:8082/artifactory'
//A closure defining publishing information
defaults {
//List of Gradle Publications (names or objects) from which to collect the list of artifacts to be deployed to Artifactory.
publishConfigs('default')
publishBuildInfo = true //Publish build-info to Artifactory (true by default)
publishArtifacts = true //Publish artifacts to Artifactory (true by default)
publishPom = false //Publish generated POM files to Artifactory (true by default).
publishIvy = true //Publish generated Ivy descriptor files to Artifactory (true by default).
}
}
// Redefine basic properties of the build info object
clientConfig.setIncludeEnvVars(true)
clientConfig.setEnvVarsExcludePatterns('*password*,*secret*')
clientConfig.setEnvVarsIncludePatterns('*not-secret*')
}