-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (35 loc) · 782 Bytes
/
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
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
classpath 'se.bjurr.gradle:gradle-scripts:2.+'
}
}
project.ext.buildConfig = [
repoType: "COMMAND",
publishing: [
relocate: [
'org:org',
'javax:javax',
'com:com',
'se:se',
'io:io'
]
],
violations: [
updateReadme: true
],
manifest: [
mainClass: 'se.bjurr.violations.main.Main'
]
]
apply from: project.buildscript.classLoader.getResource('main.gradle').toURI()
dependencies {
implementation 'se.bjurr.violations:violation-comments-to-bitbucket-cloud-lib:1.16.1'
implementation 'se.bjurr.violations:violations-lib:1.157.0'
implementation 'se.softhouse:jargo:0.4.14'
implementation 'org.slf4j:slf4j-simple:2.0.0'
}