blob: a078d169644a7d2a12251ea8fe77f211d1c9fdc5 [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>
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>
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>
69 <artifactId>maven-assembly-plugin</artifactId>
70 <version>2.6</version>
71 <executions>
72 <execution>
73 <configuration>
74 <attach>true</attach>
75 <descriptor>src/main/assembly/assembly.xml</descriptor>
76 </configuration>
77 <phase>package</phase>
78 <goals>
79 <goal>single</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86 <dependencies>
87 <dependency>
88 <groupId>args4j</groupId>
89 <artifactId>args4j</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>javax.servlet</groupId>
93 <artifactId>javax.servlet-api</artifactId>
94 </dependency>
Michael Blow8ed62562016-09-02 13:23:09 -040095 <dependency>
96 <groupId>org.codehaus.mojo.appassembler</groupId>
97 <artifactId>appassembler-booter</artifactId>
98 <version>1.10</version>
99 </dependency>
Michael Blowfdcf0552016-09-25 22:18:27 -0400100 <dependency>
101 <groupId>commons-io</groupId>
102 <artifactId>commons-io</artifactId>
Michael Blowfdcf0552016-09-25 22:18:27 -0400103 </dependency>
104 <dependency>
105 <groupId>org.json</groupId>
106 <artifactId>json</artifactId>
Michael Blowfdcf0552016-09-25 22:18:27 -0400107 </dependency>
Michael Blow6214f6f2016-08-31 03:03:00 -0400108 </dependencies>
109</project>