ferret
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.wasdev.wlp.sample</groupId> <artifactId>ferret</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>net.wasdev.maven.parent</groupId> <artifactId>java7-parent</artifactId> <version>1.4</version> <relativePath /> </parent> <groupId>net.wasdev.wlp.sample</groupId> <artifactId>ferret</artifactId> <version>1.2</version> <packaging>war</packaging> <name>Liberty Profile Sample - Ferret</name> <url>https://wasdev.github.io</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://raw.github.com/WASdev/sample.ferret/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:WASdev/sample.ferret.git</connection> <developerConnection>scm:git:git@github.com:WASdev/sample.ferret.git</developerConnection> <url>git@github.com:WASdev/sample.ferret.git</url> <tag>ferret-1.2</tag> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-servlet_3.0_spec</artifactId> <version>1.0</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-servlet_3.0_spec</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>net.wasdev.wlp.maven.plugins</groupId> <artifactId>liberty-maven-plugin</artifactId> <version>1.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>net.wasdev.wlp.maven.plugins</groupId> <artifactId>liberty-maven-plugin</artifactId> <configuration> <configFile>src/main/wlp/server.xml</configFile> <bootstrapProperties> <appLocation>${project.build.finalName}</appLocation> </bootstrapProperties> </configuration> </plugin> </plugins> </build> </project>