Sha256: f160267a3fcacec7a474e300f670116834e665b6d11069a11d923c9ebe793033
Contents?: true
Size: 1.3 KB
Versions: 18
Compression:
Stored size: 1.3 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>rails4_test</artifactId> <packaging>jar</packaging> <name>rails4_test</name> <url>http://maven.apache.org</url> <build> <plugins> <plugin> <groupId>de.saumya.mojo</groupId> <artifactId>jruby-maven-plugin</artifactId> <executions> <execution> <id>bundle-install</id> <phase>initialize</phase> </execution> <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