Fix deploy issue
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.model.tosca / 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.tosca</artifactId>
24         <version>0.1.21-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                 <plugins>
60                         <plugin>
61                                 <groupId>org.apache.maven.plugins</groupId>
62                                 <artifactId>maven-compiler-plugin</artifactId>
63                                 <version>3.1</version>
64                                 <configuration>
65                                         <source>1.7</source>
66                                         <target>1.7</target>
67                                 </configuration>
68                         </plugin>
69                         <plugin>
70                                 <groupId>org.codehaus.mojo</groupId>
71                                 <artifactId>jaxb2-maven-plugin</artifactId>
72                                 <version>1.5</version>
73                                 <executions>
74                                         <execution>
75                                                 <phase>generate-sources</phase>
76                                                 <goals>
77                                                         <goal>xjc</goal>
78                                                 </goals>
79                                                 <configuration>
80                                                         <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
81                                                         <!--<schemaFiles>TOSCA-v1.0-cos01.xsd</schemaFiles>-->
82                                                         <packageName>org.eclipse.winery.model.tosca</packageName>
83                                                 </configuration>
84                                         </execution>
85                                 </executions>
86                         </plugin>
87                 </plugins>
88         </build>
89 </project>