1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2014 Hippo B.V. (http://www.onehippo.com) |
4 |
|
5 |
Licensed under the Apache License, Version 2.0 (the "License"); |
6 |
you may not use this file except in compliance with the License. |
7 |
You may obtain a copy of the License at |
8 |
|
9 |
http://www.apache.org/licenses/LICENSE-2.0 |
10 |
|
11 |
Unless required by applicable law or agreed to in writing, software |
12 |
distributed under the License is distributed on an "AS IS" |
13 |
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
See the License for the specific language governing permissions and |
15 |
limitations under the License. |
16 |
--><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"> |
17 |
<modelVersion>4.0.0</modelVersion> |
18 |
|
19 |
<parent> |
20 |
<groupId>com.onehippo.gogreen</groupId> |
21 |
<artifactId>hippogogreen</artifactId> |
22 |
<version>3.10.00-SNAPSHOT</version> |
23 |
</parent> |
24 |
|
25 |
<name>Hippo Go Green Launcher</name> |
26 |
<artifactId>hippogogreen-launcher</artifactId> |
27 |
<packaging>jar</packaging> |
28 |
|
29 |
<properties> |
30 |
<cargo.version>1.4.7</cargo.version> |
31 |
</properties> |
32 |
|
33 |
<dependencies> |
34 |
<dependency> |
35 |
<groupId>org.codehaus.cargo</groupId> |
36 |
<artifactId>cargo-core-uberjar</artifactId> |
37 |
<version>${cargo.version}</version> |
38 |
</dependency> |
39 |
<dependency> |
40 |
<groupId>commons-io</groupId> |
41 |
<artifactId>commons-io</artifactId> |
42 |
<version>2.4</version> |
43 |
</dependency> |
44 |
</dependencies> |
45 |
|
46 |
<build> |
47 |
<defaultGoal>package</defaultGoal> |
48 |
<plugins> |
49 |
<plugin> |
50 |
<artifactId>maven-assembly-plugin</artifactId> |
51 |
<executions> |
52 |
<execution> |
53 |
<goals> |
54 |
<goal>attached</goal> |
55 |
</goals> |
56 |
<phase>package</phase> |
57 |
<configuration> |
58 |
<descriptorRefs> |
59 |
<descriptorRef>jar-with-dependencies</descriptorRef> |
60 |
</descriptorRefs> |
61 |
<archive> |
62 |
<manifest> |
63 |
<mainClass>org.onehippo.cms7.launcher.Launcher</mainClass> |
64 |
</manifest> |
65 |
</archive> |
66 |
</configuration> |
67 |
</execution> |
68 |
</executions> |
69 |
</plugin> |
70 |
<plugin> |
71 |
<groupId>org.apache.maven.plugins</groupId> |
72 |
<artifactId>maven-compiler-plugin</artifactId> |
73 |
<configuration> |
74 |
<target>1.5</target> |
75 |
<source>1.5</source> |
76 |
</configuration> |
77 |
</plugin> |
78 |
|
79 |
</plugins> |
80 |
</build> |
81 |
</project> |