-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
32 lines (25 loc) · 892 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
25
26
27
28
29
30
31
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'war'
sourceCompatibility = 1.6
group = 'org.easy-webflow'
version = '1.0.0-SNAPSHOT'
def localMavenRepo = new File('/home/marc/.m2/repository').toURL().toString()
defaultTasks "build"
repositories {
mavenRepo urls: localMavenRepo
mavenCentral()
mavenRepo urls: 'http://repository.jboss.org/nexus/content/groups/public-jboss/'
}
/*should change scope in to provided */
configurations {
provided
}
dependencies {
compile 'org.easy-webflow:framework:1.0.0-SNAPSHOT', 'javax.enterprise:cdi-api:1.0-SP4',
'org.richfaces.ui:richfaces-components-ui:4.1.0.Final', 'org.richfaces.core:richfaces-core-impl:4.1.0.Final',
'org.hibernate:hibernate-core:3.6.8.Final', 'org.hibernate:hibernate-validator:4.2.0.Final',
'mysql:mysql-connector-java:5.1.18',
'org.glassfish:javax.ejb:3.1.1'
runtime 'com.sun.faces:jsf-api:2.1.3'
}