examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.officefloor.example</groupId>
<artifactId>examples</artifactId>
<version>1.0.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.officefloor</groupId> <artifactId>officefloor</artifactId> <version>1.0.1</version> </parent> <groupId>net.officefloor.example</groupId> <artifactId>examples</artifactId> <version>1.0.1</version> <packaging>pom</packaging> <name>Examples</name> <description>Example uses of OfficeFloor</description> <modules> <module>StaticHttpServer</module> <module>DynamicHttpServer</module> <module>PageFlowHttpServer</module> <module>NavigateHttpServer</module> <module>DatabaseHttpServer</module> <module>TeamHttpServer</module> <module>ServletFilterWebApplication</module> <module>ServletFilterDependencyInjection</module> </modules> <dependencyManagement> <dependencies> <!-- Dependency Management for dependencies --> <dependency> <groupId>net.officefloor.plugin</groupId> <artifactId>plugins</artifactId> <version>1.0.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <!-- Provide project source downloads for examples --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>project</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>project-source-release</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>