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 --> |
| 51 | <javacc-maven-plugin.version>2.6</javacc-maven-plugin.version> |
| 52 | <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 53 | |
| 54 | <!-- Test Dependencies --> |
| 55 | <junit.version>4.8.1</junit.version> |
| 56 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 57 | </properties> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 58 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 59 | <scm> |
André Rouél | 515c996 | 2013-02-20 08:33:17 +0100 | [diff] [blame] | 60 | <connection>scm:git:git://github.com/matozoid/javaparser.git</connection> |
| 61 | <developerConnection>scm:git:git@github.com:matozoid/javaparser.git</developerConnection> |
| 62 | <url>https://github.com/matozoid/javaparser.git</url> |
| 63 | <tag>HEAD</tag> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 64 | </scm> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 65 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 66 | <build> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 67 | <plugins> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-compiler-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 71 | <version>${maven-compiler-plugin.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 72 | <configuration> |
| 73 | <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ --> |
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 | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 78 | <plugin> |
| 79 | <groupId>org.codehaus.mojo</groupId> |
| 80 | <artifactId>javacc-maven-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 81 | <version>${javacc-maven-plugin.version}</version> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 82 | <executions> |
| 83 | <execution> |
| 84 | <id>javacc</id> |
| 85 | <goals> |
| 86 | <goal>javacc</goal> |
| 87 | </goals> |
| 88 | </execution> |
| 89 | </executions> |
| 90 | </plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 91 | </plugins> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 92 | <pluginManagement> |
| 93 | <plugins> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 94 | <!--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] | 95 | <plugin> |
| 96 | <groupId>org.eclipse.m2e</groupId> |
| 97 | <artifactId>lifecycle-mapping</artifactId> |
| 98 | <version>1.0.0</version> |
| 99 | <configuration> |
| 100 | <lifecycleMappingMetadata> |
| 101 | <pluginExecutions> |
| 102 | <pluginExecution> |
| 103 | <pluginExecutionFilter> |
| 104 | <groupId> |
| 105 | org.codehaus.mojo |
| 106 | </groupId> |
| 107 | <artifactId> |
| 108 | javacc-maven-plugin |
| 109 | </artifactId> |
| 110 | <versionRange> |
| 111 | [2.6,) |
| 112 | </versionRange> |
| 113 | <goals> |
| 114 | <goal>javacc</goal> |
| 115 | </goals> |
| 116 | </pluginExecutionFilter> |
| 117 | <action> |
| 118 | <ignore></ignore> |
| 119 | </action> |
| 120 | </pluginExecution> |
André Rouél | dab28cb | 2013-02-20 08:37:36 +0100 | [diff] [blame^] | 121 | <pluginExecution> |
| 122 | <pluginExecutionFilter> |
| 123 | <groupId>org.apache.maven.plugins</groupId> |
| 124 | <artifactId>maven-enforcer-plugin</artifactId> |
| 125 | <versionRange>[1.0.0,)</versionRange> |
| 126 | <goals> |
| 127 | <goal>enforce</goal> |
| 128 | </goals> |
| 129 | </pluginExecutionFilter> |
| 130 | <action> |
| 131 | <ignore /> |
| 132 | </action> |
| 133 | </pluginExecution> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 134 | </pluginExecutions> |
| 135 | </lifecycleMappingMetadata> |
| 136 | </configuration> |
| 137 | </plugin> |
| 138 | </plugins> |
| 139 | </pluginManagement> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 140 | </build> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 141 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 142 | <dependencies> |
| 143 | <dependency> |
| 144 | <groupId>junit</groupId> |
| 145 | <artifactId>junit</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 146 | <version>${junit.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 147 | <scope>test</scope> |
| 148 | </dependency> |
| 149 | </dependencies> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 150 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 151 | </project> |