SingleFeatureTest java.security.egd /dev/urandom
[odlparent.git] / features-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>1.8.0-SNAPSHOT</version>
17         <relativePath>../bundle-parent</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>features-test</artifactId>
22     <packaging>bundle</packaging>
23     <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25     <dependencies>
26         <!-- Dependencies for pax exam karaf container -->
27         <dependency>
28             <groupId>org.ops4j.pax.exam</groupId>
29             <artifactId>pax-exam-container-karaf</artifactId>
30             <scope>compile</scope>
31         </dependency>
32         <dependency>
33             <groupId>org.ops4j.pax.exam</groupId>
34             <artifactId>pax-exam-junit4</artifactId>
35             <scope>compile</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.ops4j.pax.exam</groupId>
39             <artifactId>pax-exam</artifactId>
40             <scope>compile</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.ops4j.pax.url</groupId>
44             <artifactId>pax-url-aether</artifactId>
45             <scope>compile</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.maven.wagon</groupId>
49             <artifactId>wagon-http</artifactId>
50             <version>2.10</version>
51             <scope>compile</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.karaf.features</groupId>
55             <artifactId>org.apache.karaf.features.core</artifactId>
56             <version>${karaf.version}</version>
57             <scope>compile</scope>
58         </dependency>
59         <dependency>
60             <groupId>junit</groupId>
61             <artifactId>junit</artifactId>
62             <scope>compile</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.karaf.deployer</groupId>
66             <artifactId>org.apache.karaf.deployer.blueprint</artifactId>
67             <version>${karaf.version}</version>
68             <scope>compile</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.apache.karaf.deployer</groupId>
72             <artifactId>org.apache.karaf.deployer.features</artifactId>
73             <version>${karaf.version}</version>
74             <scope>compile</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.karaf.deployer</groupId>
78             <artifactId>org.apache.karaf.deployer.spring</artifactId>
79             <version>${karaf.version}</version>
80             <scope>compile</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.ops4j.pax.url</groupId>
84             <artifactId>pax-url-wrap</artifactId>
85             <scope>compile</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-api</artifactId>
90             <scope>compile</scope>
91         </dependency>
92         <dependency>
93             <groupId>com.google.guava</groupId>
94             <artifactId>guava</artifactId>
95             <scope>compile</scope>
96         </dependency>
97         <dependency>
98             <groupId>javax.inject</groupId>
99             <artifactId>javax.inject</artifactId>
100             <version>1</version>
101             <scope>compile</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.osgi</groupId>
105             <artifactId>org.osgi.core</artifactId>
106             <scope>compile</scope>
107         </dependency>
108     </dependencies>
109
110     <build>
111         <resources>
112             <resource>
113                 <directory>src/main/resources</directory>
114                 <filtering>true</filtering>
115             </resource>
116         </resources>
117         <plugins>
118             <plugin>
119                 <groupId>org.apache.felix</groupId>
120                 <artifactId>maven-bundle-plugin</artifactId>
121             </plugin>
122             <plugin>
123                 <artifactId>maven-checkstyle-plugin</artifactId>
124                 <configuration>
125                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
126                 </configuration>
127                 <executions>
128                     <execution>
129                         <id>check-license</id>
130                         <configuration>
131                             <excludes>
132                                 <!-- Skip Apache Licensed files -->
133                                 org/opendaylight/odlparent/featuretest/CustomBundleUrlStreamHandlerFactory.java
134                             </excludes>
135                         </configuration>
136                     </execution>
137                 </executions>
138             </plugin>
139         </plugins>
140     </build>
141
142   <!--
143     Maven Site Configuration
144
145     The following configuration is necessary for maven-site-plugin to
146     correctly identify the correct deployment path for OpenDaylight Maven
147     sites.
148   -->
149   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
150
151   <distributionManagement>
152     <site>
153       <id>opendaylight-site</id>
154       <url>${nexus.site.url}/${project.artifactId}/</url>
155     </site>
156   </distributionManagement>
157 </project>