-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
51 lines (43 loc) · 1.31 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
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.2'
classpath 'net.researchgate:gradle-release:2.3.4'
}
}
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'net.researchgate.release'
apply plugin: 'com.gradle.plugin-publish'
task wrapper(type: Wrapper) {
gradleVersion = '2.9'
}
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
}
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}
afterReleaseBuild.dependsOn publishPlugins
pluginBundle {
website = 'https://github.com/guillermo-varela/gradle-replace-properties-resources-plugin'
vcsUrl = 'https://github.com/guillermo-varela/gradle-replace-properties-resources-plugin'
plugins {
replacePropertiesResources {
id = 'com.blogspot.nombre-temp.replace.properties.resources'
displayName = 'Gradle Replace Properties Resources'
description = 'Adds the propertyfile task from Ant to the processResources Gradle task'
tags = ['propertyfile', 'processResources', 'environment', 'deployment environment', 'properties']
}
}
}