[maven-release-plugin] prepare release releasepom-0.1.0
[controller.git] / opendaylight / commons / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.0</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>releasepom-0.1.0</tag>
15   </scm>
16
17   <artifactId>commons.integrationtest</artifactId>
18   <version>0.5.0</version>
19   <packaging>pom</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>equinoxSDK381</groupId>
24       <artifactId>org.eclipse.equinox.console</artifactId>
25       <version>1.0.0.v20120522-1841</version>
26     </dependency>
27     <dependency>
28       <groupId>equinoxSDK381</groupId>
29       <artifactId>org.eclipse.equinox.util</artifactId>
30       <version>1.0.400.v20120522-2049</version>
31     </dependency>
32     <dependency>
33       <groupId>equinoxSDK381</groupId>
34       <artifactId>org.eclipse.osgi.services</artifactId>
35       <version>3.3.100.v20120522-1822</version>
36     </dependency>
37     <dependency>
38       <groupId>equinoxSDK381</groupId>
39       <artifactId>org.eclipse.equinox.ds</artifactId>
40       <version>1.4.0.v20120522-1841</version>
41     </dependency>
42     <dependency>
43       <groupId>equinoxSDK381</groupId>
44       <artifactId>org.apache.felix.gogo.command</artifactId>
45       <version>0.8.0.v201108120515</version>
46     </dependency>
47     <dependency>
48       <groupId>equinoxSDK381</groupId>
49       <artifactId>org.apache.felix.gogo.runtime</artifactId>
50       <version>0.8.0.v201108120515</version>
51     </dependency>
52     <dependency>
53       <groupId>equinoxSDK381</groupId>
54       <artifactId>org.apache.felix.gogo.shell</artifactId>
55       <version>0.8.0.v201110170705</version>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.maven.plugins</groupId>
63         <artifactId>maven-surefire-plugin</artifactId>
64         <version>${surefire.version}</version>
65         <configuration>
66           <skipTests>true</skipTests>
67         </configuration>
68       </plugin>
69       <plugin>
70        <groupId>org.ops4j.pax.exam</groupId>
71        <artifactId>maven-paxexam-plugin</artifactId>
72        <version>1.2.4</version>
73         <executions>
74           <execution>
75             <id>generate-config</id>
76             <goals>
77               <goal>generate-depends-file</goal>
78             </goals>
79           </execution>
80         </executions>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-checkstyle-plugin</artifactId>
85         <version>${checkstyle.version}</version>
86         <dependencies>
87           <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>checkstyle</artifactId>
90             <version>0.0.1</version>
91           </dependency>
92          </dependencies>
93         <configuration>
94           <failsOnError>true</failsOnError>
95           <configLocation>controller/space_and_tabs_checks.xml</configLocation>
96         </configuration>
97       </plugin>
98       <plugin>
99         <groupId>org.codehaus.mojo</groupId>
100         <artifactId>properties-maven-plugin</artifactId>
101         <version>${propertymavenplugin.version}</version>
102         <executions>
103           <execution>
104             <goals>
105               <goal>set-system-properties</goal>
106             </goals>
107             <configuration>
108               <properties>
109                 <property>
110                   <name>logback.configurationFile</name>
111                   <value>${project.parent.parent.basedir}/logback.xml</value>
112                 </property>
113               </properties>
114             </configuration>
115           </execution>
116         </executions>
117       </plugin>
118     </plugins>
119   </build>
120 </project>