~networked-graphs/networkedgraphs/main

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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2007 Simon Schenk

  The program "P-Grid/Gridella" is free software; you can redistribute
it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation.

  This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

  IN ADDITION TO THE TERMS AND CONDITIONS OF THE GNU GENERAL PUBLIC
LICENSE, YOU AGREE WITH THE FOLLOWING TERMS AND CONDITIONS:

  P-Grid is a distributed indexing system for indexing and searching
non-copyrighted content. The distribution of copyrighted data is not
the intended application area of P-Grid. The distribution of P-Grid
does not authorize you in any way to  infringe the copyright or other
rights of third parties. As a condition of the use of P-Grid, you
agree that you must not use this program to infringe the intellectual
property or other rights of others; the unauthorized reproduction,
distribution, modification, public display, communication to the
public or public performance of copyrighted works is an infringement
of copyright. It is your responsibility to ensure that you obtain all
consents, authorizations and clearances in any data owned or
controlled by third parties that you transmit, access or communicate
to others using the P-Grid program.

  YOU WILL BE ENTIRELY AND SOLELY RESPONSIBLE FOR YOUR CONDUCT USING THE
P-GRID PROGRAM AND FOR ENSURING THAT YOU COMPLY WITH ALL APPLICABLE
LAWS, INCLUDING BUT NOT LIMITED TO COPYRIGHT LAWS. IN NO CASE SHALL
THE COPYRIGHT HOLDER (EPFL) BE LIABLE FOR ANY DAMAGE CAUSED BY THE USE
OF THE P-GRID PROGRAM.


This program uses libraries from the Distributed SAIL. These libraries are 
licensed under the GNU Lesser General Public License Version 3.

This program uses libraries from the Openrdf Sesame project. These libraries are
licensed under the Aduna BSD-style license.

This product includes software developed by the
Apache Software Foundation (http://www.apache.org/).
This software is licensed under The Apache Software License, Version 1.1

This program uses libraries developed by the Hypersonic SQL Group. These 
libraries are licensed under the Hypersonic SQL Group BSD-style license.

This program uses libraries from the HSQL Development Group. These libraries are
licensed under the HSQL Development Group BSD-style license.

-->
<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/maven-v4_0_0.xsd"
>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>P2PSourceFinder</artifactId>
  <groupId>de.uni_koblenz.isweb</groupId>
  <version>SNAPSHOT</version>

  <name>P2PSourceFinder</name>
  <description>A SourceFinder for the Sesame 2 Distributed SPARQL Sail, based on a distributed Trie</description>
  <packaging>jar</packaging>

  <developers>
    <developer>
      <id>sschenk</id>
      <name>Simon Schenk</name>
      <email>sschenk@uni-koblenz.de</email>
      <url>http://www.uni-koblenz.de/~sschenk/</url>
      <organization>Uni. Koblenz-Landau</organization>
      <organizationUrl>http://www.uni-koblenz.de/</organizationUrl>
      <timezone>+1</timezone>
    </developer>
  </developers>
  
  <properties>
    <pgrid.version>2.0</pgrid.version>
  </properties>
<!-- 
	<parent>
		<groupId>de.uni_koblenz.isweb</groupId>
		<artifactId>sesame-extensions</artifactId>
		<version>SNAPSHOT</version>
	</parent>
  -->
 
  <repositories>
    <repository>
      <id>isweb-repo</id>
      <name>ISWeb M2 Repository</name>
      <url>http://k-sems.uni-koblenz.de:8180/maven</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>org.openrdf.sesame</groupId>
      <artifactId>sesame-model</artifactId>
      <version>${sesame.version}</version>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>org.openrdf.sesame</groupId>
      <artifactId>sesame-repository-sail</artifactId>
      <version>${sesame.version}</version>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>de.uni_koblenz.isweb</groupId>
      <artifactId>DistributedSAIL</artifactId>
			<version>SNAPSHOT</version>
    </dependency>
    <dependency>
      <groupId>pgrid</groupId>
      <artifactId>PGrid</artifactId>
      <version>${pgrid.version}</version>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>hsqldb</groupId>
      <artifactId>hsqldb</artifactId>
      <version>1.8.0.7</version>
    </dependency>
    <dependency>
      <groupId>xom</groupId>
      <artifactId>xom</artifactId>
      <version>1.1</version>
      <scope>compile</scope>
    </dependency> 
    <dependency>
      <groupId>xmlunit</groupId>
      <artifactId>xmlunit</artifactId>
      <version>1.1</version>
      <scope>test</scope>
    </dependency>
      <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.3</version>
      <type>jar</type>
    </dependency>
  </dependencies>
  
  <build>
    <defaultGoal>package</defaultGoal>
    
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <encoding>utf-8</encoding>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
      
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
  
  <scm>
   <connection>scm:svn:https://kater.uni-koblenz.de/svn/sesame-extensions/DistributedSAILP2PSourceFinder/trunk</connection>
   <developerConnection>scm:svn:https://kater.uni-koblenz.de/svn/sesame-extensions/DistributedSAILP2PSourceFinder/trunk</developerConnection>
   <tag>HEAD</tag>
   <url>http://isweb.uni-koblenz.de/Research/DistributedSPARQL</url>
  </scm>  
</project>