blob: 1e43076bbe25b053c73a435e9272bfc88111483f [file] [log] [blame]
<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>japa.javaparser</groupId>
<artifactId>javaparser</artifactId>
<packaging>jar</packaging>
<version>1.0.9-SNAPSHOT</version>
<name>javaparser</name>
<url>http://code.google.com/p/javaparser/</url>
<inceptionYear>2007</inceptionYear>
<description>This package contains a Java 1.5 Parser with AST generation and visitor support.
The AST records the source code structure, javadoc and comments. Soon will be
possible change the AST nodes or create new ones to modify source code like refactoring.
This parser is based on Sreenivasa Viswanadha Java 1.5 parser.</description>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/javaparser/issues/list</url>
</issueManagement>
<developers>
<developer>
<name>JĂșlio Vilmar Gesser</name>
<email>jgesser@gmail.com</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Hendy Irawan</name>
<email>hendy@soluvas.com</email>
<url>http://www.HendyIrawan.com/</url>
<organization>Soluvas</organization>
<organizationUrl>http://www.Soluvas.com/</organizationUrl>
</contributor>
</contributors>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.6</java.version>
<!-- Maven Plugins -->
<build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version>
<javacc-maven-plugin.version>2.6</javacc-maven-plugin.version>
<maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
<!-- Test Dependencies -->
<junit.version>4.8.1</junit.version>
</properties>
<scm>
<connection>scm:git:git://github.com/matozoid/javaparser.git</connection>
<developerConnection>scm:git:git@github.com:matozoid/javaparser.git</developerConnection>
<url>https://github.com/matozoid/javaparser.git</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>add-javacc-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/javacc</source>
<source>target/generated-sources/javacc</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
<version>${javacc-maven-plugin.version}</version>
<executions>
<execution>
<id>javacc</id>
<goals>
<goal>javacc</goal>
</goals>
<configuration>
<grammarEncoding>${project.build.sourceEncoding}</grammarEncoding>
<jdkVersion>${java.version}</jdkVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
javacc-maven-plugin
</artifactId>
<versionRange>
[2.6,)
</versionRange>
<goals>
<goal>javacc</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>