Abdullah Alamoudi | 806f7d2 | 2016-07-23 18:02:55 +0300 | [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/xsd/maven-4.0.0.xsd"> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <groupId>org.apache.asterix</groupId> |
| 5 | <artifactId>asterix-maven-plugins</artifactId> |
| 6 | <version>0.8.9-SNAPSHOT</version> |
| 7 | </parent> |
| 8 | <artifactId>asterix-grammar-extension-maven-plugin</artifactId> |
| 9 | <packaging>maven-plugin</packaging> |
| 10 | <dependencies> |
| 11 | <dependency> |
| 12 | <groupId>org.apache.maven</groupId> |
| 13 | <artifactId>maven-plugin-api</artifactId> |
Michael Blow | fbccee6 | 2016-10-26 12:18:30 -0400 | [diff] [blame] | 14 | <version>3.3.9</version> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 15 | </dependency> |
| 16 | <dependency> |
| 17 | <groupId>org.apache.maven</groupId> |
| 18 | <artifactId>maven-core</artifactId> |
Michael Blow | fbccee6 | 2016-10-26 12:18:30 -0400 | [diff] [blame] | 19 | <version>3.3.9</version> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.apache.maven</groupId> |
| 23 | <artifactId>maven-compat</artifactId> |
Michael Blow | fbccee6 | 2016-10-26 12:18:30 -0400 | [diff] [blame] | 24 | <version>3.3.9</version> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 25 | </dependency> |
Abdullah Alamoudi | 806f7d2 | 2016-07-23 18:02:55 +0300 | [diff] [blame] | 26 | <!-- dependencies to annotations --> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 27 | <dependency> |
| 28 | <groupId>org.apache.maven.plugin-tools</groupId> |
| 29 | <artifactId>maven-plugin-annotations</artifactId> |
Michael Blow | fbccee6 | 2016-10-26 12:18:30 -0400 | [diff] [blame] | 30 | <version>3.5</version> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 31 | <scope>provided</scope> |
| 32 | </dependency> |
| 33 | <dependency> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 34 | <groupId>org.apache.asterix</groupId> |
| 35 | <artifactId>asterix-external-data</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.maven.plugin-testing</groupId> |
| 40 | <artifactId>maven-plugin-testing-harness</artifactId> |
| 41 | <version>3.3.0</version> |
| 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.asterix</groupId> |
| 46 | <artifactId>asterix-lang-common</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame^] | 50 | <groupId>org.apache.hyracks</groupId> |
| 51 | <artifactId>algebricks-common</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 54 | <groupId>org.apache.asterix</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame^] | 55 | <artifactId>asterix-common</artifactId> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 56 | <version>${project.version}</version> |
| 57 | </dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame^] | 58 | <dependency> |
| 59 | <groupId>org.apache.commons</groupId> |
| 60 | <artifactId>commons-lang3</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>junit</groupId> |
| 64 | <artifactId>junit</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 67 | </dependencies> |
| 68 | <build> |
| 69 | <plugins> |
| 70 | <plugin> |
| 71 | <groupId>org.codehaus.mojo</groupId> |
| 72 | <artifactId>javacc-maven-plugin</artifactId> |
| 73 | <version>2.6</version> |
| 74 | <executions> |
| 75 | <execution> |
| 76 | <id>javacc</id> |
| 77 | <goals> |
| 78 | <goal>javacc</goal> |
| 79 | </goals> |
| 80 | <phase>verify</phase> |
| 81 | <configuration> |
| 82 | <isStatic>false</isStatic> |
| 83 | <javaUnicodeEscape>true</javaUnicodeEscape> |
| 84 | <sourceDirectory>${project.build.directory}/generated-sources/lang</sourceDirectory> |
| 85 | <outputDirectory>${project.build.directory}/generated-sources/javacc</outputDirectory> |
| 86 | </configuration> |
| 87 | </execution> |
| 88 | <execution> |
| 89 | <id>javacc-jjdoc</id> |
| 90 | <goals> |
| 91 | <goal>jjdoc</goal> |
| 92 | </goals> |
| 93 | <phase>verify</phase> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame^] | 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-dependency-plugin</artifactId> |
| 100 | <version>2.10</version> |
| 101 | <configuration> |
| 102 | <usedDependencies> |
| 103 | <usedDependency>org.apache.maven:maven-core</usedDependency> |
| 104 | <usedDependency>org.apache.maven:maven-compat</usedDependency> |
| 105 | </usedDependencies> |
| 106 | </configuration> |
| 107 | </plugin> |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 108 | </plugins> |
| 109 | <pluginManagement> |
| 110 | <plugins> |
| 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
| 113 | <artifactId>maven-plugin-plugin</artifactId> |
| 114 | <version>3.3</version> |
| 115 | <configuration> |
| 116 | <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
| 117 | </configuration> |
| 118 | <executions> |
| 119 | <execution> |
| 120 | <id>mojo-descriptor</id> |
| 121 | <phase>process-classes</phase> |
| 122 | <goals> |
| 123 | <goal>descriptor</goal> |
| 124 | </goals> |
| 125 | </execution> |
| 126 | </executions> |
| 127 | </plugin> |
| 128 | </plugins> |
| 129 | </pluginManagement> |
| 130 | </build> |
Abdullah Alamoudi | 806f7d2 | 2016-07-23 18:02:55 +0300 | [diff] [blame] | 131 | </project> |