-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
34 lines (29 loc) · 1.17 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
apply plugin: 'war'
apply plugin: 'eclipse'
apply plugin: 'maven'
group = "org.jboss.seam.university"
version = "1.0.0-SNAPSHOT"
war {
archiveName = "seam-university.war"
}
dependencies {
providedCompile 'org.jboss.spec.javax.servlet:jboss-servlet-api_3.0_spec:1.0.0.Final',
'javax.enterprise:cdi-api:1.0-SP4',
'org.hibernate.javax.persistence:hibernate-jpa-2.0-api:1.0.0.Final',
'javax.jcr:jcr:2.0'
compile 'org.jboss.seam.security:seam-security:3.0.0.Final',
'org.jboss.seam.remoting:seam-remoting:3.0.1-SNAPSHOT',
'org.jboss.seam.conversation:seam-conversation-spi:3.0.0.CR1',
'org.jboss.seam.conversation:seam-conversation-weld:3.0.0.CR1',
'org.xwidgets:xwidgets:1.0.0-SNAPSHOT',
'org.jboss.seam.xwidgets:seam-xwidgets:3.0.0-SNAPSHOT',
'org.jboss.seam.jcr:seam-jcr:3.0.0-SNAPSHOT'//,
// 'org.modeshape:modeshape-jcr:2.5.0.Final',
// 'org.apache.lucene:lucene-core:3.0.2'
}
repositories {
mavenLocal()
mavenRepo urls: "https://repository.jboss.org/nexus/content/groups/public"
//mavenCentral()
}
archivesBaseName = "seam-university"