Sha256: 5758a1a74ff4683a6296123afa19051098e8a2d66d7fb3be53031cffe38b6edc
Contents?: true
Size: 1.19 KB
Versions: 18
Compression:
Stored size: 1.19 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jruby.warbler</groupId> <artifactId>integration-tests</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>simple_rack_test</artifactId> <packaging>jar</packaging> <name>simple_rack_test</name> <url>http://maven.apache.org</url> <build> <plugins> <plugin> <groupId>de.saumya.mojo</groupId> <artifactId>jruby-maven-plugin</artifactId> <executions> <execution> <id>create-war</id> <phase>pre-integration-test</phase> </execution> </executions> </plugin> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <executions> <execution> <id>start-jetty</id> </execution> <execution> <id>stop-jetty</id> </execution> </executions> </plugin> </plugins> </build> </project>
Version data entries
18 entries across 18 versions & 1 rubygems