Skip to content

Instantly share code, notes, and snippets.

@goncha
Created November 5, 2012 09:11
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 goncha/4016202 to your computer and use it in GitHub Desktop.
Save goncha/4016202 to your computer and use it in GitHub Desktop.
build.gradel for simple Java webapp
apply plugin: "war"
apply plugin: "eclipse"
apply plugin: "jetty"
repositories {
// mavenCentral()
maven {
url "http://1.1.9.4:9000/archiva/repository/internal/"
}
}
dependencies {
compile "javax.servlet:servlet-api:2.5"
runtime "org.springframework:spring-web:3.1.3.RELEASE"
runtime "org.freemarker:freemarker:2.3.19"
runtime "log4j:log4j:1.2.17"
runtime "mysql:mysql-connector-java:5.1.21"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment