
archetype-resources.build.gradle Maven / Gradle / Ivy
The newest version!
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation (
'org.springframework:spring-webmvc:6.2.1',
'org.springframework:spring-context:6.2.1',
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
'org.apache.logging.log4j:log4j-core:2.24.3',
'org.apache.logging.log4j:log4j-api:2.24.3',
'org.apache.logging.log4j:log4j-slf4j-impl:2.24.3',
'com.fasterxml.jackson.core:jackson-databind:2.18.2',
'com.amazonaws:aws-lambda-java-log4j2:1.6.0',
)
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)
}
}
test {
useJUnitPlatform()
}
build.dependsOn buildZip
© 2015 - 2025 Weber Informatics LLC | Privacy Policy