-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (52 loc) · 1.12 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
/*
* Created on Sun Aug 08 2021
*
* Copyright (c) storycraft. Licensed under the GNU General Public License v3.
*/
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
}
group 'sh.pancake'
version '3.0.2'
sourceCompatibility = 11
targetCompatibility = 11
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
maven {
name = 'StoryNetwork'
url = 'https://raw.githubusercontent.com/story-network/maven/master/'
}
}
dependencies {
implementation 'sh.pancake:story-network-launch-util:0.1.0'
implementation 'sh.pancake:pancake-sauce:0.3.0'
implementation 'com.google.code.gson:gson:2.8.7'
}
gradlePlugin {
plugins {
storymap {
id = 'sh.pancake.storymap'
implementationClass = 'sh.pancake.storymap.StoryMapPlugin'
}
}
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDirs files('src/main/resources')
}
}
}
publishing {
repositories {
maven {
name = 'StoryNetwork'
url = uri('../maven')
}
}
}