Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / apigateway / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
3         license agreements. See the NOTICE file distributed with this work for additional
4         information regarding copyright ownership. The ASF licenses this file to
5         You under the Apache License, Version 2.0 (the "License"); you may not use
6         this file except in compliance with the License. You may obtain a copy of
7         the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
8         by applicable law or agreed to in writing, software distributed under the
9         License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
10         OF ANY KIND, either express or implied. See the License for the specific
11         language governing permissions and limitations under the License. -->
12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14
15         <modelVersion>4.0.0</modelVersion>
16
17         <groupId>com.highstreet.technologies.apigateway</groupId>
18         <artifactId>apigateway-parent</artifactId>
19         <version>0.5.1-SNAPSHOT</version>
20         <packaging>pom</packaging>
21
22         <properties>
23                 <log4j-version>1.2.16</log4j-version>
24                 <slf4j-version>1.6.1</slf4j-version>
25         </properties>
26
27         <modules>
28                 <module>impl</module>
29                 <module>features</module>
30         </modules>
31
32         <dependencies>
33                 <dependency>
34                 <groupId>javax.ws.rs</groupId>
35                 <artifactId>javax.ws.rs-api</artifactId>
36                 <version>2.0.1</version>
37         </dependency>
38         <dependency>
39             <groupId>org.slf4j</groupId>
40             <artifactId>slf4j-api</artifactId>
41             <version>${slf4j-version}</version>
42         </dependency>
43
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47             <version>4.12</version>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.slf4j</groupId>
52             <artifactId>slf4j-log4j12</artifactId>
53             <version>${slf4j-version}</version>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>log4j</groupId>
58             <artifactId>log4j</artifactId>
59             <version>${log4j-version}</version>
60             <scope>test</scope>
61         </dependency>
62          <dependency>
63         <groupId>org.json</groupId>
64         <artifactId>json</artifactId>
65         <version>20131018</version>
66       </dependency>
67     </dependencies>
68
69         <build>
70                 <plugins>
71                         <plugin>
72                                 <groupId>org.apache.maven.plugins</groupId>
73                                 <artifactId>maven-compiler-plugin</artifactId>
74                                 <version>3.3</version>
75                                 <configuration>
76                                         <source>1.7</source>
77                                         <target>1.7</target>
78                                 </configuration>
79                         </plugin>
80                         <plugin>
81                                 <groupId>org.apache.felix</groupId>
82                                 <artifactId>maven-bundle-plugin</artifactId>
83                                 <version>3.0.1</version>
84                                 <extensions>true</extensions>
85                                 <configuration>
86                                         <instructions>
87                                                 <_include>-bnd.bnd</_include>
88                                         </instructions>
89                                 </configuration>
90                         </plugin>
91                 </plugins>
92         </build>
93 </project>