Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Feb 16, 2020
1 parent 3149f34 commit e3c643d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ classes
*.iml

/.nb-gradle/
.vscode
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
apply plugin: 'java'

project.ext.useShadowJar = true
project.ext.tags = ['git', 'changelog', 'releasenotes', 'patchnotes']
group = 'se.bjurr.gitchangelog'
description = 'Library that generates changelog from a GIT repository.'
Expand All @@ -23,7 +24,7 @@ dependencies {
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 'org.eclipse.jgit:org.eclipse.jgit:5.6.0.201912101111-r'
compile 'com.github.spullara.mustache.java:compiler:0.8.18'
compile 'org.gitlab:java-gitlab-api:4.1.0'

Expand All @@ -34,3 +35,13 @@ dependencies {
testCompile 'org.assertj:assertj-core:2.3.0'
testCompile 'org.mockito:mockito-all:1.8.5'
}


shadowJar {
relocate 'com', 'se.bjurr.gitchangelog.com'
relocate 'org', 'se.bjurr.gitchangelog.org'
relocate 'net', 'se.bjurr.gitchangelog.net'
relocate 'commons-codec', 'se.bjurr.gitchangelog.commons-codec'
relocate 'commons-logging', 'se.bjurr.gitchangelog.commons-logging'
relocate 'commons-io', 'se.bjurr.gitchangelog.commons-io'
}

0 comments on commit e3c643d

Please sign in to comment.