| <!-- |
| ! Licensed to the Apache Software Foundation (ASF) under one |
| ! or more contributor license agreements. See the NOTICE file |
| ! distributed with this work for additional information |
| ! regarding copyright ownership. The ASF licenses this file |
| ! to you under the Apache License, Version 2.0 (the |
| ! "License"); you may not use this file except in compliance |
| ! with the License. You may obtain a copy of the License at |
| ! |
| ! http://www.apache.org/licenses/LICENSE-2.0 |
| ! |
| ! Unless required by applicable law or agreed to in writing, |
| ! software distributed under the License is distributed on an |
| ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| ! KIND, either express or implied. See the License for the |
| ! specific language governing permissions and limitations |
| ! under the License. |
| !--> |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>asterix-client-helper</artifactId> |
| <parent> |
| <groupId>org.apache.asterix</groupId> |
| <artifactId>apache-asterixdb</artifactId> |
| <version>0.9.4-SNAPSHOT</version> |
| </parent> |
| <properties> |
| <root.dir>${basedir}/..</root.dir> |
| </properties> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>appassembler-maven-plugin</artifactId> |
| <configuration> |
| <assembleDirectory> |
| ${project.build.directory}/appassembler |
| </assembleDirectory> |
| <repositoryLayout>flat</repositoryLayout> |
| <repositoryName>lib</repositoryName> |
| <useWildcardClassPath>false</useWildcardClassPath> |
| <programs> |
| <program> |
| <platforms> |
| <platform>unix</platform> |
| <platform>windows</platform> |
| </platforms> |
| <name>asterixhelper</name> |
| <mainClass>org.apache.asterix.clienthelper.AsterixHelper</mainClass> |
| </program> |
| </programs> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>assemble</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>license-automation-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <templateRootDir>${basedir}/../../</templateRootDir> |
| <location>repo/</location> |
| <licenseMapOutputFile>${project.build.directory}/generated-resources/license_map.json</licenseMapOutputFile> |
| <excludes> |
| <exclude>org.apache.asterix:*</exclude> |
| <exclude>org.apache.algebricks:*</exclude> |
| <exclude>org.apache.hyracks:*</exclude> |
| </excludes> |
| <licenseDirectory>${basedir}/../src/main/licenses/content</licenseDirectory> |
| <models> |
| <model>${basedir}/../src/main/appended-resources/supplemental-models.xml</model> |
| </models> |
| <overrides> |
| <override> |
| <gav>org.codehaus.mojo.appassembler:appassembler-booter:2.0.0</gav> |
| <url>https://raw.githubusercontent.com/mojohaus/appassembler/appassembler-2.0.0/LICENSE.txt</url> |
| </override> |
| <override> |
| <gav>org.codehaus.mojo.appassembler:appassembler-model:2.0.0</gav> |
| <url>https://raw.githubusercontent.com/mojohaus/appassembler/appassembler-2.0.0/LICENSE.txt</url> |
| </override> |
| </overrides> |
| <licenses> |
| <license> |
| <url>https://raw.githubusercontent.com/mojohaus/appassembler/master/LICENSE.txt</url> |
| <aliasUrls>https://raw.githubusercontent.com/mojohaus/appassembler/appassembler-2.0.0/LICENSE.txt</aliasUrls> |
| </license> |
| <license> |
| <url>https://java.net/projects/stax-utils/sources/svn/content/trunk/LICENSE</url> |
| <contentFile>stax-utils_LICENSE.txt</contentFile> |
| <displayName>a BSD-style License</displayName> |
| <aliasUrls> |
| <aliasUrl>https://stax-utils.dev.java.net/source/browse/*checkout*/stax-utils/LICENSE</aliasUrl> |
| </aliasUrls> |
| </license> |
| </licenses> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <executions> |
| <execution> |
| <configuration> |
| <attach>true</attach> |
| <descriptors> |
| <descriptor>src/main/assembly/assembly.xml</descriptor> |
| </descriptors> |
| </configuration> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <configuration> |
| <usedDependencies combine.children="append"> |
| <usedDependency>org.codehaus.mojo.appassembler:appassembler-booter</usedDependency> |
| </usedDependencies> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.m2e</groupId> |
| <artifactId>lifecycle-mapping</artifactId> |
| <version>1.0.0</version> |
| <configuration> |
| <lifecycleMappingMetadata> |
| <pluginExecutions> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>license-automation-plugin</artifactId> |
| <versionRange>[0.0,)</versionRange> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore /> |
| </action> |
| </pluginExecution> |
| </pluginExecutions> |
| </lifecycleMappingMetadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>args4j</groupId> |
| <artifactId>args4j</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.mojo.appassembler</groupId> |
| <artifactId>appassembler-booter</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| </dependency> |
| </dependencies> |
| </project> |