-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpom.xml
142 lines (123 loc) · 4.81 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>IoTbrokerParent</artifactId>
<groupId>eu.neclab.iotplatform</groupId>
<version>7.1-SNAPSHOT</version>
<relativePath>../IoTbrokerParent</relativePath>
</parent>
<artifactId>iotbroker.embeddediotagent.registry</artifactId>
<packaging>bundle</packaging>
<repositories>
<repository>
<id>EclipseLink Repo</id>
<url>http://download.eclipse.org/rt/eclipselink/maven.repo</url>
</repository>
</repositories>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>.</directory>
<includes>
<include>META-INF/**</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Private-Package>eu.neclab.iotplatform.couchdb.*</Private-Package>
<!-- <Import-Package>com.google.gson;version="2.2.2", -->
<!-- eu.neclab.iotplatform.iotbroker.client;version="${project.version}", -->
<!-- eu.neclab.iotplatform.iotbroker.commons;version="${project.version}", -->
<!-- eu.neclab.iotplatform.iotbroker.commons.interfaces;version="${project.version}", -->
<!-- eu.neclab.iotplatform.ngsi.api.datamodel;version="${project.version}", -->
<!-- eu.neclab.iotplatform.ngsi.api.ngsi10;version="${project.version}", -->
<!-- eu.neclab.iotplatform.iotbroker.storage;version="${project.version}, -->
<!-- org.apache.commons.codec.binary;version="1.6.0", -->
<!-- org.apache.log4j;version="1.2.15", -->
<!-- org.json;version="1.0.0", -->
<!-- org.apache.http, -->
<!-- org.apache.http.auth, -->
<!-- org.apache.http.impl.auth, -->
<!-- org.springframework.beans;version="${spring.version}", -->
<!-- org.springframework.beans.annotation;version="${spring.version}", -->
<!-- org.springframework.beans.factory;version="${spring.version}", -->
<!-- org.springframework.beans.factory.annotation;version="${spring.version}", -->
<!-- org.springframework.stereotype;version="${spring.version}", -->
<!-- org.springframework.web;version="${spring.version}", -->
<!-- org.springframework.web.bind;version="${spring.version}", -->
<!-- org.springframework.web.bind.annotation;version="${spring.version}", -->
<!-- org.springframework.web.context;version="${spring.version}", -->
<!-- org.springframework.web.servlet.mvc;version="${spring.version}", -->
<!-- org.springframework.web.servlet.mvc.annotation;version="${spring.version}", -->
<!-- javax.xml.bind;version="2.0.0", -->
<!-- org.codehaus.jackson;version="[1.4,2)", -->
<!-- org.codehaus.jackson.map;version="[1.4,2)", -->
<!-- org.codehaus.jackson.map.annotate;version="[1.4,2)", -->
<!-- com.google.common.collect;version="17.0.0" -->
<!-- </Import-Package> -->
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.3.2</version>
</dependency>
<!-- GUAVA -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>eu.neclab.iotplatform</groupId>
<artifactId>iotbroker.commons</artifactId>
</dependency>
<dependency>
<groupId>eu.neclab.iotplatform</groupId>
<artifactId>ngsi.api</artifactId>
</dependency>
<dependency>
<groupId>eu.neclab.iotplatform</groupId>
<artifactId>iotbroker.client</artifactId>
</dependency>
<dependency>
<groupId>eu.neclab.iotplatform</groupId>
<artifactId>iotbroker.storage</artifactId>
</dependency>
<!-- <dependency> -->
<!-- <groupId>joda-time</groupId> -->
<!-- <artifactId>joda-time</artifactId> -->
<!-- <version>2.8.1</version> -->
<!-- </dependency> -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.11</version>
</dependency>
</dependencies>
</project>