-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (34 loc) · 995 Bytes
/
build.gradle
File metadata and controls
44 lines (34 loc) · 995 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
36
37
38
39
40
41
42
43
44
plugins {
id "edu.sc.seis.macAppBundle" version "2.1.6"
}
repositories {
mavenCentral()
}
apply from: "http://dl.bintray.com/content/shemnon/javafx-gradle/0.4.0/javafx.plugin"
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '4.0.2'
dependencies {
compile 'org.reactfx:reactfx:2.0-M4'
compile 'org.fxmisc.undo:undofx:1.1.1'
compile 'org.fxmisc.richtext:richtextfx:0.6.9'
compile group: 'com.google.guava', name: 'guava', version: '19.0'
}
sourceSets {
main {
java.srcDirs = ['src/main/java']
resources.srcDirs = ['src/main/resources']
}
}
jar {
manifest {
attributes 'Implementation-Title': 'CPU Sim',
'Implementation-Version': version,
'Main-Class': 'cpusim.Main',
'Class-Path': configurations.runtime.collect { it.getName() }.join(' ')
}
}