
or.example.PageFlowHttpServer.1.0.1.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PageFlowHttpServer Show documentation
Show all versions of PageFlowHttpServer Show documentation
Example of using OfficeFloor for page flow within a HTTP Server
The newest version!
<?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.example</groupId> <artifactId>examples</artifactId> <version>1.0.1</version> </parent> <groupId>net.officefloor.example</groupId> <artifactId>PageFlowHttpServer</artifactId> <version>1.0.1</version> <name>Page Flow HTTP Server Example</name> <description>Example of using OfficeFloor for page flow within a HTTP Server</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <basedir>${basedir}</basedir> <projectVersion>${project.version}</projectVersion> </properties> <dependencies> <dependency> <groupId>net.officefloor.plugin</groupId> <artifactId>officeplugin_web</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <!-- Profile for building --> <id>build-repositories</id> <activation> <file> <exists>${basedir}/pom.xml</exists> </file> </activation> <repositories> <repository> <!-- OfficeFloor repository to obtain artifacts for running the example --> <id>maven2-repository.officefloor.net</id> <name>OfficeFloor Repository for Maven</name> <url>http://www.officefloor.net/maven2/</url> </repository> </repositories> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy