forked from OpenDataNode/UVPlugin-rdfToCKAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
86 lines (81 loc) · 2.34 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
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.unifiedviews</groupId>
<artifactId>uv-pom-dpu</artifactId>
<version>2.0.1</version>
<relativePath />
</parent>
<groupId>org.opendatanode.plugins</groupId>
<artifactId>uv-l-rdfToCkan</artifactId>
<name>L-RdfToCkan</name>
<description>Loads graphs as resources to CKAN catalog</description>
<version>1.0.2</version>
<packaging>bundle</packaging>
<properties>
<dpu.package>eu.unifiedviews.plugins.loader.rdftockan</dpu.package>
<dpu.mainClass>RdfToCkan</dpu.mainClass>
</properties>
<dependencies>
<!-- UnifiedViews helpers. -->
<dependency>
<groupId>eu.unifiedviews</groupId>
<artifactId>uv-dataunit-helpers</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>eu.unifiedviews</groupId>
<artifactId>uv-dpu-helpers</artifactId>
<scope>compile</scope>
</dependency>
<!-- DPU dependencies -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
<version>4.3.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-osgi</artifactId>
<version>4.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>1.0.4</version>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>maven.eea.sk</id>
<name>maven.eea.sk-public</name>
<url>http://maven.eea.sk/artifactory/public/</url>
</repository>
</repositories>
</project>