
archetype-resources.build.gradle Maven / Gradle / Ivy
The newest version!
apply plugin: 'java'
repositories {
jcenter()
mavenLocal()
mavenCentral()
}
dependencies {
compile (
'org.springframework.boot:spring-boot-starter-web:1.5.22.RELEASE',
'com.amazonaws.serverless:aws-serverless-java-container-spring:[1.0,)',
'io.symphonia:lambda-logging:1.0.1'
)
testCompile("junit:junit:4.12")
}
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from(configurations.compileClasspath) {
exclude 'tomcat-embed-*'
}
}
}
build.dependsOn buildZip
© 2015 - 2025 Weber Informatics LLC | Privacy Policy