forked from nuxeo/nuxeo-drive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom-debian.xml
62 lines (57 loc) · 2.24 KB
/
pom-debian.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<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>
<parent>
<groupId>org.nuxeo</groupId>
<artifactId>nuxeo-addons-parent</artifactId>
<version>7.1-SNAPSHOT</version>
</parent>
<groupId>org.nuxeo.packaging</groupId>
<artifactId>nuxeo-drive-client-debian</artifactId>
<packaging>pom</packaging>
<name>Nuxeo Drive Client Debian package</name>
<description>Generate .deb package for the Nuxeo Drive client</description>
<url>http://www.nuxeo.com/en/products</url>
<organization>
<name>Nuxeo SA</name>
<url>http://www.nuxeo.com</url>
</organization>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
<url>http://www.gnu.org/copyleft/lesser.txt</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.nuxeo.build</groupId>
<artifactId>nuxeo-distribution-tools</artifactId>
<version>1.11</version>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<buildFile>${basedir}/debian.xml</buildFile>
<target>package</target>
</configuration>
</execution>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<buildFile>${basedir}/debian.xml</buildFile>
<target>deploy</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>