matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 4 | |
André Rouél | dab28cb | 2013-02-20 08:37:36 +0100 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.sonatype.oss</groupId> |
| 7 | <artifactId>oss-parent</artifactId> |
| 8 | <version>7</version> |
| 9 | </parent> |
| 10 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 11 | <groupId>japa.javaparser</groupId> |
| 12 | <artifactId>javaparser</artifactId> |
| 13 | <packaging>jar</packaging> |
| 14 | <version>1.0.9-SNAPSHOT</version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 15 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 16 | <name>javaparser</name> |
| 17 | <url>http://code.google.com/p/javaparser/</url> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 18 | <inceptionYear>2007</inceptionYear> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 19 | <description>This package contains a Java 1.5 Parser with AST generation and visitor support. |
| 20 | The AST records the source code structure, javadoc and comments. Soon will be |
| 21 | possible change the AST nodes or create new ones to modify source code like refactoring. |
| 22 | 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] | 23 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 24 | <issueManagement> |
| 25 | <system>Google Code</system> |
| 26 | <url>http://code.google.com/p/javaparser/issues/list</url> |
| 27 | </issueManagement> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 28 | |
| 29 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 30 | <developers> |
| 31 | <developer> |
| 32 | <name>Júlio Vilmar Gesser</name> |
| 33 | <email>jgesser@gmail.com</email> |
| 34 | </developer> |
| 35 | </developers> |
| 36 | <contributors> |
| 37 | <contributor> |
| 38 | <name>Hendy Irawan</name> |
| 39 | <email>hendy@soluvas.com</email> |
| 40 | <url>http://www.HendyIrawan.com/</url> |
| 41 | <organization>Soluvas</organization> |
| 42 | <organizationUrl>http://www.Soluvas.com/</organizationUrl> |
| 43 | </contributor> |
| 44 | </contributors> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 45 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 46 | <properties> |
| 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 48 | <java.version>1.6</java.version> |
| 49 | |
| 50 | <!-- Maven Plugins --> |
André Rouél | ffeecba | 2013-02-20 08:46:04 +0100 | [diff] [blame^] | 51 | <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 52 | <javacc-maven-plugin.version>2.6</javacc-maven-plugin.version> |
| 53 | <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 54 | |
| 55 | <!-- Test Dependencies --> |
| 56 | <junit.version>4.8.1</junit.version> |
| 57 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 58 | </properties> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 59 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 60 | <scm> |
André Rouél | 515c996 | 2013-02-20 08:33:17 +0100 | [diff] [blame] | 61 | <connection>scm:git:git://github.com/matozoid/javaparser.git</connection> |
| 62 | <developerConnection>scm:git:git@github.com:matozoid/javaparser.git</developerConnection> |
| 63 | <url>https://github.com/matozoid/javaparser.git</url> |
| 64 | <tag>HEAD</tag> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 65 | </scm> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 66 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 67 | <build> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 68 | <plugins> |
| 69 | <plugin> |
André Rouél | ffeecba | 2013-02-20 08:46:04 +0100 | [diff] [blame^] | 70 | <groupId>org.codehaus.mojo</groupId> |
| 71 | <artifactId>build-helper-maven-plugin</artifactId> |
| 72 | <version>${build-helper-maven-plugin.version}</version> |
| 73 | <executions> |
| 74 | <execution> |
| 75 | <id>add-javacc-source</id> |
| 76 | <phase>generate-sources</phase> |
| 77 | <goals> |
| 78 | <goal>add-source</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <sources> |
| 82 | <source>src/main/javacc</source> |
| 83 | <source>target/generated-sources/javacc</source> |
| 84 | </sources> |
| 85 | </configuration> |
| 86 | </execution> |
| 87 | </executions> |
| 88 | </plugin> |
| 89 | <plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 90 | <groupId>org.apache.maven.plugins</groupId> |
| 91 | <artifactId>maven-compiler-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 92 | <version>${maven-compiler-plugin.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 93 | <configuration> |
| 94 | <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ --> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 95 | <source>${java.version}</source> |
| 96 | <target>${java.version}</target> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 97 | </configuration> |
| 98 | </plugin> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 99 | <plugin> |
| 100 | <groupId>org.codehaus.mojo</groupId> |
| 101 | <artifactId>javacc-maven-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 102 | <version>${javacc-maven-plugin.version}</version> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 103 | <executions> |
| 104 | <execution> |
| 105 | <id>javacc</id> |
| 106 | <goals> |
| 107 | <goal>javacc</goal> |
| 108 | </goals> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | </plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 112 | </plugins> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 113 | <pluginManagement> |
| 114 | <plugins> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 115 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 116 | <plugin> |
| 117 | <groupId>org.eclipse.m2e</groupId> |
| 118 | <artifactId>lifecycle-mapping</artifactId> |
| 119 | <version>1.0.0</version> |
| 120 | <configuration> |
| 121 | <lifecycleMappingMetadata> |
| 122 | <pluginExecutions> |
| 123 | <pluginExecution> |
| 124 | <pluginExecutionFilter> |
| 125 | <groupId> |
| 126 | org.codehaus.mojo |
| 127 | </groupId> |
| 128 | <artifactId> |
| 129 | javacc-maven-plugin |
| 130 | </artifactId> |
| 131 | <versionRange> |
| 132 | [2.6,) |
| 133 | </versionRange> |
| 134 | <goals> |
| 135 | <goal>javacc</goal> |
| 136 | </goals> |
| 137 | </pluginExecutionFilter> |
| 138 | <action> |
| 139 | <ignore></ignore> |
| 140 | </action> |
| 141 | </pluginExecution> |
André Rouél | dab28cb | 2013-02-20 08:37:36 +0100 | [diff] [blame] | 142 | <pluginExecution> |
| 143 | <pluginExecutionFilter> |
| 144 | <groupId>org.apache.maven.plugins</groupId> |
| 145 | <artifactId>maven-enforcer-plugin</artifactId> |
| 146 | <versionRange>[1.0.0,)</versionRange> |
| 147 | <goals> |
| 148 | <goal>enforce</goal> |
| 149 | </goals> |
| 150 | </pluginExecutionFilter> |
| 151 | <action> |
| 152 | <ignore /> |
| 153 | </action> |
| 154 | </pluginExecution> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 155 | </pluginExecutions> |
| 156 | </lifecycleMappingMetadata> |
| 157 | </configuration> |
| 158 | </plugin> |
| 159 | </plugins> |
| 160 | </pluginManagement> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 161 | </build> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 162 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 163 | <dependencies> |
| 164 | <dependency> |
| 165 | <groupId>junit</groupId> |
| 166 | <artifactId>junit</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 167 | <version>${junit.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 168 | <scope>test</scope> |
| 169 | </dependency> |
| 170 | </dependencies> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 171 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 172 | </project> |