123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- plugins {
-
- id 'org.springframework.boot' version '2.1.0.RELEASE'
- id 'io.spring.dependency-management' version '1.0.8.RELEASE'
- id "org.hidetake.ssh" version "2.10.1"
- id 'java'
- }
- group = 'com.zcxk'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- repositories {
- mavenCentral()
- }
- ext {
-
-
- set('springCloudVersion', "Greenwich.SR2")
- set('springCloudAlibabaVersion', "2.1.0.RELEASE")
-
-
- }
- subprojects
- apply
- apply
- apply
- apply
- apply
- apply
- apply
- apply
- group
- sourceCompatibility
- targetCompatibility
-
- [compileJava,compileTestJava,javadoc]*.options*.encoding
- bootJar
- enabled // 默认不需要打可执行包
- }
- repositories
- mavenLocal()
- mavenCentral()
- maven
- }
- dependencies
- compileOnly
- annotationProcessor
-
- compile('io.springfox:springfox-swagger2:2.7.0')
- compile('io.springfox:springfox-swagger-ui:2.7.0')
-
- compile('com.alibaba:fastjson:1.2.41')
- testImplementation('org.springframework.boot:spring-boot-starter-test') {
- exclude
- }
- }
- dependencyManagement
- imports
- mavenBom
- mavenBom
- }
- }
- remotes
-
- devServer
- host
- port
- user
- password
- }
-
- sitServer
- host
- port
- user
- password
- }
-
- uatServer155
- host
- port
- user
- password
- }
-
- uatServer156
- host
- port
- user
- password
- }
-
- sitServer153
- host
- port
- user
- password
- }
- }
- }
- }
- test
- useJUnitPlatform()
- }
|