specification.httpx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kaazing</groupId>
<artifactId>specification.httpx</artifactId>
<version>3.1.0</version>
</dependency><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>org.kaazing</groupId>
<artifactId>k3po.parent</artifactId>
<version>3.1.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>specification.httpx</artifactId>
<packaging>jar</packaging>
<name>HTTPX Protocol Specification</name>
<url>https://github.com/k3po/k3po.git</url>
<description>Specification for HTTPX protocol</description>
<scm>
<url>https://github.com/k3po/specification.http</url>
<connection>scm:git:https://github.com/k3po/k3po.git</connection>
</scm>
<dependencies>
<dependency>
<!-- Needed for EL only, not AST -->
<groupId>org.kaazing</groupId>
<artifactId>k3po.lang</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.kaazing</groupId>
<artifactId>k3po.junit</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/scripts</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.kaazing</groupId>
<artifactId>k3po-maven-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<skipTests>${skipITs}</skipTests>
</configuration>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<!-- see MJAVADOC-329 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>empty-javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>src/main/javadoc</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>