fili-generic-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.bard</groupId> <artifactId>fili-generic-example</artifactId> <version>1.1.13</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>com.yahoo.bard</groupId> <artifactId>fili-parent-pom</artifactId> <version>1.1.13</version> <relativePath>../..</relativePath> </parent> <artifactId>fili-generic-example</artifactId> <packaging>war</packaging> <name>Fili: Generic Example</name> <description>Fili Generic Example serves as a standalone app using core Fili services to stand in front any Druid setup and automatically configure </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <maven.deploy.skip>true</maven.deploy.skip> <checkstyle.config.location>../../checkstyle-style.xml</checkstyle.config.location> <checkstyle.suppressions.location>../../checkstyle-suppressions.xml</checkstyle.suppressions.location> </properties> <dependencies> <dependency> <groupId>com.yahoo.bard</groupId> <artifactId>sample-applications</artifactId> <version>${version.fili}</version> <type>pom</type> </dependency> <!-- Test --> <dependency> <groupId>org.glassfish.jersey.test-framework</groupId> <artifactId>jersey-test-framework-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>com.yahoo.wiki.webservice.application.GenericMain</mainClass> </configuration> </plugin> </plugins> </build> </project>