Skip to content

Instantly share code, notes, and snippets.

@vbasem
Created April 7, 2014 18:38
Show Gist options
  • Save vbasem/10028019 to your computer and use it in GitHub Desktop.
Save vbasem/10028019 to your computer and use it in GitHub Desktop.
simple jee7 / jdk 1.8 gradle project
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'war'
group = 'inteliworks'
version = '1.0-SNAPSHOT'
description = """"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
mavenCentral()
mavenLocal()
}
dependencies {
providedCompile group: 'javax', name: 'javaee-api', version:'7.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment