André Rouél | 603d966 | 2013-02-21 18:27:39 +0100 | [diff] [blame] | 1 | <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"> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
Nicholas Smith | 0bf897c | 2014-10-01 10:31:08 +0100 | [diff] [blame] | 3 | <modules> |
Nicholas Smith | c992b22 | 2014-11-26 14:29:41 +0000 | [diff] [blame] | 4 | <module>javaparser-core</module> |
| 5 | <module>javaparser-testing</module> |
Nicholas Smith | 0bf897c | 2014-10-01 10:31:08 +0100 | [diff] [blame] | 6 | </modules> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 7 | |
Nicholas Smith | 0bf897c | 2014-10-01 10:31:08 +0100 | [diff] [blame] | 8 | <parent> |
André Rouél | dab28cb | 2013-02-20 08:37:36 +0100 | [diff] [blame] | 9 | <groupId>org.sonatype.oss</groupId> |
| 10 | <artifactId>oss-parent</artifactId> |
| 11 | <version>7</version> |
| 12 | </parent> |
| 13 | |
Nicholas Smith | df6c84c | 2014-12-10 14:37:45 +0000 | [diff] [blame] | 14 | <groupId>com.github.javaparser</groupId> |
Nicholas Smith | c992b22 | 2014-11-26 14:29:41 +0000 | [diff] [blame] | 15 | <artifactId>javaparser-parent</artifactId> |
Nicholas Smith | 0bf897c | 2014-10-01 10:31:08 +0100 | [diff] [blame] | 16 | <packaging>pom</packaging> |
Nicholas Smith | df6c84c | 2014-12-10 14:37:45 +0000 | [diff] [blame] | 17 | <version>2.0.0-SNAPSHOT</version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 18 | |
Nicholas Smith | c992b22 | 2014-11-26 14:29:41 +0000 | [diff] [blame] | 19 | <name>javaparser-parent</name> |
Nicholas Smith | df6c84c | 2014-12-10 14:37:45 +0000 | [diff] [blame] | 20 | <url>https://github.com/javaparser</url> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 21 | <inceptionYear>2007</inceptionYear> |
Nicholas Smith | df6c84c | 2014-12-10 14:37:45 +0000 | [diff] [blame] | 22 | <description>This package contains a Java 1.8 Parser with AST generation and visitor support. |
Nicholas Smith | dcee6ce | 2014-09-24 15:27:47 +0100 | [diff] [blame] | 23 | The AST records the source code structure, javadoc and comments. Soon will be |
| 24 | possible change the AST nodes or create new ones to modify source code like refactoring. |
Nicholas Smith | 0fea94b | 2015-01-10 11:06:41 +0000 | [diff] [blame^] | 25 | This parser is based on Sreenivasa Viswanadha Java 1.5 parser.</description> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 26 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 27 | <developers> |
| 28 | <developer> |
| 29 | <name>Júlio Vilmar Gesser</name> |
| 30 | <email>jgesser@gmail.com</email> |
| 31 | </developer> |
| 32 | </developers> |
| 33 | <contributors> |
| 34 | <contributor> |
| 35 | <name>Hendy Irawan</name> |
| 36 | <email>hendy@soluvas.com</email> |
| 37 | <url>http://www.HendyIrawan.com/</url> |
| 38 | <organization>Soluvas</organization> |
| 39 | <organizationUrl>http://www.Soluvas.com/</organizationUrl> |
| 40 | </contributor> |
| 41 | </contributors> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 42 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 43 | <properties> |
| 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Nicholas Smith | 7cb0274 | 2014-11-28 14:49:51 +0000 | [diff] [blame] | 45 | <java.version>1.6</java.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 46 | |
| 47 | <!-- Maven Plugins --> |
| 48 | <javacc-maven-plugin.version>2.6</javacc-maven-plugin.version> |
André Rouél | bcc0b4a | 2013-02-21 08:36:32 +0100 | [diff] [blame] | 49 | <maven-clean-plugin.version>2.5</maven-clean-plugin.version> |
| 50 | <maven-compiler-plugin.version>3.0</maven-compiler-plugin.version> |
André Rouél | 79069b0 | 2013-02-21 08:40:37 +0100 | [diff] [blame] | 51 | <maven-install-plugin.version>2.4</maven-install-plugin.version> |
André Rouél | bcc0b4a | 2013-02-21 08:36:32 +0100 | [diff] [blame] | 52 | <maven-jar-plugin.version>2.4</maven-jar-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 53 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 54 | </properties> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 55 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 56 | <scm> |
Nicholas Smith | 0fea94b | 2015-01-10 11:06:41 +0000 | [diff] [blame^] | 57 | <connection>scm:git:git://github.com/javaparser/javaparser.git</connection> |
| 58 | <developerConnection>scm:git:git@github.com:javaparser/javaparser.git</developerConnection> |
| 59 | <url>https://github.com/javaparser/javaparser.git</url> |
André Rouél | 515c996 | 2013-02-20 08:33:17 +0100 | [diff] [blame] | 60 | <tag>HEAD</tag> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 61 | </scm> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 62 | |
André Rouél | d127e44 | 2013-02-20 21:06:13 +0100 | [diff] [blame] | 63 | <issueManagement> |
| 64 | <system>GitHub Issue Tracker</system> |
Nicholas Smith | 0fea94b | 2015-01-10 11:06:41 +0000 | [diff] [blame^] | 65 | <url>https://github.com/javaparser/javaparser/issues</url> |
André Rouél | d127e44 | 2013-02-20 21:06:13 +0100 | [diff] [blame] | 66 | </issueManagement> |
| 67 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 68 | <build> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 69 | <plugins> |
| 70 | <plugin> |
| 71 | <groupId>org.apache.maven.plugins</groupId> |
| 72 | <artifactId>maven-compiler-plugin</artifactId> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 73 | <configuration> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 74 | <source>${java.version}</source> |
| 75 | <target>${java.version}</target> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 76 | </configuration> |
| 77 | </plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 78 | </plugins> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 79 | <pluginManagement> |
| 80 | <plugins> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 81 | <plugin> |
André Rouél | bcc0b4a | 2013-02-21 08:36:32 +0100 | [diff] [blame] | 82 | <groupId>org.codehaus.mojo</groupId> |
André Rouél | bcc0b4a | 2013-02-21 08:36:32 +0100 | [diff] [blame] | 83 | <artifactId>javacc-maven-plugin</artifactId> |
| 84 | <version>${javacc-maven-plugin.version}</version> |
| 85 | </plugin> |
| 86 | <plugin> |
| 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-clean-plugin</artifactId> |
| 89 | <version>${maven-clean-plugin.version}</version> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-compiler-plugin</artifactId> |
| 94 | <version>${maven-compiler-plugin.version}</version> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
André Rouél | 79069b0 | 2013-02-21 08:40:37 +0100 | [diff] [blame] | 98 | <artifactId>maven-install-plugin</artifactId> |
| 99 | <version>${maven-install-plugin.version}</version> |
| 100 | </plugin> |
| 101 | <plugin> |
| 102 | <groupId>org.apache.maven.plugins</groupId> |
André Rouél | bcc0b4a | 2013-02-21 08:36:32 +0100 | [diff] [blame] | 103 | <artifactId>maven-jar-plugin</artifactId> |
| 104 | <version>${maven-jar-plugin.version}</version> |
Nicholas Smith | 7cb0274 | 2014-11-28 14:49:51 +0000 | [diff] [blame] | 105 | <configuration> |
| 106 | <finalName>javaparser-${version}</finalName> |
| 107 | </configuration> |
André Rouél | bcc0b4a | 2013-02-21 08:36:32 +0100 | [diff] [blame] | 108 | </plugin> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 109 | </plugins> |
| 110 | </pluginManagement> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 111 | </build> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 112 | </project> |