Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame^] | 1 | <!-- |
| 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> |
| 25 | <version>0.8.9-SNAPSHOT</version> |
| 26 | </parent> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.codehaus.mojo</groupId> |
| 31 | <artifactId>appassembler-maven-plugin</artifactId> |
| 32 | <version>1.3</version> |
| 33 | <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> |
| 49 | <daemons/> |
| 50 | </configuration> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <goals> |
| 54 | <goal>assemble</goal> |
| 55 | <goal>generate-daemons</goal> |
| 56 | </goals> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
| 60 | <plugin> |
| 61 | <artifactId>maven-assembly-plugin</artifactId> |
| 62 | <version>2.6</version> |
| 63 | <executions> |
| 64 | <execution> |
| 65 | <configuration> |
| 66 | <attach>true</attach> |
| 67 | <descriptor>src/main/assembly/assembly.xml</descriptor> |
| 68 | </configuration> |
| 69 | <phase>package</phase> |
| 70 | <goals> |
| 71 | <goal>single</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
| 76 | </plugins> |
| 77 | </build> |
| 78 | <dependencies> |
| 79 | <dependency> |
| 80 | <groupId>args4j</groupId> |
| 81 | <artifactId>args4j</artifactId> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>javax.servlet</groupId> |
| 85 | <artifactId>javax.servlet-api</artifactId> |
| 86 | </dependency> |
| 87 | </dependencies> |
| 88 | </project> |