File tree 7 files changed +81
-610
lines changed
sip-servlets-application-router
7 files changed +81
-610
lines changed Original file line number Diff line number Diff line change 60
60
</plugins >
61
61
</build >
62
62
</profile >
63
- <profile >
64
- <id >jboss</id >
65
- <build >
66
- <plugins >
67
- <plugin >
68
- <groupId >org.apache.maven.plugins</groupId >
69
- <artifactId >maven-antrun-plugin</artifactId >
70
- <version >1.1</version >
71
- <executions >
72
- <execution >
73
- <phase >package</phase >
74
- <configuration >
75
- <tasks >
76
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" />
77
- </tasks >
78
- </configuration >
79
- <goals >
80
- <goal >run</goal >
81
- </goals >
82
- </execution >
83
- </executions >
84
- </plugin >
85
- </plugins >
86
- </build >
87
- </profile >
88
- <profile >
89
- <id >jboss-5</id >
90
- <build >
91
- <plugins >
92
- <plugin >
93
- <groupId >org.apache.maven.plugins</groupId >
94
- <artifactId >maven-antrun-plugin</artifactId >
95
- <version >1.1</version >
96
- <executions >
97
- <execution >
98
- <phase >package</phase >
99
- <configuration >
100
- <tasks >
101
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deployers/jbossweb.deployer/" />
102
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/" />
103
- </tasks >
104
- </configuration >
105
- <goals >
106
- <goal >run</goal >
107
- </goals >
108
- </execution >
109
- </executions >
110
- </plugin >
111
- </plugins >
112
- </build >
113
- </profile >
114
63
<profile >
115
64
<id >tomcat-distro</id >
116
65
<activation >
139
88
</plugins >
140
89
</build >
141
90
</profile >
142
- <profile >
143
- <id >jboss-distro</id >
91
+ <profile >
92
+ <id >tomcat-8</id >
93
+ <activation >
94
+ <activeByDefault >true</activeByDefault >
95
+ </activation >
144
96
<build >
145
97
<plugins >
146
98
<plugin >
152
104
<phase >package</phase >
153
105
<configuration >
154
106
<tasks >
155
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" />
107
+ <echo message =" ${env.CATALINA_HOME}" />
108
+ <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.CATALINA_HOME}/lib" />
156
109
</tasks >
157
110
</configuration >
158
111
<goals >
163
116
</plugin >
164
117
</plugins >
165
118
</build >
166
- </profile >
167
- <profile >
168
- <id >jboss-5-distro</id >
119
+ </profile >
120
+ <profile >
121
+ <id >tomcat-8-distro</id >
122
+ <activation >
123
+ <activeByDefault >true</activeByDefault >
124
+ </activation >
169
125
<build >
170
126
<plugins >
171
127
<plugin >
177
133
<phase >package</phase >
178
134
<configuration >
179
135
<tasks >
180
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deployers/jbossweb.deployer/" />
181
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/" />
136
+ <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${CATALINA_HOME}/lib" />
182
137
</tasks >
183
138
</configuration >
184
139
<goals >
191
146
</build >
192
147
</profile >
193
148
</profiles >
194
- </project >
149
+ </project >
Original file line number Diff line number Diff line change 89
89
</plugins >
90
90
</build >
91
91
</profile >
92
- <profile >
93
- <id >jboss</id >
94
- <build >
95
- <plugins >
96
- <plugin >
97
- <groupId >org.apache.maven.plugins</groupId >
98
- <artifactId >maven-antrun-plugin</artifactId >
99
- <version >1.1</version >
100
- <executions >
101
- <execution >
102
- <phase >package</phase >
103
- <configuration >
104
- <tasks >
105
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" />
106
- </tasks >
107
- </configuration >
108
- <goals >
109
- <goal >run</goal >
110
- </goals >
111
- </execution >
112
- </executions >
113
- </plugin >
114
- </plugins >
115
- </build >
116
- </profile >
117
- <profile >
118
- <id >jboss-5</id >
119
- <build >
120
- <plugins >
121
- <plugin >
122
- <groupId >org.apache.maven.plugins</groupId >
123
- <artifactId >maven-antrun-plugin</artifactId >
124
- <version >1.1</version >
125
- <executions >
126
- <execution >
127
- <phase >package</phase >
128
- <configuration >
129
- <tasks >
130
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/" />
131
- </tasks >
132
- </configuration >
133
- <goals >
134
- <goal >run</goal >
135
- </goals >
136
- </execution >
137
- </executions >
138
- </plugin >
139
- </plugins >
140
- </build >
141
- </profile >
142
92
<profile >
143
93
<id >tomcat-distro</id >
144
94
<activation >
168
118
</build >
169
119
</profile >
170
120
<profile >
171
- <id >jboss-distro</id >
121
+ <id >tomcat-8</id >
122
+ <activation >
123
+ <activeByDefault >true</activeByDefault >
124
+ </activation >
172
125
<build >
173
126
<plugins >
174
127
<plugin >
180
133
<phase >package</phase >
181
134
<configuration >
182
135
<tasks >
183
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" />
136
+ <echo message =" ${env.CATALINA_HOME}" />
137
+ <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.CATALINA_HOME}/lib" />
184
138
</tasks >
185
139
</configuration >
186
140
<goals >
193
147
</build >
194
148
</profile >
195
149
<profile >
196
- <id >jboss-5-distro</id >
150
+ <id >tomcat-8-distro</id >
151
+ <activation >
152
+ <activeByDefault >true</activeByDefault >
153
+ </activation >
197
154
<build >
198
155
<plugins >
199
156
<plugin >
205
162
<phase >package</phase >
206
163
<configuration >
207
164
<tasks >
208
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/ " />
165
+ <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${CATALINA_HOME}/lib " />
209
166
</tasks >
210
167
</configuration >
211
168
<goals >
218
175
</build >
219
176
</profile >
220
177
</profiles >
221
- </project >
178
+ </project >
Original file line number Diff line number Diff line change 100
100
</plugins >
101
101
</build >
102
102
</profile >
103
- <profile >
104
- <id >jboss</id >
105
- <build >
106
- <plugins >
107
- <plugin >
108
- <groupId >org.apache.maven.plugins</groupId >
109
- <artifactId >maven-antrun-plugin</artifactId >
110
- <version >1.1</version >
111
- <executions >
112
- <execution >
113
- <phase >package</phase >
114
- <configuration >
115
- <tasks >
116
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" />
117
- </tasks >
118
- </configuration >
119
- <goals >
120
- <goal >run</goal >
121
- </goals >
122
- </execution >
123
- </executions >
124
- </plugin >
125
- </plugins >
126
- </build >
127
- </profile >
128
- <profile >
129
- <id >jboss-5</id >
130
- <build >
131
- <plugins >
132
- <plugin >
133
- <groupId >org.apache.maven.plugins</groupId >
134
- <artifactId >maven-antrun-plugin</artifactId >
135
- <version >1.1</version >
136
- <executions >
137
- <execution >
138
- <phase >package</phase >
139
- <configuration >
140
- <tasks >
141
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/" />
142
- </tasks >
143
- </configuration >
144
- <goals >
145
- <goal >run</goal >
146
- </goals >
147
- </execution >
148
- </executions >
149
- </plugin >
150
- </plugins >
151
- </build >
152
- </profile >
153
103
<profile >
154
104
<id >tomcat-distro</id >
155
105
<activation >
178
128
</plugins >
179
129
</build >
180
130
</profile >
181
- <profile >
182
- <id >jboss-distro</id >
131
+ <profile >
132
+ <id >tomcat-8</id >
133
+ <activation >
134
+ <activeByDefault >true</activeByDefault >
135
+ </activation >
183
136
<build >
184
137
<plugins >
185
138
<plugin >
191
144
<phase >package</phase >
192
145
<configuration >
193
146
<tasks >
194
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deploy/jboss-web.deployer/" />
147
+ <echo message =" ${env.CATALINA_HOME}" />
148
+ <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${env.CATALINA_HOME}/lib" />
195
149
</tasks >
196
150
</configuration >
197
151
<goals >
202
156
</plugin >
203
157
</plugins >
204
158
</build >
205
- </profile >
206
- <profile >
207
- <id >jboss-5-distro</id >
159
+ </profile >
160
+ <profile >
161
+ <id >tomcat-8-distro</id >
162
+ <activation >
163
+ <activeByDefault >true</activeByDefault >
164
+ </activation >
208
165
<build >
209
166
<plugins >
210
167
<plugin >
216
173
<phase >package</phase >
217
174
<configuration >
218
175
<tasks >
219
- <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${JBOSS_HOME}/server/${node}/deploy/jbossweb.sar/ " />
176
+ <copy verbose =" true" file =" ${project.build.directory}/${project.build.finalName}.${project.packaging}" todir =" ${CATALINA_HOME}/lib " />
220
177
</tasks >
221
178
</configuration >
222
179
<goals >
227
184
</plugin >
228
185
</plugins >
229
186
</build >
230
- </profile >
187
+ </profile >
231
188
</profiles >
232
189
</project >
You can’t perform that action at this time.
0 commit comments