<?xml version="1.0"?>
<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>
	<groupId>de.jflex</groupId>
	<artifactId>jflex-maven-plugin</artifactId>
	<packaging>maven-plugin</packaging>
	<name>JFlex Maven Plugin</name>
	<version>1.5.1</version>
	<description>
      This is a Maven 2 plugin to generate a parser in Java code from
      a Lexer definition, using JFlex.
  
      This plugin was previously called maven-jflex-plugin.
        
      For JFlex 1.4.3 and earlier, see the maven-jflex-plugin 
      documentation here: 
      http://jflex.sourceforge.net/maven-jflex-plugin/
	</description>
	<url>http://jflex.sourceforge.net/jflex-maven-plugin/</url>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
	<mailingLists>
		<mailingList>
			<name>JFlex User List</name>
			<subscribe>https://lists.sourceforge.net/lists/listinfo/jflex-users</subscribe>
			<unsubscribe>https://lists.sourceforge.net/lists/listinfo/jflex-users</unsubscribe>
			<post>jflex-users@lists.sourceforge.net</post>
			<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=jflex-users</archive>
		</mailingList>
		<mailingList>
			<name>JFlex Announcement List</name>
			<subscribe>https://lists.sourceforge.net/lists/listinfo/jflex-announce</subscribe>
			<unsubscribe>https://lists.sourceforge.net/lists/listinfo/jflex-announce</unsubscribe>
			<post>jflex-announce@lists.sourceforge.net</post>
			<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=jflex-announce</archive>
		</mailingList>
	</mailingLists>
	<issueManagement>
		<system>Sourceforge</system>
		<url>http://sourceforge.net/p/jflex/_list/tickets</url>
	</issueManagement>
	<prerequisites>
        <maven>2.2.1</maven>
    </prerequisites>
	<inceptionYear>2007</inceptionYear>
	<developers>
		<developer>
			<id>decamps</id>
			<name>Régis Décamps</name>
			<email>decamps@users.sf.net</email>
			<roles>
				<role>developer</role>
			</roles>
			<timezone>+1</timezone>
		</developer>
	</developers>
	<contributors>
		<contributor>
			<email>benjamin.bentmann@udo.edu</email>
			<name>Benjamin Bentmann</name>
			<roles>
				<role>reviewer</role>
			</roles>
		</contributor>
		<contributor>
			<email>support_0384@newplanetsoftware.com</email>
			<name>John Lindal</name>
			<roles>
				<role>reviewer</role>
			</roles>
		</contributor>
		<contributor>
			<email>gerwin.klein@nicta.com.au</email>
			<name>Gerwin Klein</name>
			<roles>
				<role>ant-task developer</role>
			</roles>
		</contributor>
	</contributors>
	<licenses>
		<license>
			<name>BSD</name>
            <url>http://opensource.org/licenses/BSD-3-Clause</url>
            <distribution>repo</distribution>
		</license>
	</licenses>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
	<build>
		<plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <version>2.5</version>
            </plugin>
			<plugin>
                <groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-install-plugin</artifactId>
                <version>2.5</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.4</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>3.2</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <skip>false</skip>
                    <skipDeploy>false</skipDeploy>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.16</version>
            </plugin>
        </plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>2.2.1</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven.shared</groupId>
			<artifactId>maven-plugin-testing-harness</artifactId>
			<version>1.1</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>de.jflex</groupId>
			<artifactId>jflex</artifactId>
			<version>1.5.1</version>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-project</artifactId>
			<version>2.2.1</version>
		</dependency>
	</dependencies>
	<reporting>
		<plugins>
			<plugin>
				<artifactId>maven-plugin-plugin</artifactId>
				<version>2.3</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>
					maven-project-info-reports-plugin
				</artifactId>
                <version>2.7</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>index</report>
							<report>dependencies</report>
							<report>project-team</report>
							<report>issue-tracking</report>
							<report>license</report>
							<report>scm</report>
							<report>summary</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
			<plugin>
                <groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
                <version>3.0.1</version>
				<configuration>
					<targetJdk>1.5</targetJdk>
					<rulesets>
						<ruleset>${basedir}/src/main/config/pmd/ruleset.xml</ruleset>
					</rulesets>
					<format>xml</format>
					<linkXRef>true</linkXRef>
					<minimumTokens>100</minimumTokens>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>taglist-maven-plugin</artifactId>
                <version>2.4</version>
				<configuration>
					<tags>
						<tag>TODO</tag>
						<tag>FIXME</tag>
						<tag>@todo</tag>
						<tag>@deprecated</tag>
					</tags>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
                <version>2.16</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
                <version>2.3</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>findbugs-maven-plugin</artifactId>
				<version>2.5.2</version>
				<configuration>
					<xmlOutput>true</xmlOutput>
					<threshold>Normal</threshold>
					<effort>Default</effort>
					<outputDirectory>target/findbugs</outputDirectory>
					<visitors>
						FindDeadLocalStores,UnreadFields
					</visitors>
					<onlyAnalyze>de.jflex.*</onlyAnalyze>
					<debug>true</debug>
					<relaxed>true</relaxed>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>jdepend-maven-plugin</artifactId>
                <version>2.0-beta-2</version>
			</plugin>
		</plugins>
	</reporting>
	<scm>
        <connection>scm:svn:http://svn.code.sf.net/p/jflex/code/tags/release_1_5_1</connection>
        <developerConnection>scm:svn:https://svn.code.sf.net/p/jflex/code/tags/release_1_5_1</developerConnection>
        <url>http://sourceforge.net/p/jflex/code/HEAD/tree/tags/release_1_5_1</url>
	</scm>
    <profiles>
        <profile>
            <id>release</id>
            <distributionManagement>
                <site>
                    <id>sourceforge</id>
                    <name>SourceForge JFlex Maven Plugin site</name>
                    <url>
                        scp://shell.sourceforge.net/home/project-web/jflex/htdocs/jflex-maven-plugin
                    </url>
                </site>
            </distributionManagement>
        </profile>
        <profile>
            <id>localhost</id>
            <distributionManagement>
                <site>
                    <id>localhost</id>
                    <name>Local site</name>
                    <url>
                        scp://localhost/tmp/jflex/jflex-maven-plugin
                    </url>
                </site>
            </distributionManagement>
        </profile>
    </profiles>
</project>
