You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
813 B
35 lines
813 B
plugins { |
|
id 'org.springframework.boot' version '2.5.3' |
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE' |
|
id 'java' |
|
} |
|
|
|
group = 'com.bvn13.example.camel.aws2s3' |
|
version = '0.0.1-SNAPSHOT' |
|
sourceCompatibility = '11' |
|
|
|
configurations { |
|
compileOnly { |
|
extendsFrom annotationProcessor |
|
} |
|
} |
|
|
|
repositories { |
|
mavenCentral() |
|
} |
|
|
|
dependencies { |
|
implementation 'org.springframework.boot:spring-boot-starter-web' |
|
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:3.11.0' |
|
|
|
implementation("org.apache.camel.springboot:camel-aws2-s3-starter:3.11.0") |
|
|
|
compileOnly 'org.projectlombok:lombok' |
|
|
|
annotationProcessor 'org.projectlombok:lombok' |
|
testImplementation 'org.springframework.boot:spring-boot-starter-test' |
|
} |
|
|
|
test { |
|
useJUnitPlatform() |
|
}
|
|
|