10 lines
204 B
Groovy
10 lines
204 B
Groovy
|
plugins {
|
||
|
id 'war'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':javaee-demo1-ejb')
|
||
|
providedCompile 'javax:javaee-api:8.0'
|
||
|
testImplementation group: 'junit', name: 'junit', version: '4.11'
|
||
|
}
|