forked from PaperMC/Velocity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
71 lines (61 loc) · 1.93 KB
/
build.gradle
File metadata and controls
71 lines (61 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
plugins {
id 'java'
id "com.github.spotbugs" version '4.7.0'
id "com.adarshr.test-logger" version "2.1.1" apply false
id 'org.cadixdev.licenser' version '0.5.1'
id 'pl.allegro.tech.build.axion-release' version '1.13.3'
}
scmVersion.tag.prefix = ""
allprojects {
apply from: "${rootDir}/gradle/dependencies.gradle"
group 'gg.solarmc.velocity'
project.version = scmVersion.version
ext {
// dependency versions
adventureVersion = '4.9.1'
junitVersion = '5.7.0'
slf4jVersion = '1.7.30'
log4jVersion = '2.15.0'
nettyVersion = '4.1.67.Final'
guavaVersion = '30.1.1-jre'
checkerFrameworkVersion = '3.6.1'
configurateVersion = '3.7.2'
getCurrentShortRevision = {
new ByteArrayOutputStream().withStream { os ->
exec {
executable = "git"
args = ["rev-parse", "HEAD"]
standardOutput = os
}
return os.toString().trim().substring(0, 8)
}
}
}
repositories {
mavenCentral()
// Solar repo
maven { url "https://repo.solarmc.gg/mvn" }
}
dependencies {
modules {
module("javax.inject:javax.inject") {
replacedBy("jakarta.inject:jakarta.inject-api")
}
module("javax.activation:javax.activation-api") {
replacedBy("com.sun.activation:javax.activation")
}
module("com.sun.activation:jakarta.activation") {
replacedBy("com.sun.activation:javax.activation")
}
}
}
tasks.withType(com.github.spotbugs.snom.SpotBugsTask) {
reports {
html {
enabled = true
destination = file("$buildDir/reports/spotbugs/main/spotbugs.html")
stylesheet = 'fancy-hist.xsl'
}
}
}
}