This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
162 lines (146 loc) · 5.39 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>eu.fusepool.p3</groupId>
<artifactId>p3</artifactId>
<version>1</version>
</parent>
<properties>
<scala.version>2.10.3</scala.version>
<scalatest.version>2.1.0</scalatest.version>
<skipTests>true</skipTests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>eu.fusepool.p3.ext.de.fuberlin.wiwiss.silk</groupId>
<artifactId>silk</artifactId>
<packaging>pom</packaging>
<name>Silk</name>
<version>2.6.1-SNAPSHOT</version>
<description>The Silk framework is a tool for discovering relationships between data items within different Linked Data sources. Data publishers can use Silk to set RDF links from their data sources to other data sources on the Web.</description>
<url>http://www4.wiwiss.fu-berlin.de/bizer/silk/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/fusepoolP3/p3-silk</url>
<connection>scm:git:https://github.com/fusepoolp3/p3-silk</connection>
<developerConnection>scm:git:[email protected]:fusepoolp3/p3-silk.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>robertisele</id>
<name>Robert Isele</name>
<email>[email protected]</email>
</developer>
<developer>
<id>anjeve</id>
<name>Anja Jentzsch</name>
<email>[email protected]</email>
</developer>
<developer>
<id>bizer</id>
<name>Chris Bizer</name>
<email>[email protected]</email>
</developer>
<developer>
<id>beckr</id>
<name>Christian Becker</name>
<email>[email protected]</email>
</developer>
<developer>
<id>muri</id>
<name>Michal Murawicki</name>
<email>[email protected]</email>
</developer>
<developer>
<id>a-matteini</id>
<name>Andrea Matteini</name>
<email>[email protected]</email>
</developer>
</developers>
<modules>
<module>silk-core</module>
<module>silk-learning</module>
<module>silk-jena</module>
<module>silk-singlemachine</module>
<module>silk-mapreduce</module>
<module>silk-server</module>
<module>silk-workspace</module>
<!-- module>silk-workbench</module -->
</modules>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.6</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
<goal>doc-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-optimise</arg>
</args>
<jvmArgs>
<jvmArg>-Xmx1024m</jvmArg>
</jvmArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.13</version>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>${scala.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.10</artifactId>
<version>${scalatest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>