liberty-bikes/build.gradle

22 lines
539 B
Groovy
Raw Normal View History

// 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'
}