Remove slf4j dependencies oofpcipoc consumer pom
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / consumer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5         <modelVersion>4.0.0</modelVersion>
6
7         <parent>
8                 <groupId>org.onap.ccsdk.parent</groupId>
9                 <artifactId>binding-parent</artifactId>
10                 <version>1.3.0-SNAPSHOT</version>
11                 <relativePath />
12         </parent>
13
14         <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
15         <artifactId>oofpcipoc-consumer</artifactId>
16         <version>0.5.0-SNAPSHOT</version>
17         <packaging>bundle</packaging>
18
19         <dependencyManagement>
20                 <dependencies>
21                         <dependency>
22                                 <groupId>org.opendaylight.controller</groupId>
23                                 <artifactId>mdsal-artifacts</artifactId>
24                                 <version>1.6.1</version>
25                                 <type>pom</type>
26                                 <scope>import</scope>
27                         </dependency>
28
29                         <dependency>
30                                 <groupId>org.onap.ccsdk.sli.core</groupId>
31                                 <artifactId>sli-core-artifacts</artifactId>
32                                 <version>${ccsdk.sli.core.version}</version>
33                                 <type>pom</type>
34                                 <scope>import</scope>
35                         </dependency>
36
37                 </dependencies>
38         </dependencyManagement>
39
40
41
42         <dependencies>
43                 <dependency>
44                         <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
45                         <artifactId>oofpcipoc-model</artifactId>
46                         <version>${project.version}</version>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
50                         <artifactId>oofpcipoc-provider</artifactId>
51                         <version>${project.version}</version>
52                 </dependency>
53                 <!-- <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-binding-config</artifactId>
54                         </dependency> -->
55                 <dependency>
56                         <groupId>org.opendaylight.controller</groupId>
57                         <artifactId>sal-binding-api</artifactId>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.opendaylight.controller</groupId>
61                         <artifactId>sal-common-util</artifactId>
62                 </dependency>
63                 <dependency>
64                         <groupId>org.opendaylight.controller</groupId>
65                         <artifactId>sal-core-api</artifactId>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.opendaylight.yangtools</groupId>
69                         <artifactId>yang-data-impl</artifactId>
70                 </dependency>
71                 <dependency>
72                         <groupId>com.fasterxml.jackson.core</groupId>
73                         <artifactId>jackson-databind</artifactId>
74                         <version>2.9.8</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>com.fasterxml.jackson.core</groupId>
78                         <artifactId>jackson-core</artifactId>
79                         <version>2.9.8</version>
80                 </dependency>
81
82                 <dependency>
83                         <groupId>com.fasterxml.jackson.core</groupId>
84                         <artifactId>jackson-annotations</artifactId>
85                         <version>2.9.8</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>junit</groupId>
89                         <artifactId>junit</artifactId>
90                         <scope>test</scope>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.mockito</groupId>
94                         <artifactId>mockito-core</artifactId>
95                         <scope>test</scope>
96                 </dependency>
97
98                 <dependency>
99                         <groupId>org.onap.ccsdk.sli.core</groupId>
100                         <artifactId>sli-common</artifactId>
101                         <scope>compile</scope>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.onap.ccsdk.sli.core</groupId>
105                         <artifactId>sli-provider</artifactId>
106                         <scope>compile</scope>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.onap.ccsdk.sli.core</groupId>
110                         <artifactId>utils-provider</artifactId>
111                         <!-- <version>${sdnctl.sli.version}</version> -->
112                 </dependency>
113                 <dependency>
114                         <groupId>org.apache.velocity</groupId>
115                         <artifactId>velocity-engine-core</artifactId>
116                         <version>2.0</version>
117                 </dependency>
118                 <dependency>
119                         <groupId>org.json</groupId>
120                         <artifactId>json</artifactId>
121                         <version>20131018</version>
122                 </dependency>
123                 <dependency>
124                         <groupId>commons-codec</groupId>
125                         <artifactId>commons-codec</artifactId>
126                         <version>1.9</version>
127                 </dependency>
128         </dependencies>
129
130         <build>
131                 <pluginManagement>
132                         <plugins>
133                                 <plugin>
134                                         <groupId>org.eclipse.m2e</groupId>
135                                         <artifactId>lifecycle-mapping</artifactId>
136                                         <version>1.0.0</version>
137                                         <configuration>
138                                                 <lifecycleMappingMetadata>
139                                                         <pluginExecutions>
140                                                                 <pluginExecution>
141                                                                         <pluginExecutionFilter>
142                                                                                 <groupId>org.codehaus.mojo</groupId>
143                                                                                 <artifactId>properties-maven-plugin</artifactId>
144                                                                                 <versionRange>[1.0.0,)</versionRange>
145                                                                                 <goals>
146                                                                                         <goal>set-system-properties</goal>
147                                                                                 </goals>
148                                                                         </pluginExecutionFilter>
149                                                                         <action>
150                                                                                 <execute />
151                                                                         </action>
152                                                                 </pluginExecution>
153                                                         </pluginExecutions>
154                                                 </lifecycleMappingMetadata>
155                                         </configuration>
156                                 </plugin>
157                         </plugins>
158                 </pluginManagement>
159         </build>
160
161 </project>