77c7b56
77c7b56
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
77c7b56
	<modelVersion>4.0.0</modelVersion>
77c7b56
	<groupId>com.google.code.javaparser</groupId>
77c7b56
	<artifactId>javaparser</artifactId>
77c7b56
	<packaging>jar</packaging>
77c7b56
	<name>Java 1.5 Parser and AST</name>
77c7b56
	<version>1.0.8</version>
77c7b56
	<description>A Java 1.5 Parser with AST generation and visitor support. The AST records the source code structure, javadoc and comments. It is also possible to change the AST nodes or create new ones to modify the source code.</description>
77c7b56
	<url>http://code.google.com/p/javaparser/</url>
77c7b56
	<issueManagement>
77c7b56
		<system>Google Code</system>
77c7b56
		<url>http://code.google.com/p/javaparser/issues/</url>
77c7b56
	</issueManagement>
77c7b56
	<licenses>
77c7b56
		<license>
77c7b56
			<name>GNU Lesser General Public License</name>
77c7b56
			<url>http://www.gnu.org/licenses/lgpl.html</url>
77c7b56
			<distribution>repo</distribution>
77c7b56
		</license>
77c7b56
	</licenses>
77c7b56
	<scm>
77c7b56
		<url>http://code.google.com/p/javaparser/source/browse/</url>
77c7b56
		<connection>http://javaparser.googlecode.com/svn/trunk/</connection>
77c7b56
	</scm>
77c7b56
	<inceptionYear>2007</inceptionYear>
77c7b56
	<developers>
77c7b56
		<developer>
77c7b56
			<name>JĂșlio Vilmar Gesser</name>
77c7b56
			<email>jgesser@gmail.com</email>
77c7b56
		</developer>
77c7b56
	</developers>
77c7b56
	<contributors>
77c7b56
		<contributor>
77c7b56
			<name>Hendy Irawan</name>
77c7b56
			<email>hendy@soluvas.com</email>
77c7b56
			<url>http://www.HendyIrawan.com/</url>
77c7b56
			<organization>Soluvas</organization>
77c7b56
			<organizationUrl>http://www.Soluvas.com/</organizationUrl>
77c7b56
		</contributor>
77c7b56
	</contributors>
77c7b56
	<distributionManagement>
77c7b56
		<site>
77c7b56
			<id>javaparser-site</id>
77c7b56
			<name>JavaParser</name>
77c7b56
			<url>http://code.google.com/p/javaparser</url>
77c7b56
		</site>
77c7b56
		<downloadUrl>http://code.google.com/p/javaparser/downloads/</downloadUrl>
77c7b56
		<repository>
77c7b56
			<id>javaparser-release</id>
77c7b56
			<name>JavaParser Maven Releases Repository</name>
77c7b56
			<url>svn:https://javaparser.googlecode.com/svn/maven2</url>
77c7b56
		</repository>
77c7b56
		<snapshotRepository>
77c7b56
			<id>javaparser-snapshots</id>
77c7b56
			<name>JavaParser Maven Snapshots Repository</name>
77c7b56
			<url>svn:https://javaparser.googlecode.com/svn/maven2-snapshots</url>
77c7b56
		</snapshotRepository>
77c7b56
	</distributionManagement>
77c7b56
	<build>
77c7b56
		<sourceDirectory>src</sourceDirectory>
77c7b56
		<testSourceDirectory>test</testSourceDirectory>
77c7b56
		<outputDirectory>bin</outputDirectory>
77c7b56
		<testOutputDirectory>bin</testOutputDirectory>
77c7b56
		<extensions>
77c7b56
			<extension>
77c7b56
				<groupId>org.jvnet.wagon-svn</groupId>
77c7b56
				<artifactId>wagon-svn</artifactId>
77c7b56
				<version>1.9</version>
77c7b56
			</extension>
77c7b56
		</extensions>
77c7b56
		<plugins>
77c7b56
			<plugin>
77c7b56
				<groupId>org.apache.maven.plugins</groupId>
77c7b56
				<artifactId>maven-compiler-plugin</artifactId>
77c7b56
				<configuration>
77c7b56
					<source>1.5</source>
77c7b56
					<target>1.5</target>
77c7b56
				</configuration>
77c7b56
			</plugin>
77c7b56
			<plugin>
77c7b56
				<groupId>org.apache.maven.plugins</groupId>
77c7b56
				<artifactId>maven-surefire-plugin</artifactId>
77c7b56
				<configuration>
77c7b56
					<excludes>
77c7b56
						<exclude>ignore/**</exclude>
77c7b56
						<exclude>**/*$*</exclude>
77c7b56
					</excludes>
77c7b56
				</configuration>
77c7b56
			</plugin>
77c7b56
		</plugins>
77c7b56
		<resources>
77c7b56
		</resources>
77c7b56
	</build>
77c7b56
	<dependencies>
77c7b56
		<dependency>
77c7b56
			<groupId>junit</groupId>
77c7b56
			<artifactId>junit</artifactId>
77c7b56
			<version>4.8.1</version>
77c7b56
			<scope>test</scope>
77c7b56
		</dependency>
77c7b56
	</dependencies>
77c7b56
	<repositories>
77c7b56
		<repository>
77c7b56
			<id>java.net.m2</id>
77c7b56
			<url>http://download.java.net/maven/2</url>
77c7b56
			<snapshots>
77c7b56
				<enabled>false</enabled>
77c7b56
			</snapshots>
77c7b56
		</repository>
77c7b56
	</repositories>
77c7b56
</project>