[NO-BTS] Change properties for production
This commit is contained in:
parent
26520fba79
commit
ed96cbab8f
|
@ -6,7 +6,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'com.myoa.engineering.crawl.ppomppu'
|
group = 'com.myoa.engineering.crawl.ppomppu'
|
||||||
version = '0.0.1-SNAPSHOT'
|
version = '1.0.1'
|
||||||
sourceCompatibility = '11'
|
sourceCompatibility = '11'
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
|
@ -20,6 +20,9 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
|
group = 'com.myoa.engineering.crawl.ppomppu'
|
||||||
|
version = '1.0.1'
|
||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
apply plugin: 'org.springframework.boot'
|
apply plugin: 'org.springframework.boot'
|
||||||
|
|
|
@ -3,7 +3,7 @@ spring:
|
||||||
activate:
|
activate:
|
||||||
on-profile: development
|
on-profile: development
|
||||||
import:
|
import:
|
||||||
- "configserver:http://192.168.0.100:11080"
|
- "configserver:http://192.168.0.100:20085"
|
||||||
- classpath:/development/webclient.yml
|
- classpath:/development/webclient.yml
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,4 @@ spring:
|
||||||
activate:
|
activate:
|
||||||
on-profile: production
|
on-profile: production
|
||||||
import:
|
import:
|
||||||
- "configserver:http://192.168.0.100:11080"
|
- "configserver:http://ppn_config_server:20080"
|
||||||
|
|
|
@ -2,4 +2,4 @@ webclient:
|
||||||
init: true
|
init: true
|
||||||
units:
|
units:
|
||||||
- unit-name: ppn-sender-api
|
- unit-name: ppn-sender-api
|
||||||
base-url: http://ppn_sender:20082
|
base-url: http://ppn_sender:20080
|
|
@ -4,4 +4,4 @@ spring:
|
||||||
on-profile: production
|
on-profile: production
|
||||||
import:
|
import:
|
||||||
- classpath:/production/webclient.yml
|
- classpath:/production/webclient.yml
|
||||||
- "configserver:http://192.168.0.100:11080"
|
- "configserver:http://ppn_config_server:20080"
|
|
@ -3,4 +3,4 @@ spring:
|
||||||
activate:
|
activate:
|
||||||
on-profile: production
|
on-profile: production
|
||||||
import:
|
import:
|
||||||
- "configserver:http://192.168.0.100:11080"
|
- "configserver:http://ppn_config_server:20080"
|
||||||
|
|
|
@ -13,3 +13,11 @@ test {
|
||||||
events "passed", "skipped", "failed"
|
events "passed", "skipped", "failed"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
bootJar {
|
||||||
|
enabled = false
|
||||||
|
}
|
Loading…
Reference in New Issue