blob: 60e9940469d623639907d864fb0c43aa41524524 [file] [log] [blame]
Till Westmann0d31d5c2013-09-28 21:59:14 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
15<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">
16 <modelVersion>4.0.0</modelVersion>
17 <groupId>edu.uci.ics.asterix</groupId>
18 <artifactId>record-manager-generator-maven-plugin</artifactId>
19 <parent>
20 <artifactId>asterix-maven-plugins</artifactId>
21 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070022 <version>0.8.7-SNAPSHOT</version>
Till Westmann0d31d5c2013-09-28 21:59:14 -070023 </parent>
24
25 <packaging>maven-plugin</packaging>
26 <name>record-manager-generator-maven-plugin</name>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070033 <version>2.3.2</version>
Till Westmann0d31d5c2013-09-28 21:59:14 -070034 <configuration>
35 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42
43 <dependencies>
44 <dependency>
Till Westmann0d31d5c2013-09-28 21:59:14 -070045 <groupId>org.apache.maven</groupId>
46 <artifactId>maven-plugin-api</artifactId>
Till Westmann0d31d5c2013-09-28 21:59:14 -070047 </dependency>
Till Westmann7b1b22a2013-11-04 11:21:30 -080048 <dependency>
49 <groupId>org.apache.maven</groupId>
50 <artifactId>maven-artifact</artifactId>
Ian18997ce2014-09-22 16:14:39 -070051 <version>2.2.1</version>
Till Westmann7b1b22a2013-11-04 11:21:30 -080052 </dependency>
53 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-project</artifactId>
Ian18997ce2014-09-22 16:14:39 -070056 <version>2.2.1</version>
Till Westmann7b1b22a2013-11-04 11:21:30 -080057 </dependency>
58 <dependency>
59 <groupId>org.json</groupId>
60 <artifactId>json</artifactId>
Till Westmann7b1b22a2013-11-04 11:21:30 -080061 <type>jar</type>
62 </dependency>
Till Westmann0d31d5c2013-09-28 21:59:14 -070063 </dependencies>
64</project>