1 |
bvdschans |
23731 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
|
|
<!-- |
3 |
uhommes |
44369 |
Copyright 2014 Hippo B.V. (http://www.onehippo.com) |
4 |
bvdschans |
23731 |
|
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 |
abanck |
47034 |
<version>3.10.00-restyling-SNAPSHOT</version> |
23 |
bvdschans |
23731 |
</parent> |
24 |
|
|
|
25 |
uhommes |
44369 |
<name>Hippo Go Green Launcher</name> |
26 |
|
|
<artifactId>hippogogreen-launcher</artifactId> |
27 |
mdenburger |
27508 |
<packaging>jar</packaging> |
28 |
bvdschans |
23731 |
|
29 |
uhommes |
44369 |
<properties> |
30 |
|
|
<cargo.version>1.4.7</cargo.version> |
31 |
|
|
</properties> |
32 |
|
|
|
33 |
nduvvuri |
26682 |
<dependencies> |
34 |
|
|
<dependency> |
35 |
uhommes |
44369 |
<groupId>org.codehaus.cargo</groupId> |
36 |
|
|
<artifactId>cargo-core-uberjar</artifactId> |
37 |
|
|
<version>${cargo.version}</version> |
38 |
nduvvuri |
26682 |
</dependency> |
39 |
meggermont |
44428 |
<dependency> |
40 |
|
|
<groupId>commons-io</groupId> |
41 |
|
|
<artifactId>commons-io</artifactId> |
42 |
|
|
<version>2.4</version> |
43 |
|
|
</dependency> |
44 |
uhommes |
44369 |
</dependencies> |
45 |
nduvvuri |
26682 |
|
46 |
|
|
<build> |
47 |
|
|
<defaultGoal>package</defaultGoal> |
48 |
uhommes |
44369 |
<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 |
abanck |
44607 |
<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 |
uhommes |
44369 |
</plugins> |
80 |
nduvvuri |
26682 |
</build> |
81 |
bvdschans |
23731 |
</project> |