123456789101112131415161718192021222324252627282930 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.1.3'
- id 'io.spring.dependency-management' version '1.1.3'
- }
- group = 'com.xuqinmin.java'
- version = '0.0.1-SNAPSHOT'
- java {
- sourceCompatibility = '17'
- }
- repositories {
- // mavenCentral()
- maven {
- url 'http://xuqinmin.com.cn:8081/repository/maven-public/'
- allowInsecureProtocol true
- }
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'com.rabbitmq:amqp-client'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|