<?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>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<groupId>net.sf.jmatchparser</groupId>
	<artifactId>jMatchParser</artifactId>
	<packaging>pom</packaging>
	<name>jMatchParser</name>
	<version>0.1</version>
	<description>A java-based parser for parsing/grabbing web sites and other text or XML documents, based on a nondeterministic parser language, creating XML output. Also contains a few utility classes for HTML, CSV and text parsing, and additional character sets.</description>
	<url>http://jmatchparser.sourceforge.net/</url>
	<licenses>
		<license>
			<name>3-clause BSD license</name>
			<url>http://www.opensource.org/licenses/BSD-3-Clause</url>
			<distribution>repo</distribution>
		</license>
		<license>
			<name>Mozilla Public License 1.1 (MPL 1.1)</name>
			<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
			<distribution>repo</distribution>
		</license>
		<license>
			<name>GNU General Public License v2 or later</name>
			<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<connection>scm:svn:http://jmatchparser.svn.sourceforge.net/svnroot/jmatchparser/tags/jMatchParser-0.1</connection>
		<developerConnection>scm:svn:https://jmatchparser.svn.sourceforge.net/svnroot/jmatchparser/tags/jMatchParser-0.1</developerConnection>
		<url>http://jmatchparser.svn.sourceforge.net/viewvc/jmatchparser/tags/jMatchParser-0.1</url>
	</scm>
	<developers>
		<developer>
			<id>schierlm</id>
			<name>Michael Schierl</name>
			<email>schierlm@users.sourceforge.net</email>
			<url>http://schierlm.users.sourceforge.net</url>
			<timezone>+1</timezone>
		</developer>
	</developers>
	<distributionManagement>
		<site>
			<id>jmatchparser.sf.net</id>
			<url>scp://schierlm,jmatchparser@shell.sourceforge.net/home/project-web/jmatchparser/htdocs/maven-site</url>
		</site>
	</distributionManagement>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.2</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1.2</version>
				<executions>
					<execution>
						<id>package</id>
						<phase>package</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8</version>
				<executions>
					<execution>
						<id>package-aggregate</id>
						<inherited>false</inherited>
						<phase>package</phase>
						<goals>
							<goal>aggregate-jar</goal>
						</goals>
						<configuration>
							<groups>
								<group>
									<title>jMatchParser</title>
									<packages>net.sf.jmatchparser.template*</packages>
								</group>
								<group>
									<title>Utility Classes</title>
									<packages>net.sf.jmatchparser.util*</packages>
								</group>
							</groups>
						</configuration>
					</execution>
					<execution>
						<id>package-separate</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.0</version>
				<dependencies>
					<dependency>
						<groupId>org.apache.maven.wagon</groupId>
						<artifactId>wagon-ssh</artifactId>
						<version>1.0</version>
					</dependency>
				</dependencies>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<configuration>
					<keyname>Maven Project Release Key</keyname>
				</configuration>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.2.1</version>
				<configuration>
					<autoVersionSubmodules>true</autoVersionSubmodules>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>skip-tests</id>
			<build>
				<plugins>
					<plugin>
						<artifactId>maven-surefire-plugin</artifactId>
						<configuration>
							<skip>true</skip>
						</configuration>
					</plugin>
				</plugins>
			</build>
		</profile>
		<profile>
			<id>skip-extras</id>
			<build>
				<plugins>
					<plugin>
						<artifactId>maven-source-plugin</artifactId>
						<version>2.1.2</version>
						<executions>
							<execution>
								<id>package</id>
								<goals>
									<!-- an empty goal list does no seem to work as expected... -->
									<goal>help</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<artifactId>maven-javadoc-plugin</artifactId>
						<version>2.8</version>
						<configuration>
							<skip>true</skip>
						</configuration>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.4</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>index</report>
							<report>distribution-management</report>
							<report>dependencies</report>
							<!-- <report>issue-tracking</report> -->
							<report>plugins</report>
							<!-- <report>cim</report> -->
							<report>license</report>
							<!-- <report>mailing-list</report> -->
							<report>project-team</report>
							<report>dependency-convergence</report>
							<report>scm</report>
							<report>plugin-management</report>
							<report>modules</report>
							<report>dependency-management</report>
							<report>summary</report>
						</reports>
					</reportSet>
				</reportSets>
				<configuration>
					<linkOnly>true</linkOnly>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8</version>
				<configuration>
					<detectLinks>true</detectLinks>
					<excludePackageNames>net.sf.jmatchparser.template.engine</excludePackageNames>
				</configuration>
				<reportSets>
					<reportSet>
						<id>aggregate</id>
						<inherited>false</inherited>
						<reports>
							<report>aggregate</report>
						</reports>
						<configuration>
							<groups>
								<group>
									<title>jMatchParser</title>
									<packages>net.sf.jmatchparser.template*</packages>
								</group>
								<group>
									<title>Utility Classes</title>
									<packages>net.sf.jmatchparser.util*</packages>
								</group>
							</groups>
						</configuration>
					</reportSet>
					<reportSet>
						<id>separate</id>
						<inherited>true</inherited>
						<reports>
							<report>javadoc</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>2.9</version>
				<configuration>
					<aggregate>true</aggregate>
				</configuration>
			</plugin>
			<!-- does not work... <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> 
				<version>2.5.1</version> </plugin> -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
				<version>2.3</version>
				<reportSets>
					<reportSet>
						<id>aggregate</id>
						<inherited>false</inherited>
						<reports>
							<report>aggregate</report>
						</reports>
					</reportSet>
					<reportSet>
						<id>separate</id>
						<inherited>true</inherited>
						<reports>
							<report>jxr</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>
	<modules>
		<module>jMatchParser-util</module>
		<module>jMatchParser-charset</module>
		<module>jMatchParser-jchardet</module>
		<module>jMatchParser-juniversalchardet</module>
		<module>jMatchParser-icu4j-chardet</module>
		<module>jMatchParser-parser</module>
		<module>jMatchParser-all</module>
	</modules>
	<properties>
		<project.build.sourceEncoding>windows-1252</project.build.sourceEncoding>
	</properties>
</project>