blob: 5190bbb16dc5b730240e7f7de940d4af74f1831c [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>
24 <version>0.2.18-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>
30 <dependencies>
31 <dependency>
32 <groupId>org.apache.maven.plugin-tools</groupId>
33 <artifactId>maven-plugin-annotations</artifactId>
34 <version>3.5</version>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.maven</groupId>
38 <artifactId>maven-core</artifactId>
39 <version>3.3.9</version>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-remote-resources-plugin</artifactId>
44 <version>1.5</version>
45 </dependency>
46 <dependency>
Michael Blow1355c262017-01-04 16:23:31 -050047 <groupId>com.fasterxml.jackson.core</groupId>
48 <artifactId>jackson-databind</artifactId>
Michael Blow1355c262017-01-04 16:23:31 -050049 </dependency>
50 <dependency>
51 <groupId>org.freemarker</groupId>
52 <artifactId>freemarker</artifactId>
53 <version>2.3.23</version>
54 </dependency>
55 <dependency>
56 <groupId>commons-io</groupId>
57 <artifactId>commons-io</artifactId>
Michael Blow599ef8f2017-01-12 11:02:53 -050058 </dependency>
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-annotations</artifactId>
62 <version>2.8.0</version>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.maven</groupId>
66 <artifactId>maven-project</artifactId>
67 <version>2.2.1</version>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.maven</groupId>
71 <artifactId>maven-model</artifactId>
72 <version>3.3.9</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.commons</groupId>
76 <artifactId>commons-lang3</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.codehaus.plexus</groupId>
80 <artifactId>plexus-utils</artifactId>
81 <version>3.0.22</version>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.maven</groupId>
85 <artifactId>maven-artifact</artifactId>
86 <version>3.0</version>
Michael Blow1355c262017-01-04 16:23:31 -050087 </dependency>
88 </dependencies>
89
90</project>