-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (49 loc) · 1.77 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.0'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.0'
id 'com.diffplug.spotless' version '6.19.0'
}
apply plugin: 'kotlin'
apply plugin: 'maven-publish'
group 'com.deflatedpickle'
archivesBaseName = 'haruhi'
version '1.5.4'
sourceCompatibility = targetCompatibility = "11"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://github.com/eugener/oxbow/raw/master/maven/repository' }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.9.0'
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1'
// Logging
implementation 'org.apache.logging.log4j:log4j-api:2.18.0'
implementation 'org.apache.logging.log4j:log4j-core:2.18.0'
// Utility
implementation 'com.github.javadev:underscore:1.80'
// Events
api 'com.github.Fylipp:easy-events:1.1.0'
// Allows for plugin loading
implementation 'io.github.classgraph:classgraph:4.8.149'
implementation 'io.github.toolfactory:jvm-driver:9.3.0'
// Fuzzy searching
implementation 'me.xdrop:fuzzywuzzy:1.4.0'
// Docking framework
// implementation 'org.dockingframes:docking-frames-common:1.1.1'
implementation 'io.github.andrewauclair.ModernDocking:docking:'
// Extended Swing widgets
implementation 'org.swinglabs:swingx:1.6.1'
implementation 'org.oxbow:swing-bits:1.0.0-SNAPSHOT'
// Toasts
api 'com.deflatedpickle:tosuto'
// Symantic versioning
implementation 'com.github.zafarkhaja:java-semver:0.9.0'
}
spotless {
kotlin {
ktlint()
licenseHeader '/* Copyright (c) $YEAR DeflatedPickle under the MIT license */\n\n'
}
}