blob: defb488428504d9e40d29fcaf2e4189467ccc0ce [file] [log] [blame]
Michael Blow6214f6f2016-08-31 03:03:00 -04001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
19<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">
20 <modelVersion>4.0.0</modelVersion>
21 <artifactId>asterix-client-helper</artifactId>
22 <parent>
23 <groupId>org.apache.asterix</groupId>
24 <artifactId>apache-asterixdb</artifactId>
Ian Maxoneaa20732017-01-17 12:31:26 -080025 <version>0.8.9-SNAPSHOT</version>
Michael Blow6214f6f2016-08-31 03:03:00 -040026 </parent>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>appassembler-maven-plugin</artifactId>
Michael Blow8ed62562016-09-02 13:23:09 -040032 <version>1.10</version>
Michael Blow6214f6f2016-08-31 03:03:00 -040033 <configuration>
34 <assembleDirectory>
35 ${project.build.directory}/appassembler
36 </assembleDirectory>
37 <repositoryLayout>flat</repositoryLayout>
38 <repositoryName>lib</repositoryName>
39 <useWildcardClassPath>false</useWildcardClassPath>
40 <programs>
41 <program>
42 <platforms>
43 <platform>unix</platform>
44 </platforms>
45 <name>asterixhelper</name>
46 <mainClass>org.apache.asterix.clienthelper.AsterixHelper</mainClass>
47 </program>
48 </programs>
Michael Blow8ed62562016-09-02 13:23:09 -040049 <daemons>
50 <daemon>
51 <id>asterixhelper</id>
52 <mainClass>org.apache.asterix.clienthelper.AsterixHelper</mainClass>
53 <platforms>
54 <platform>booter-windows</platform>
55 </platforms>
56 </daemon>
57 </daemons>
Michael Blow6214f6f2016-08-31 03:03:00 -040058 </configuration>
59 <executions>
60 <execution>
61 <goals>
62 <goal>assemble</goal>
63 <goal>generate-daemons</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
Michael Blowb29bd732017-01-16 11:44:39 -050069 <groupId>org.apache.hyracks</groupId>
70 <artifactId>license-automation-plugin</artifactId>
71 <version>${hyracks.version}</version>
72 <executions>
73 <execution>
74 <phase>generate-resources</phase>
75 <goals>
76 <goal>generate</goal>
77 </goals>
78 </execution>
79 </executions>
80 <configuration>
81 <templateRootDir>${basedir}/../../</templateRootDir>
82 <generatedFiles>
83 <generatedFile>
84 <template>asterixdb/src/main/licenses/templates/asterix-license.ftl</template>
85 <outputFile>LICENSE</outputFile>
86 </generatedFile>
87 </generatedFiles>
88 <location>repo/</location>
89 <licenseMapOutputFile>${project.build.directory}/generated-resources/license_map.json</licenseMapOutputFile>
90 <excludes>
91 <exclude>org.apache.asterix:*</exclude>
92 <exclude>org.apache.algebricks:*</exclude>
93 <exclude>org.apache.hyracks:*</exclude>
94 </excludes>
95 <licenseDirectory>${basedir}/../src/main/licenses/content</licenseDirectory>
96 <models>
97 <model>${basedir}/../src/main/appended-resources/supplemental-models.xml</model>
98 </models>
99 <licenses>
100 <license>
101 <url>https://raw.githubusercontent.com/mojohaus/appassembler/master/LICENSE.txt</url>
102 <aliasUrls>http://svn.codehaus.org/mojo/trunk/mojo/appassembler/LICENSE.txt</aliasUrls>
103 </license>
104 <license>
105 <url>https://java.net/projects/stax-utils/sources/svn/content/trunk/LICENSE</url>
106 <contentFile>stax-utils_LICENSE.txt</contentFile>
107 <displayName>a BSD-style License</displayName>
108 <aliasUrls>
109 <aliasUrl>https://stax-utils.dev.java.net/source/browse/*checkout*/stax-utils/LICENSE</aliasUrl>
110 </aliasUrls>
111 </license>
112 </licenses>
113 </configuration>
114 </plugin>
115 <plugin>
Michael Blow6214f6f2016-08-31 03:03:00 -0400116 <artifactId>maven-assembly-plugin</artifactId>
117 <version>2.6</version>
118 <executions>
119 <execution>
120 <configuration>
121 <attach>true</attach>
122 <descriptor>src/main/assembly/assembly.xml</descriptor>
123 </configuration>
124 <phase>package</phase>
125 <goals>
126 <goal>single</goal>
127 </goals>
128 </execution>
129 </executions>
130 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-dependency-plugin</artifactId>
134 <version>2.10</version>
135 <configuration>
136 <usedDependencies>
137 <usedDependency>org.codehaus.mojo.appassembler:appassembler-booter</usedDependency>
138 <usedDependency>javax.servlet:javax.servlet-api</usedDependency>
139 </usedDependencies>
140 </configuration>
141 </plugin>
Michael Blow6214f6f2016-08-31 03:03:00 -0400142 </plugins>
143 </build>
144 <dependencies>
145 <dependency>
146 <groupId>args4j</groupId>
147 <artifactId>args4j</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>javax.servlet</groupId>
151 <artifactId>javax.servlet-api</artifactId>
152 </dependency>
Michael Blow8ed62562016-09-02 13:23:09 -0400153 <dependency>
154 <groupId>org.codehaus.mojo.appassembler</groupId>
155 <artifactId>appassembler-booter</artifactId>
156 <version>1.10</version>
Michael Blow02291e42016-10-18 13:22:04 -0400157 <exclusions>
158 <exclusion>
159 <groupId>junit</groupId>
160 <artifactId>junit</artifactId>
161 </exclusion>
162 </exclusions>
Michael Blow8ed62562016-09-02 13:23:09 -0400163 </dependency>
Michael Blowfdcf0552016-09-25 22:18:27 -0400164 <dependency>
165 <groupId>commons-io</groupId>
166 <artifactId>commons-io</artifactId>
Michael Blowfdcf0552016-09-25 22:18:27 -0400167 </dependency>
168 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800169 <groupId>com.fasterxml.jackson.core</groupId>
170 <artifactId>jackson-databind</artifactId>
171 </dependency>
Michael Blow6214f6f2016-08-31 03:03:00 -0400172 </dependencies>
173</project>