sample-applications
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.yahoo.bard</groupId>
<artifactId>sample-applications</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">
<parent>
<artifactId>fili-parent-pom</artifactId>
<groupId>com.yahoo.bard</groupId>
<version>1.1.13</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sample-applications</artifactId>
<packaging>pom</packaging>
<modules>
<module>fili-generic-example</module>
<module>fili-wikipedia-example</module>
<module>luthier-sample-app</module>
</modules>
<dependencies>
<dependency>
<groupId>com.yahoo.bard</groupId>
<artifactId>fili</artifactId>
</dependency>
<dependency>
<groupId>com.yahoo.bard</groupId>
<artifactId>fili-core</artifactId>
<type>test-jar</type>
<scope>compile</scope>
</dependency>
<!-- Jersey -->
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
</dependency>
<!-- Jetty Servlet Support -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</dependency>
</dependencies>
</project>