-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
123 lines (113 loc) · 4.08 KB
/
Copy pathwercker.yml
File metadata and controls
123 lines (113 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# This references an OpenJDK container from the
# Docker Hub https://hub.docker.com/_/openjdk/
# Read more about containers on our dev center
# http://devcenter.wercker.com/docs/containers/index.html
box: openjdk:8-jdk
source-dir: utility-service
no-response-timeout: 60
command-timeout: 120
# This is the build pipeline. Pipelines are the core of wercker
# Read more about pipelines on our dev center
# http://devcenter.wercker.com/docs/pipelines/index.html
build:
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# https://github.com/wercker/step-maven
- wercker/maven:
name: Build App
goals: clean package
settings: oracle-settings.xml
# security_settings: oracle-settings-security.xml
maven_opts: -Dsettings.security=$WERCKER_SOURCE_DIR/oracle-settings-security.xml
cache_repo: true
profiles: local
version: 3.2.5
debug: false
stop-app-cloud:
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# https://github.com/wercker/step-maven
- wercker/maven:
name: Stop App Cloud
pom: cep/pom.xml
goals: com.oracle.weblogic:weblogic-maven-plugin:12.2.1-0-0:stop-app
settings: oracle-settings.xml
# security_settings: ../oracle-settings-security.xml
maven_opts: -Dsettings.security=$WERCKER_SOURCE_DIR/oracle-settings-security.xml
# maven_opts: -Dtimeout=120
cache_repo: true
profiles: cloud
version: 3.2.5
debug: false
undeploy-app-cloud:
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# https://github.com/wercker/step-maven
- wercker/maven:
name: Undeploy App Cloud
pom: cep/pom.xml
goals: com.oracle.weblogic:weblogic-maven-plugin:12.2.1-0-0:undeploy
settings: oracle-settings.xml
# security_settings: ../oracle-settings-security.xml
maven_opts: -Dsettings.security=$WERCKER_SOURCE_DIR/oracle-settings-security.xml
# maven_opts: -Dtimeout=120
cache_repo: true
profiles: cloud
version: 3.2.5
debug: false
deploy-app-cloud:
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# https://github.com/wercker/step-maven
- wercker/maven:
name: Deploy App Cloud
pom: cep/pom.xml
goals: com.oracle.weblogic:weblogic-maven-plugin:12.2.1-0-0:deploy
settings: oracle-settings.xml
# security_settings: ../oracle-settings-security.xml
maven_opts: -Dsettings.security=$WERCKER_SOURCE_DIR/oracle-settings-security.xml
# maven_opts: -Dtimeout=120
cache_repo: true
profiles: cloud
version: 3.2.5
debug: false
start-app-cloud:
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# https://github.com/wercker/step-maven
- wercker/maven:
name: Start App Cloud
pom: cep/pom.xml
goals: com.oracle.weblogic:weblogic-maven-plugin:12.2.1-0-0:start-app
settings: oracle-settings.xml
# security_settings: ../oracle-settings-security.xml
maven_opts: -Dsettings.security=$WERCKER_SOURCE_DIR/oracle-settings-security.xml
# maven_opts: -Dtimeout=120
cache_repo: true
profiles: cloud
version: 3.2.5
debug: false
deploy-app-gol:
steps:
- wercker/maven:
name: Deploy App Gol
pom: cep/pom.xml
goals: com.oracle.weblogic:weblogic-maven-plugin:12.2.1-0-0:redeploy
settings: oracle-settings.xml
# security_settings: ../oracle-settings-security.xml
maven_opts: -Dsettings.security=$WERCKER_SOURCE_DIR/oracle-settings-security.xml
# maven_opts: -Dtimeout=120
cache_repo: true
profiles: gol
version: 3.2.5
debug: false