Sha256: cc158cd36e8eab89c5b8bd0f0a1f9fc62e3c69cf9824534825aaf499ba8cc858
Contents?: true
Size: 1.68 KB
Versions: 4
Compression:
Stored size: 1.68 KB
Contents
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.mortbay.jetty</groupId> <artifactId>cometd-project</artifactId> <version>6.1.22</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.mortbay.jetty</groupId> <artifactId>cometd-install</artifactId> <packaging>pom</packaging> <name>Cometd :: Jetty :: Install</name> <url>http://www.cometd.com</url> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-deps</id> <phase>install</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.mortbay.jetty</groupId> <artifactId>cometd-demo</artifactId> <type>war</type> <destFileName>cometd.war</destFileName> </artifactItem> </artifactItems> <outputDirectory>../../../webapps</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>cometd-demo</artifactId> <type>war</type> <version>${project.version}</version> </dependency> </dependencies> </project>
Version data entries
4 entries across 4 versions & 1 rubygems