All Downloads are FREE. Search and download functionalities are using the official Maven repository.

archetype-resources.build.gradle Maven / Gradle / Ivy

The newest version!
apply plugin: 'java'

repositories {
  jcenter()
  mavenLocal()
  mavenCentral()
}

dependencies {
  implementation (
          'org.springframework.boot:spring-boot-starter-web:2.7.18',
          'com.amazonaws.serverless:aws-serverless-java-container-springboot2:[1.9,2.0.0-M1)',
          'io.symphonia:lambda-logging:1.0.3'
  )

  testImplementation("junit:junit:4.13.2")
}

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