Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe Commits: f37ee280 by Tony Chemit at 2024-08-18T10:30:59+02:00 update pom - - - - - 78296103 by Tony Chemit at 2024-08-18T11:05:43+02:00 Replace tomcat plugin to deploy on demo the release war - - - - - 2 changed files: - pom.xml - server/runner/pom.xml Changes: ===================================== pom.xml ===================================== @@ -23,7 +23,7 @@ <parent> <groupId>io.ultreia.maven</groupId> <artifactId>pom</artifactId> - <version>2024.31</version> + <version>2024.32</version> </parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> ===================================== server/runner/pom.xml ===================================== @@ -304,23 +304,26 @@ <classifier>${project.version}</classifier> </properties> <build> - <defaultGoal>verify</defaultGoal> + <defaultGoal>deploy</defaultGoal> <plugins> <plugin> - <groupId>org.apache.tomcat.maven</groupId> - <artifactId>tomcat7-maven-plugin</artifactId> + <groupId>org.codehaus.mojo</groupId> + <artifactId>wagon-maven-plugin</artifactId> <configuration> - <url>https://demo.ultreia.io/manager/text</url> - <server>ultreiaio.tomcat</server> - <path>/observe-${project.version}</path> + <serverId>doc.ultreia.io</serverId> + <url>scpexe://ultreia.io/opt/tomcat9/webapps</url> </configuration> <executions> <execution> - <id>default-redeploy-only</id> + <id>deploy-war</id> <goals> - <goal>redeploy-only</goal> + <goal>upload-single</goal> </goals> - <phase>verify</phase> + <phase>deploy</phase> + <configuration> + <fromFile>${project.build.directory}/observe-server-${project.version}.war</fromFile> + <toFile>observe-${project.version}.war</toFile> + </configuration> </execution> </executions> </plugin> View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/-/compare/63426148e9c4302cfd316dc2b... -- View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/-/compare/63426148e9c4302cfd316dc2b... You're receiving this email because of your account on gitlab.com.