liberty-bikes/build.gradle
2017-12-09 12:08:27 -06:00

22 lines
539 B
Groovy

// Apply the java plugin to add support for Java
apply plugin: 'java'
// Apply the war plugin to build a web archive
apply plugin: 'war'
sourceCompatibility = 1.8
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
// In this section you declare the dependencies for your production and test code
dependencies {
// Java EE
compile 'javax:javaee-api:7.0'
}