UserAgentUtils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>nl.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
<version>1.2.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>nl.bitwalker</groupId>
<name>User-Agent-Utils</name>
<url>http://java.net/projects/user-agent-utils</url>
<artifactId>UserAgentUtils</artifactId>
<version>1.2.4</version>
<description>Utility classes to handle user-agents.</description>
<licenses>
<license>
<name>New BSD License</name>
<url>
http://user-agent-utils.googlecode.com/svn/trunk/UserAgentUtils/LICENSE.txt
</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>harald</id>
<name>Harald Walker</name>
<url>http://www.bitwalker.nl</url>
<roles>
<role>developer</role>
</roles>
<timezone>-2</timezone>
</developer>
</developers>
<issueManagement>
<system>JIRA</system>
<url>http://java.net/jira/browse/USER_AGENT_UTILS</url>
</issueManagement>
<scm>
<connection>
scm:svn:https://svn.java.net/svn/user-agent-utils~svn/
</connection>
<tag>HEAD</tag>
<url>
http://java.net/projects/user-agent-utils/sources/svn/show
</url>
</scm>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>2.0</version>
<configuration>
<outputDirectory>
site/
</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.4</version>
<configuration>
<destDir>javadoc1</destDir>
<excludes>
<exclude>**/Test*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useFile>true</useFile>
<argLine>-ea</argLine>
<excludes>
<exclude>**/Test*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>