mirror of
https://github.com/OpenLiberty/liberty-bikes.git
synced 2025-01-30 10:40:13 +08:00
22 lines
539 B
Groovy
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'
|
||
|
}
|
||
|
|