Use released 1.5.2 CCSDK parent
[ccsdk/sli/core.git] / features / ccsdk-filters / 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
5         <parent>
6                 <groupId>org.onap.ccsdk.parent</groupId>
7                 <artifactId>single-feature-parent</artifactId>
8                 <version>1.5.2</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.ccsdk.sli.core</groupId>
13         <artifactId>ccsdk-filters</artifactId>
14         <version>0.7.1-SNAPSHOT</version>
15         <packaging>feature</packaging>
16
17         <name>ccsdk-sli-core :: filters :: ${project.artifactId}</name>
18
19         <dependencies>
20                 <dependency>
21                         <groupId>${project.groupId}</groupId>
22                         <artifactId>filters-provider</artifactId>
23                         <version>${project.version}</version>
24                 </dependency>
25         </dependencies>
26
27         <build>
28                 <plugins>
29                         <plugin>
30                                 <groupId>org.apache.karaf.tooling</groupId>
31                                 <artifactId>karaf-maven-plugin</artifactId>
32                                 <extensions>true</extensions>
33                                 <configuration>
34                                         <excludedArtifactIds>
35                                                 <!-- let opendaylight start these features/jars to avoid conflicts at runtime -->
36                                                 <excludedArtifactId>slf4j-api</excludedArtifactId>
37                                                 <excludedArtifactId>javax.annotation-api</excludedArtifactId>
38                                                 <excludedArtifactId>javax.servlet-api</excludedArtifactId>
39                                                 <excludedArtifactId>javax.ws.rs-api</excludedArtifactId>
40                                         </excludedArtifactIds>
41                                 </configuration>
42                         </plugin>
43                 </plugins>
44         </build>
45
46 </project>