-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
44 lines (41 loc) · 1.28 KB
/
pom.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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.mekomsolutions</groupId>
<artifactId>odoo-config-c2c</artifactId>
<name>C2C Odoo config</name>
<description>Odoo configuration for the C2C distribution</description>
<version>1.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<developers>
<developer>
<name>Mekom Solutions</name>
</developer>
</developers>
<organization>
<name>Mekom Solutions</name>
<url>http://www.mekomsolutions.com</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-package</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>