Fix deploy issue
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.model.selfservice / pom.xml
1 <!--
2 /*******************************************************************************
3  * Copyright (c) 2013 University of Stuttgart.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * and the Apache License 2.0 which both accompany this distribution,
7  * and are available at http://www.eclipse.org/legal/epl-v10.html
8  * and http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Contributors:
11  *    Tobias Binz - initial API and implementation and/or initial documentation
12  *******************************************************************************/
13 -->
14 <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">
15         <modelVersion>4.0.0</modelVersion>
16         <parent>
17                 <groupId>org.eclipse.winery</groupId>
18                 <artifactId>winery</artifactId>
19                 <version>0.1.37-SNAPSHOT</version>
20         </parent>
21         
22         <groupId>org.eclipse.winery</groupId>
23         <artifactId>org.eclipse.winery.model.selfservice</artifactId>
24         <version>0.1.20-SNAPSHOT</version>
25         <properties>
26                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27         </properties>
28         <url>http://www.eclipse.org/winery</url>
29         <organization>
30                 <name>Eclipse.org - Winery Project</name>
31                 <url>http://www.eclipse.org/winery</url>
32         </organization>
33         <issueManagement>
34                 <system>bugzilla</system>
35                 <url>https://bugs.eclipse.org/bugs</url>
36         </issueManagement>
37         <inceptionYear>2012</inceptionYear>
38         <mailingLists>
39                 <mailingList>
40                         <name>Winery Developer List</name>
41                         <post>winery-dev@eclipse.org</post>
42                         <archive>http://dev.eclipse.org/mhonarc/lists/winery-dev</archive>
43                 </mailingList>
44         </mailingLists>
45         <licenses>
46                 <license>
47                         <name>Eclipse Public License v1.0</name>
48                         <url>http://www.eclipse.org/legal/epl-v10.html</url>
49                         <distribution>repo</distribution>
50                         <comments>Standard Eclipse Licence</comments>
51                 </license>
52                 <license>
53                         <name>Apache License, Version 2.0</name>
54                         <url>http://www.apache.org/licenses/LICENSE-2.0</url>
55                         <distribution>repo</distribution>
56                 </license>
57         </licenses>
58         <build>
59                 <extensions>
60                         <!-- Enabling the use of SFTP -->
61                         <extension>
62                                 <groupId>org.apache.maven.wagon</groupId>
63                                  <artifactId>wagon-ssh-external</artifactId>
64                                  <version>2.5</version>
65                         </extension>
66                 </extensions>
67                 <plugins>
68                         <plugin>
69                                 <groupId>org.apache.maven.plugins</groupId>
70                                 <artifactId>maven-compiler-plugin</artifactId>
71                                 <version>3.1</version>
72                                 <configuration>
73                                         <source>1.7</source>
74                                         <target>1.7</target>
75                                 </configuration>
76                         </plugin>
77                         <plugin>
78                                 <groupId>org.codehaus.mojo</groupId>
79                                 <artifactId>jaxb2-maven-plugin</artifactId>
80                                 <version>1.5</version>
81                                 <executions>
82                                         <execution>
83                                                 <phase>generate-sources</phase>
84                                                 <goals>
85                                                         <goal>xjc</goal>
86                                                 </goals>
87                                                 <configuration>
88                                                         <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
89                                                         <packageName>org.eclipse.winery.model.selfservice</packageName>
90                                                 </configuration>
91                                         </execution>
92                                 </executions>
93                         </plugin>
94                 </plugins>
95         </build>
96 </project>