forked from ProyectoDAMAccesoDatos/gestor-social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
24 lines (21 loc) · 904 Bytes
/
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
apply from: "http://dl.bintray.com/content/shemnon/javafx-gradle/javafx.plugin"
javafx {
mainClass = 'dam.gestorclub.Aplicacion'
}
repositories {
maven {
url "http://repository.jboss.org/nexus/content/groups/public-jboss"
}
mavenCentral()
}
dependencies {
compile files('libs/ojdbc6.jar')
compile group: 'commons-beanutils', name: 'commons-beanutils-core', version: '1.8.3'
compile group: 'com.lowagie', name: 'itext', version: '2.1.7'
compile group: 'eclipse', name: 'jdtcore', version: '3.1.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.0.5'
compile group: 'org.hibernate', name: 'hibernate-core', version: '4.1.9.Final'
compile group: 'net.sf.jasperreports', name: 'jasperreports', version: '5.0.1'
compile group: 'org.jfxtras', name: 'jfxtras-labs', version: '2.2-r4'
testCompile group: 'junit', name: 'junit', version: '4.+'
}