-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare code for 0.1.0 (Maven) release
- Loading branch information
Miel Vander Sande
committed
Jan 13, 2016
1 parent
a742b70
commit 03e192f
Showing
48 changed files
with
1,101 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,58 @@ | ||
<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> | ||
<groupId>LDF-Server</groupId> | ||
<artifactId>LDF-Server</artifactId> | ||
<version>0.0.2</version> | ||
<groupId>org.linkeddatafragments</groupId> | ||
<artifactId>ldfserver</artifactId> | ||
<version>0.1.0</version> | ||
<packaging>war</packaging> | ||
|
||
<name>Linked Data Fragments Server</name> | ||
<url>http://linkeddatafragments.org</url> | ||
<description> | ||
This is a Java implementation of the Linked Data Fragments Server based on Jena. | ||
</description> | ||
<licenses> | ||
<license> | ||
<name>MIT License (MIT)</name> | ||
<url>https://raw.githubusercontent.com/LinkedDataFragments/Server.Java/master/LICENSE.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>https://github.com/LinkedDataFragments/Server.Java.git</connection> | ||
<developerConnection>https://github.com/LinkedDataFragments/Server.Java.git</developerConnection> | ||
<tag>v0.1.0</tag> | ||
<url>https://github.com/LinkedDataFragments/Server.Java</url> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<id>rverborgh</id> | ||
<name>Ruben Verborgh</name> | ||
<email>[email protected]</email> | ||
<url>http://ruben.verborgh.org</url> | ||
<organization>iMinds</organization> | ||
<organizationUrl>http://iminds.be</organizationUrl> | ||
<timezone>Europe/Brussels</timezone> | ||
</developer> | ||
<developer> | ||
<id>mielvds</id> | ||
<name>Miel Vander Sande</name> | ||
<email>[email protected]</email> | ||
<url>http://semweb.mmlab.be</url> | ||
<organization>iMinds</organization> | ||
<organizationUrl>http://iminds.be</organizationUrl> | ||
<timezone>Europe/Brussels</timezone> | ||
</developer> | ||
</developers> | ||
<contributors> | ||
<contributor> | ||
<name>Bart Hanssens</name> | ||
<email>[email protected]</email> | ||
<organization>FEDICT</organization> | ||
</contributor> | ||
<contributor> | ||
<name>Olaf Hartig</name> | ||
</contributor> | ||
</contributors> | ||
<properties> | ||
<jettyVersion>9.3.6.v20151106</jettyVersion> | ||
</properties> | ||
|
@@ -123,6 +170,63 @@ | |
</descriptorRefs> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.5</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.3</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/org/linkeddatafragments/datasource/DataSourceBase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.