DeployHttpServer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.officefloor.tutorial</groupId>
<artifactId>DeployHttpServer</artifactId>
<version>4.0.0</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>
<groupId>net.officefloor.tutorial</groupId>
<artifactId>DeployHttpServer</artifactId>
<packaging>pom</packaging>
<name>Deploy HTTP Server Tutorial</name>
<version>4.0.0</version>
<description>Deplyoing a HTTP Server</description>
<url>http://officefloor.net/officefloor/tutorials/cloud/cloud-platforms/DeployHttpServer/</url>
<developers>
<developer>
<id>sagenschneider</id>
<name>Daniel Sagenschneider</name>
<email>daniel@officefloor.net</email>
<roles>
<role>Founder</role>
<role>Administrator</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/officefloor/OfficeFloor.git/officefloor/tutorials/cloud/cloud-platforms/DeployHttpServer</connection>
<developerConnection>scm:git:git@github.com:officefloor/OfficeFloor.git/officefloor/tutorials/cloud/cloud-platforms/DeployHttpServer</developerConnection>
<url>https://github.com/officefloor/OfficeFloor/officefloor/tutorials/cloud/cloud-platforms/DeployHttpServer</url>
</scm>
<repositories>
<repository>
<id>Central first</id>
<name>List central first so is used first</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
<repository>
<id>OfficeFloor-stage-repository</id>
<name>Staged artifacts for OfficeFloor</name>
<url>https://github.com/officefloor/maven/raw/repository/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.officefloor.web</groupId>
<artifactId>woof_test</artifactId>
<version>4.0.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>officeserver_test</artifactId>
<groupId>net.officefloor.server</groupId>
</exclusion>
<exclusion>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-params</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.10.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-platform-engine</artifactId>
<groupId>org.junit.platform</groupId>
</exclusion>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>