-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (46 loc) · 961 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Created on Mon Sep 28 2020
*
* Copyright (c) storycraft. Licensed under the MIT Licence.
*/
plugins {
id 'java'
id 'maven-publish'
}
// Info
group 'sh.pancake'
version '0.1.0'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'com.google.code.gson:gson:2.8.6'
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDirs files('src/main/resources')
}
}
}
publishing {
repositories {
maven {
name = 'StoryNetwork'
url = uri('../maven')
}
}
publications {
mavenJava(MavenPublication) {
artifactId = 'story-network-launch-util'
from components.java
}
}
}