blob: 49339c130e4696304a1d5f320a9f32957ed56c40 [file] [log] [blame]
Abdullah Alamoudi806f7d22016-07-23 18:02:55 +03001<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 Buab817482016-08-19 21:29:31 -07002 <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 Blowfbccee62016-10-26 12:18:30 -040014 <version>3.3.9</version>
Yingyi Buab817482016-08-19 21:29:31 -070015 </dependency>
16 <dependency>
17 <groupId>org.apache.maven</groupId>
18 <artifactId>maven-core</artifactId>
Michael Blowfbccee62016-10-26 12:18:30 -040019 <version>3.3.9</version>
Yingyi Buab817482016-08-19 21:29:31 -070020 </dependency>
21 <dependency>
22 <groupId>org.apache.maven</groupId>
23 <artifactId>maven-compat</artifactId>
Michael Blowfbccee62016-10-26 12:18:30 -040024 <version>3.3.9</version>
Yingyi Buab817482016-08-19 21:29:31 -070025 </dependency>
Abdullah Alamoudi806f7d22016-07-23 18:02:55 +030026 <!-- dependencies to annotations -->
Yingyi Buab817482016-08-19 21:29:31 -070027 <dependency>
28 <groupId>org.apache.maven.plugin-tools</groupId>
29 <artifactId>maven-plugin-annotations</artifactId>
Michael Blowfbccee62016-10-26 12:18:30 -040030 <version>3.5</version>
Yingyi Buab817482016-08-19 21:29:31 -070031 <scope>provided</scope>
32 </dependency>
33 <dependency>
Yingyi Buab817482016-08-19 21:29:31 -070034 <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 Blow599ef8f2017-01-12 11:02:53 -050050 <groupId>org.apache.hyracks</groupId>
51 <artifactId>algebricks-common</artifactId>
52 </dependency>
53 <dependency>
Yingyi Buab817482016-08-19 21:29:31 -070054 <groupId>org.apache.asterix</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -050055 <artifactId>asterix-common</artifactId>
Yingyi Buab817482016-08-19 21:29:31 -070056 <version>${project.version}</version>
57 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -050058 <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 Buab817482016-08-19 21:29:31 -070067 </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 Blow599ef8f2017-01-12 11:02:53 -050097 <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 Buab817482016-08-19 21:29:31 -0700108 </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 Alamoudi806f7d22016-07-23 18:02:55 +0300131</project>