forked from NyouB/jme-swing-devkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
131 lines (95 loc) · 2.92 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
plugins {
id 'java'
id 'java-library'
id 'idea'
id 'application'
id 'maven-publish'
id "com.github.ben-manes.versions" version "0.33.0"
id "com.jfrog.bintray" version "1.8.5"
}
group 'com.jayfella'
version '1.0.16'
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
groupId 'com.jayfella'
artifactId 'jme-swing-devkit'
version project.version
}
mavenJava(MavenPublication) {
from components.java
}
}
}
java {
withSourcesJar()
withJavadocJar()
}
bintray {
user = bintray_user
key = bintray_api_key
publications = ['MyPublication']
dryRun = false
publish = true
pkg {
repo = 'com.jayfella'
name = 'jme-swing-devkit'
userOrg = 'jayfella'
licenses = ['BSD']
vcsUrl = 'https://github.com/jayfella/jme-swing-devkit'
version {
name = project.version
desc = 'A Development Kit for jMonkeyEngine.'
released = new Date()
vcsTag = project.version
}
}
}
mainClassName = "com.jayfella.devkit.Main"
repositories {
jcenter()
}
project.ext {
version_jme = "3.3.2-stable"
version_log4j = "1.2.17"
version_slf4j = "1.7.25"
version_jackson = "2.11.2"
}
dependencies {
// darcula LAF
// https://github.com/weisJ/darklaf
implementation "com.github.weisj:darklaf-core:2.4.7"
// swing form building
implementation 'com.intellij:forms_rt:7.0.3'
implementation 'org.swinglabs.swingx:swingx-core:1.6.5-1'
// reflection
compile "org.reflections:reflections:0.9.11"
// logging
implementation "log4j:log4j:$version_log4j"
implementation "org.slf4j:slf4j-api:$version_slf4j"
implementation "org.slf4j:jul-to-slf4j:$version_slf4j"
implementation "org.slf4j:slf4j-log4j12:$version_slf4j"
// jMonkey
implementation "org.jmonkeyengine:jme3-core:$version_jme"
implementation "org.jmonkeyengine:jme3-desktop:$version_jme"
implementation "org.jmonkeyengine:jme3-lwjgl:$version_jme"
implementation "org.jmonkeyengine:jme3-plugins:$version_jme"
implementation "org.jmonkeyengine:jme3-effects:$version_jme"
// GLTF model importer
implementation ("com.simsilica:jmec:1.1.1") {
exclude group: "org.jmonkeyengine"
}
// Minie Physics
// compileOnly 'com.github.stephengold:Minie:3.0.0'
// jackson - JSON
implementation "com.fasterxml.jackson.core:jackson-core:$version_jackson"
implementation "com.fasterxml.jackson.core:jackson-annotations:$version_jackson"
implementation "com.fasterxml.jackson.core:jackson-databind:$version_jackson"
// plugin sorter
implementation "it.unimi.dsi:fastutil:8.4.2"
// MigLayout
implementation "com.miglayout:miglayout:3.7.4"
// testing - REMOVE
//implementation "com.jayfella:TestDevkitPlugin:1.0.0"
}