blob: a7907a70c15c7be212856ed860f1d257c2072ae2 [file] [log] [blame]
Michael Blow1355c262017-01-04 16:23:31 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
19 !-->
20<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">
21 <parent>
Michael Blow43b40b62017-01-14 17:03:12 -050022 <groupId>org.apache.hyracks</groupId>
23 <artifactId>hyracks-maven-plugins</artifactId>
Ian Maxonc95de7a2020-08-07 11:58:39 -070024 <version>0.3.6-SNAPSHOT</version>
Michael Blow1355c262017-01-04 16:23:31 -050025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>maven-plugin</packaging>
28
29 <artifactId>license-automation-plugin</artifactId>
Dmitry Lychagin249be532017-05-31 14:57:14 -070030
31 <properties>
32 <root.dir>${basedir}/../../..</root.dir>
33 </properties>
34
Michael Blow1355c262017-01-04 16:23:31 -050035 <dependencies>
36 <dependency>
37 <groupId>org.apache.maven.plugin-tools</groupId>
38 <artifactId>maven-plugin-annotations</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -050039 <version>3.6.0</version>
Michael Blow1355c262017-01-04 16:23:31 -050040 </dependency>
41 <dependency>
42 <groupId>org.apache.maven</groupId>
43 <artifactId>maven-core</artifactId>
Michael Blow1355c262017-01-04 16:23:31 -050044 </dependency>
45 <dependency>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-remote-resources-plugin</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -050048 <version>1.6.0</version>
Michael Blow1355c262017-01-04 16:23:31 -050049 </dependency>
50 <dependency>
Michael Blow1355c262017-01-04 16:23:31 -050051 <groupId>com.fasterxml.jackson.core</groupId>
52 <artifactId>jackson-databind</artifactId>
Michael Blow1355c262017-01-04 16:23:31 -050053 </dependency>
54 <dependency>
55 <groupId>org.freemarker</groupId>
56 <artifactId>freemarker</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -050057 <version>2.3.29</version>
Michael Blow1355c262017-01-04 16:23:31 -050058 </dependency>
59 <dependency>
60 <groupId>commons-io</groupId>
61 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050062 </dependency>
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-annotations</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050066 </dependency>
67 <dependency>
68 <groupId>org.apache.maven</groupId>
69 <artifactId>maven-project</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050070 </dependency>
71 <dependency>
72 <groupId>org.apache.maven</groupId>
73 <artifactId>maven-model</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050074 </dependency>
75 <dependency>
76 <groupId>org.apache.commons</groupId>
77 <artifactId>commons-lang3</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.codehaus.plexus</groupId>
81 <artifactId>plexus-utils</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -050082 <version>3.1.0</version>
Michael Blow599ef8f2017-01-12 11:02:53 -050083 </dependency>
84 <dependency>
85 <groupId>org.apache.maven</groupId>
86 <artifactId>maven-artifact</artifactId>
Michael Blow1355c262017-01-04 16:23:31 -050087 </dependency>
Michael Blow62249662017-01-24 14:22:47 -050088 <dependency>
89 <groupId>org.apache.maven</groupId>
90 <artifactId>maven-compat</artifactId>
Michael Blow62249662017-01-24 14:22:47 -050091 </dependency>
Michael Blow64061792018-04-13 21:13:44 -040092 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>hyracks-util</artifactId>
95 <version>${project.version}</version>
96 </dependency>
Michael Blow1355c262017-01-04 16:23:31 -050097 </dependencies>
98
Michael Blowbd7ba452018-10-31 15:08:26 -040099</project>