forked from kaazing/java.getting.started
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (29 loc) · 907 Bytes
/
build.gradle
File metadata and controls
36 lines (29 loc) · 907 Bytes
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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
mainClassName = 'com.kaazing.client.starter.KaazingJavaStarterApp'
sourceCompatibility = 1.8
version = '1.0'
jar {
manifest {
attributes 'Implementation-Title': 'Kaazing Java Starter App',
'Implementation-Version': version
attributes 'Main-Class': 'com.kaazing.client.starter.KaazingJavaStarterApp'
}
}
repositories {
mavenCentral()
maven {
url "http://artifactory.kaazing.wan/artifactory/libs-releases-local"
}
}
dependencies {
compile project(':UniversalClient')
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.+'
compile group: 'org.slf4j', name: 'slf4j-jdk14', version: '1.7.18'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
// Will not work from Gradle browser plugin!!!
run{
standardInput = System.in
}