Fix deploy issue
[vfc/nfvo/wfengine.git] / winery / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 /*******************************************************************************
4  * Copyright (c) 2013 University of Stuttgart.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * and the Apache License 2.0 which both accompany this distribution,
8  * and are available at http://www.eclipse.org/legal/epl-v10.html
9  * and http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Contributors:
12  *    Tobias Unger - initial API and implementation and/or initial documentation
13  *    Oliver Kopp - refinements
14  *    Tobias Binz - Adds support for building fatJars (including all dependencies) and profile for fatJars
15  *******************************************************************************/
16 -->
17 <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/xsd/maven-4.0.0.xsd">
18         <modelVersion>4.0.0</modelVersion>
19         <parent>
20           <groupId>org.openo.oparent</groupId>
21           <artifactId>oparent</artifactId>
22           <version>1.0.0-SNAPSHOT</version>
23           <relativePath></relativePath>
24         </parent>
25         
26         <groupId>org.eclipse.winery</groupId>
27         <artifactId>winery</artifactId>
28         <version>0.1.37-SNAPSHOT</version>
29         <packaging>pom</packaging>
30         <name>Winery</name>
31         <description>Winery is a Web-based environment to graphically model TOSCA topologies and plans managing these topologies.</description>
32         <url>http://www.eclipse.org/winery</url>
33         <organization>
34                 <name>Eclipse.org - Winery Project</name>
35                 <url>http://www.eclipse.org/winery</url>
36         </organization>
37         <issueManagement>
38                 <system>bugzilla</system>
39                 <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Winery</url>
40         </issueManagement>
41         <inceptionYear>2012</inceptionYear>
42         <mailingLists>
43                 <mailingList>
44                         <name>Winery Developer List</name>
45                         <post>winery-dev@eclipse.org</post>
46                         <archive>http://dev.eclipse.org/mhonarc/lists/winery-dev</archive>
47                 </mailingList>
48         </mailingLists>
49         <licenses>
50                 <license>
51                         <name>Eclipse Public License v1.0</name>
52                         <url>http://www.eclipse.org/legal/epl-v10.html</url>
53                         <distribution>repo</distribution>
54                         <comments>Standard Eclipse Licence</comments>
55                 </license>
56                 <license>
57                         <name>Apache License, Version 2.0</name>
58                         <url>http://www.apache.org/licenses/LICENSE-2.0</url>
59                         <distribution>repo</distribution>
60                 </license>
61         </licenses>
62         
63         
64         <scm>
65                 <developerConnection>scm:git:http://git.eclipse.org/gitroot/winery/org.eclipse.winery.winery.git/</developerConnection>
66                 <tag>HEAD</tag>
67         </scm>
68     <prerequisites>
69         <maven>3.0.3</maven>
70     </prerequisites>
71         <modules>       
72                 <module>org.eclipse.winery.model.tosca</module>
73                 <module>org.eclipse.winery.model.csar.toscametafile</module>
74                 <module>org.eclipse.winery.model.selfservice</module>           
75                 <module>org.eclipse.winery.generators.ia</module>
76                 <module>org.eclipse.winery.common</module>
77                 <module>org.eclipse.winery.repository</module>
78                 <module>org.eclipse.winery.repository.client</module>
79                 <module>org.eclipse.winery.topologymodeler</module>
80         </modules>
81         <build>
82                 <plugins>
83                         <plugin>
84                                 <groupId>org.codehaus.mojo</groupId>
85                                 <artifactId>versions-maven-plugin</artifactId>
86                                 <version>2.1</version>
87                         </plugin>
88                         
89                         <plugin>            
90                 <artifactId>maven-checkstyle-plugin</artifactId>
91                             <configuration>
92                    <skip>true</skip>
93                </configuration>
94             </plugin>
95                 </plugins>
96                                 
97         </build>
98 </project>