forked from Swag7User/Misaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
71 lines (63 loc) · 1.85 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
buildscript {
repositories {
maven {
url "http://tomp2p.net/dev/mvn/"
}
maven {
url "https://mvnrepository.com/artifact/de.svenkubiak/jBCrypt"
}
jcenter {
url "https://jcenter.bintray.com/"
}
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.4'
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
}
}
configurations {
// configuration that holds jars to include in the jar
extraLibs
}
//apply plugin: 'trust-all'
apply plugin: 'org.javafxports.jfxmobile'
mainClassName = 'ch.uzh.model.Main'
version = '8u40'
repositories {
maven {
url "http://tomp2p.net/dev/mvn/"
}
jcenter {
url "https://jcenter.bintray.com/"
}
maven {
url "https://mvnrepository.com/artifact/de.svenkubiak/jBCrypt"
}
dependencies {
extraLibs group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
extraLibs 'de.svenkubiak:jBCrypt:0.4.1'
extraLibs 'net.tomp2p:tomp2p-all:5.0-Beta8'
extraLibs 'net.tomp2p:opus-h264-webcam-wrapper:1.0.2'
extraLibs 'com.github.sarxos:webcam-capture:0.3.10'
extraLibs 'org.jcodec:jcodec-javase:0.1.9'
extraLibs 'com.google.code.gson:gson:2.8.0'
extraLibs 'net.coobird:thumbnailator:[0.4, 0.5)'
extraLibs group: 'net.java.dev.jna', name: 'jna-platform', version: '4.1.0'
configurations.compile.extendsFrom(configurations.extraLibs)
}
}
jfxmobile {
javafxportsVersion = '8.60.8'
javacEncoding = 'utf-8'
ios {
forceLinkClasses = ['misaka.**.*']
}
android {
applicationPackage = 'org.javafxports.misaka'
}
}
jar {
from {
configurations.extraLibs.collect { it.isDirectory() ? it : zipTree(it) }
}
}