-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbuild.gradle
55 lines (47 loc) · 1.49 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
plugins {
id 'com.gradle.build-scan' version '1.16'
id 'groovy'
id 'maven'
id "com.gradle.plugin-publish" version "0.9.10"
}
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
ext {
mavenVersion = '3.0.5'
}
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile "org.apache.maven:maven-settings:$mavenVersion"
compile "org.apache.maven:maven-settings-builder:$mavenVersion"
compile "org.apache.maven:maven-model-builder:$mavenVersion"
compile "org.apache.maven:maven-model:$mavenVersion"
compile "org.apache.maven:maven-core:$mavenVersion"
compile 'org.sonatype.plexus:plexus-cipher:1.4'
compile 'org.sonatype.plexus:plexus-sec-dispatcher:1.3'
testCompile 'junit:junit:4.11'
testCompile 'org.hamcrest:hamcrest-library:1.3'
}
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
pluginBundle {
website = 'https://github.com/mark-vieira/gradle-maven-settings-plugin'
vcsUrl = 'https://github.com/mark-vieira/gradle-maven-settings-plugin'
description = 'Gradle plugin for exposing Maven settings file configuration to Gradle project.'
tags = ['settings', 'maven']
plugins {
mavenSettings {
id = 'net.linguica.maven-settings'
displayName = 'Maven Settings Plugin'
}
}
mavenCoordinates {
groupId = 'net.linguica.gradle'
artifactId = 'maven-settings-plugin'
}
}