-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
executable file
·104 lines (90 loc) · 2.52 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
plugins {
id 'java'
id "org.sonarqube" version "2.8"
id "eu.davidea.grabver" version "1.0.0"
id 'org.spongepowered.plugin' version '0.8.1'
id 'maven-publish'
// Other library plugins...
}
compileJava.options.encoding = 'UTF-8'
sponge {
plugin {
id = 'itemizer'
}
}
apply plugin: 'org.spongepowered.plugin'
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = 'com.onaple'
version = "3.7.1" // Change plugin version here
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://oss.sonatype.org/service/local/staging/deploy/maven2' }
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
}
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
dependencies {
compileOnly 'org.spongepowered:spongeapi:7.2.0'
testCompile "junit:junit:4.11"
compile 'com.github.Sponge-RPG-dev:ConfigurateButWithBlackjackAndHookers:39d5fc8afd'
}
sonarqube {
properties {
property "sonar.projectName", "Itemizer"
property "sonar.organization", "ylinor-github"
property "sonar.host.url", "https://sonarcloud.io/"
}
}
jar {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/OnapleRPG/Itemizer"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
MyPublication(MavenPublication) {
from components.java
groupId 'com.onaple'
artifactId 'itemizer'
pom {
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'HBeau'
name = 'Hugo Beaucamps'
}
developer {
id = 'zessirb'
name = 'Olivier Brissez'
}
}
}
}
}
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}