Sha256: d32d9653609cab57cfd7fa445f41f8c8fdaf47c71fe2b4f8e2b507cf6c4f079d

Contents?: true

Size: 1.68 KB

Versions: 1

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/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>

  <dependencies>
    <dependency>
      <groupId>${groupId}</groupId>
      <artifactId>gem-initializer</artifactId>
      <version>${version}</version>
      <type>pom</type>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>de.saumya.mojo</groupId>
        <artifactId>jruby-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>install-gems</id>
            <phase>initialize</phase>
            <goals><goal>jruby</goal></goals>
            <configuration>
              <args>-S ${basedir}/src/main/ruby/bin/install-gems.rb</args>
            </configuration>
          </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

1 entries across 1 versions & 1 rubygems

Version Path
warbler-1.4.0 integration/simple_rack_test/pom.xml