-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (39 loc) · 1.2 KB
/
build.gradle
File metadata and controls
47 lines (39 loc) · 1.2 KB
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
group 'com.maxxton'
version '1.2'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.jenkins-ci.tools:gradle-jpi-plugin:0.18.1"
}
}
apply plugin: 'org.jenkins-ci.jpi'
repositories {
mavenCentral()
}
dependencies {
compile ("com.maxxton:microdocs-core-java:1.6.2")
compile ("com.fasterxml.jackson.core:jackson-databind:2.7.5")
compile ("com.mashape.unirest:unirest-java:1.4.9")
jenkinsPlugins ("org.jenkins-ci.plugins:credentials:2.1.4@jar")
testCompile group: 'junit', name: 'junit', version: '4.11'
}
jenkinsPlugin {
// coreVersion = "1.498"
coreVersion = "1.609.3"
displayName = "MicroDocs Integration Plugin"
url = "http://wiki.jenkins-ci.org/display/JENKINS/MICRODOCS+INTEGRATION+PLUGIN"
gitHubUrl = "https://github.com/MaxxtonGroup/microdocs-integration-plugin"
shortName = "microdocs-integration"
// The developers section is optional, and corresponds to the POM developers section.
developers {
developer {
id "shermans"
name "Steven Hermans"
email "s.hermans#maxxton.com"
}
}
}