test-war-groovy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-groovy</artifactId> <version>7.5.0.RC1</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>testwars-parent</artifactId> <version>7.5.0.RC1</version> </parent> <artifactId>test-war-groovy</artifactId> <packaging>war</packaging> <name>Jetty :: Verifier Tests :: Groovy Webapp</name> <dependencies> <dependency> <groupId>groovy</groupId> <artifactId>groovy</artifactId> <version>1.1-rc-1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>config</descriptorRef> </descriptorRefs> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>