shh-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mattunderscore</groupId>
<artifactId>shh-all</artifactId>
<version>0.2.8</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">
<parent>
<artifactId>structured-http-headers</artifactId>
<groupId>com.mattunderscore</groupId>
<version>0.2.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mattunderscore</groupId>
<artifactId>shh-all</artifactId>
<name>Structured HTTP All Headers</name>
<description>Uberjar containing all headers</description>
<url>http://www.mattunderscore.com/ws-utils/structured-http-headers/shh-all/</url>
<developers>
<developer>
<name>Matthew Champion</name>
<email>matt_champion1@yahoo.co.uk</email>
<url>http://www.mattunderscore.com</url>
<timezone>+0</timezone>
</developer>
</developers>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
</license>
</licenses>
<scm>
<tag>ws-utils-0.2.8</tag>
<url>http://bitbucket.org/mattunderscorechampion/ws-utils/structured-http-headers</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<createSourcesJar>true</createSourcesJar>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<includeDependencySources>true</includeDependencySources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>