-
[spring] cargo카테고리 없음 2019. 10. 26. 00:25
Cargo is a thin wrapper that allows you to manipulate various type of application containers (Java EE and others) in a standard way.
Cargo is often used to deploy applications to containers from test APIs (such as JUnit), ANT or Maven builds.
Codehaus Cargo - Home
Dear Codehaus Cargo enthusiasts After another month since our last release, we are happy to announce the immediate availability of Codehaus Cargo 1.7.7. This release comes with the below bug fixes and improvements, as well as another very important change
codehaus-cargo.github.io
<build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <version>1.7.7</version> <configuration> <configuration> <properties> <cargo.servlet.port>8080</cargo.servlet.port> </properties> </configuration> <container> <containerId>tomcat9x</containerId> <zipUrlInstaller> <url>https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.27/bin/apache-tomcat-9.0.27.zip</url> </zipUrlInstaller> </container> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>