
archetype-resources.build.gradle Maven / Gradle / Ivy
The newest version!
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
maven {url "https://repo.spring.io/milestone"}
maven {url "https://repo.spring.io/snapshot"}
}
dependencies {
implementation (
'org.springframework.boot:spring-boot-starter-web:3.4.1',
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',
)
testImplementation("com.amazonaws.serverless:aws-serverless-java-container-core:[2.0-SNAPSHOT,):tests")
testImplementation("org.apache.httpcomponents.client5:httpclient5:5.4.1")
testImplementation(platform("org.junit:junit-bom:5.11.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from(configurations.compileClasspath) {
exclude 'tomcat-embed-*'
}
}
}
test {
useJUnitPlatform()
}
build.dependsOn buildZip
© 2015 - 2025 Weber Informatics LLC | Privacy Policy