mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-20 02:29:44 +08:00

This commit adds an optional module that gathers the opinions that are used to generate a Spring Boot project. Closes gh-340 Co-authored-by: Madhura Bhave <mbhave@pivotal.io> Co-authored-by: Andy Wilkinson <awilkinson@pivotal.io>
22 lines
552 B
Plaintext
22 lines
552 B
Plaintext
plugins {
|
|
id 'org.springframework.boot' version '2.1.1.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
group = 'com.example'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|