forked from tomasbjerre/git-changelog-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 1.15 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
apply plugin: 'java'
project.ext.tags = ['git', 'changelog', 'releasenotes', 'patchnotes']
group = 'se.bjurr.gitchangelog'
description = 'Library that generates changelog from a GIT repository.'
buildscript {
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.github.tomasbjerre:gradle-scripts:master-SNAPSHOT'
}
}
apply from: project.buildscript.classLoader.getResource('java.gradle').toURI()
apply from: project.buildscript.classLoader.getResource('release.gradle').toURI()
dependencies {
compile 'com.squareup.retrofit2:retrofit:2.0.0'
compile 'com.squareup.retrofit2:converter-gson:2.0.0'
compile 'com.squareup.okhttp:okhttp:2.7.5'
compile 'com.jayway.jsonpath:json-path:2.1.0'
compile 'com.google.guava:guava:16.0.1'
compile 'org.eclipse.jgit:org.eclipse.jgit:3.6.2.201501210735-r'
compile 'com.github.spullara.mustache.java:compiler:0.8.18'
compile 'org.gitlab:java-gitlab-api:4.1.0'
compileOnly 'com.github.spotbugs:spotbugs-annotations:3.1.12'
testCompile 'junit:junit:4.12'
testCompile 'org.slf4j:slf4j-simple:1.7.13'
testCompile 'org.assertj:assertj-core:2.3.0'
testCompile 'org.mockito:mockito-all:1.8.5'
}