apply plugin: ‘java-library’
apply plugin: ‘org.springframework.boot’
apply plugin: ‘io.spring.dependency-management’
archivesBaseName=‘jar包名称’
group = ‘com.energy.greentoken’
description = ‘描述信息’
buildscript {
ext {
springBootVersion = ‘2.0.4.RELEASE’
}
repositories {
maven {
url “http://maven.aliyun.com/nexus/content/groups/public/”
}
}
dependencies {
classpath “org.springframework.boot:spring-boot-gradle-plugin:2.0.4.RELEASE”
}
}