mirror of
https://github.com/HaraldWalker/user-agent-utils.git
synced 2026-03-13 09:23:50 +08:00
130 lines
3.0 KiB
XML
130 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>bitwalker</groupId>
|
|
<name>User-Agent-Utils</name>
|
|
<url>http://java.net/projects/user-agent-utils</url>
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
<version>1.8</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>haraldwalker</id>
|
|
<name>Harald Walker</name>
|
|
<url>http://www.bitwalker.eu</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>
|
|
<reporting>
|
|
<outputDirectory>site</outputDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<destDir>javadoc2</destDir>
|
|
<excludes>
|
|
<exclude>**/Test*.java</exclude>
|
|
</excludes>
|
|
<sourcepath>src/main/java</sourcepath>
|
|
<subpackages>eu.bitwalker.useragentutils</subpackages>
|
|
<source>1.5</source>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>
|
|
maven-project-info-reports-plugin
|
|
</artifactId>
|
|
<version>2.0.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.7</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |