File tree 3 files changed +67
-0
lines changed
3 files changed +67
-0
lines changed Original file line number Diff line number Diff line change 87
87
<packageDependencies >
88
88
<packageDependency >openjdk-7-jre | openjdk-6-jre | sun-java6-jre</packageDependency >
89
89
</packageDependencies >
90
+ <maintainerName >${project.parent.developers[0].name} </maintainerName >
91
+ <maintainerEmail >${project.parent.developers[0].email} </maintainerEmail >
90
92
<!-- <packageName>my-package</packageName> <packageVersion>1.0.0</packageVersion>
91
93
... -->
92
94
</configuration >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <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" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+
5
+ <artifactId >sparqlify-server</artifactId >
6
+ <packaging >war</packaging >
7
+
8
+ <name >Sparqlify SPARQL-> SQL rewriter - Server</name >
9
+ <url >http://aksw.org/Projects/Sparqlify</url >
10
+
11
+ <parent >
12
+ <groupId >org.aksw.sparqlify</groupId >
13
+ <artifactId >sparqlify-parent</artifactId >
14
+ <version >0.6.1-SNAPSHOT</version >
15
+ </parent >
16
+
17
+
18
+
19
+ <dependencies >
20
+ <dependency >
21
+ <groupId >org.aksw.sparqlify</groupId >
22
+ <artifactId >sparqlify-core</artifactId >
23
+ </dependency >
24
+
25
+ <!-- <dependency>
26
+ <groupId>com.sun.jersey</groupId>
27
+ <artifactId>jersey-core</artifactId>
28
+ </dependency>
29
+ -->
30
+
31
+ </dependencies >
32
+ </project >
33
+
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <web-app version =" 2.4" xmlns =" http://java.sun.com/xml/ns/j2ee"
3
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:schemaLocation=" http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
5
+
6
+
7
+ <!--
8
+ <resource-ref>
9
+ <description>Sparqlify Reference</description>
10
+ <res-ref-name>jdbc/DS-Sparqlify</res-ref-name>
11
+ <res-type>javax.sql.DataSource</res-type>
12
+ <res-auth>Container</res-auth>
13
+ </resource-ref>
14
+ -->
15
+
16
+
17
+ <servlet >
18
+ <servlet-name >Jersey Web Application</servlet-name >
19
+ <servlet-class >com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class >
20
+ <init-param >
21
+ <param-name >com.sun.jersey.config.property.packages</param-name >
22
+
23
+ <!-- You need to change this line to match your package name -->
24
+ <param-value >org.aksw.sparqlify.web</param-value >
25
+ </init-param >
26
+ <load-on-startup >1</load-on-startup >
27
+ </servlet >
28
+ <servlet-mapping >
29
+ <servlet-name >Jersey Web Application</servlet-name >
30
+ <url-pattern >/*</url-pattern >
31
+ </servlet-mapping >
32
+ </web-app >
You can’t perform that action at this time.
0 commit comments