Skip to content

Instantly share code, notes, and snippets.

Created March 6, 2014 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/e388344a7786faeda448 to your computer and use it in GitHub Desktop.
Save anonymous/e388344a7786faeda448 to your computer and use it in GitHub Desktop.
build.gradle generated from bookman-back-lend/pom.xml
apply plugin: 'java'
apply plugin: 'maven'
group = 'org.mader.bookman'
version = '0.0.1-SNAPSHOT'
description = 'Backend project - lending.'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
maven { url "http://repository.jboss.org/nexus/content/groups/public" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'postgresql', name: 'postgresql', version:'9.1-901.jdbc4'
compile group: 'joda-time', name: 'joda-time', version:'2.3'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version:'2.3.1'
providedCompile(group: 'javax.enterprise', name: 'cdi-api', version:'1.1') {
exclude(module: 'jsr250-api')
exclude(module: 'el-api')
exclude(module: 'jboss-interceptors-api_1.1_spec')
}
providedCompile group: 'org.jboss.spec.javax.annotation', name: 'jboss-annotations-api_1.2_spec', version:'1.0.0.Final'
providedCompile group: 'org.jboss.spec.javax.servlet', name: 'jboss-servlet-api_3.1_spec', version:'1.0.0.Final'
providedCompile group: 'org.jboss.resteasy', name: 'jaxrs-api', version:'3.0.6.Final'
providedCompile group: 'org.jboss.spec.javax.faces', name: 'jboss-jsf-api_2.2_spec', version:'2.2.5'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment