Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe
Commits:
-
f37ee280
by Tony Chemit at 2024-08-18T10:30:59+02:00
-
78296103
by Tony Chemit at 2024-08-18T11:05:43+02:00
2 changed files:
Changes:
| ... | ... | @@ -23,7 +23,7 @@ |
| 23 | 23 | <parent>
|
| 24 | 24 | <groupId>io.ultreia.maven</groupId>
|
| 25 | 25 | <artifactId>pom</artifactId>
|
| 26 | - <version>2024.31</version>
|
|
| 26 | + <version>2024.32</version>
|
|
| 27 | 27 | </parent>
|
| 28 | 28 | <groupId>fr.ird.observe</groupId>
|
| 29 | 29 | <artifactId>ird-observe</artifactId>
|
| ... | ... | @@ -304,23 +304,26 @@ |
| 304 | 304 | <classifier>${project.version}</classifier>
|
| 305 | 305 | </properties>
|
| 306 | 306 | <build>
|
| 307 | - <defaultGoal>verify</defaultGoal>
|
|
| 307 | + <defaultGoal>deploy</defaultGoal>
|
|
| 308 | 308 | <plugins>
|
| 309 | 309 | <plugin>
|
| 310 | - <groupId>org.apache.tomcat.maven</groupId>
|
|
| 311 | - <artifactId>tomcat7-maven-plugin</artifactId>
|
|
| 310 | + <groupId>org.codehaus.mojo</groupId>
|
|
| 311 | + <artifactId>wagon-maven-plugin</artifactId>
|
|
| 312 | 312 | <configuration>
|
| 313 | - <url>https://demo.ultreia.io/manager/text</url>
|
|
| 314 | - <server>ultreiaio.tomcat</server>
|
|
| 315 | - <path>/observe-${project.version}</path>
|
|
| 313 | + <serverId>doc.ultreia.io</serverId>
|
|
| 314 | + <url>scpexe://ultreia.io/opt/tomcat9/webapps</url>
|
|
| 316 | 315 | </configuration>
|
| 317 | 316 | <executions>
|
| 318 | 317 | <execution>
|
| 319 | - <id>default-redeploy-only</id>
|
|
| 318 | + <id>deploy-war</id>
|
|
| 320 | 319 | <goals>
|
| 321 | - <goal>redeploy-only</goal>
|
|
| 320 | + <goal>upload-single</goal>
|
|
| 322 | 321 | </goals>
|
| 323 | - <phase>verify</phase>
|
|
| 322 | + <phase>deploy</phase>
|
|
| 323 | + <configuration>
|
|
| 324 | + <fromFile>${project.build.directory}/observe-server-${project.version}.war</fromFile>
|
|
| 325 | + <toFile>observe-${project.version}.war</toFile>
|
|
| 326 | + </configuration>
|
|
| 324 | 327 | </execution>
|
| 325 | 328 | </executions>
|
| 326 | 329 | </plugin>
|