-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
60 additions
and
39 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 |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
<parent> | ||
<groupId>org.aksw.maven.plugins</groupId> | ||
<artifactId>rpt-maven-plugin-parent</artifactId> | ||
<version>0.0.2-SNAPSHOT</version> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>lsq-maven-plugin</artifactId> | ||
<packaging>maven-plugin</packaging> | ||
|
||
<description>Maven plugin for creating, loading and packaging an Apache Jena TDB2 RDF database.</description> | ||
<description>Maven plugin for RDFizing query logs and benchmarking them using LSQ.</description> | ||
<inceptionYear>2024</inceptionYear> | ||
|
||
<properties> | ||
|
@@ -27,14 +27,15 @@ | |
<maven>3.5</maven> | ||
</prerequisites> | ||
|
||
<!-- | ||
<scm> | ||
<connection>scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</connection> | ||
<developerConnection> | ||
scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</developerConnection> | ||
<url>https://github.com/Scaseco/sparql-maven-plugin.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
--> | ||
<build> | ||
<resources> | ||
<resource> | ||
|
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 |
---|---|---|
|
@@ -5,17 +5,46 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.aksw.maven.plugins</groupId> | ||
<artifactId>rpt-maven-plugin-parent</artifactId> | ||
<version>0.0.2-SNAPSHOT</version> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<modules> | ||
<module>rpt-maven-plugin-shared</module> | ||
<module>rpt-maven-plugin</module> | ||
<module>rpt-full-maven-plugin</module> | ||
<module>tdb2-maven-plugin</module> | ||
<!-- <module>sparql-maven-plugin</module> --> | ||
<module>lsq-maven-plugin</module> | ||
</modules> | ||
<name>RDF Maven Plugins</name> | ||
<description>A collection of Maven Plugins for assisting with RDF processing</description> | ||
<url>https://github.com/Scaseco/rpt-maven-plugin</url> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:Scaseco/rpt-maven-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:Scaseco/rpt-maven-plugin.git</developerConnection> | ||
<url>https://github.com/Scaseco/rpt-maven-plugin.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<issueManagement> | ||
<url>https://github.com/Scaseco/rpt-maven-plugin/issues</url> | ||
<system>GitHub</system> | ||
</issueManagement> | ||
|
||
|
||
<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> | ||
|
||
<developers> | ||
<developer> | ||
<id>claus.stadler</id> | ||
<name>Claus Stadler</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Project Lead</role> | ||
<role>Developer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<rdf-processing-toolkit.version>1.9.8</rdf-processing-toolkit.version> | ||
|
@@ -57,26 +86,14 @@ | |
<gitflow-maven-plugin.version>1.9.0</gitflow-maven-plugin.version> | ||
</properties> | ||
|
||
<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> | ||
|
||
<developers> | ||
<developer> | ||
<id>claus.stadler</id> | ||
<name>Claus Stadler</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Project Lead</role> | ||
<role>Developer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
</developers> | ||
<modules> | ||
<module>rpt-maven-plugin-shared</module> | ||
<module>rpt-maven-plugin</module> | ||
<module>rpt-full-maven-plugin</module> | ||
<module>tdb2-maven-plugin</module> | ||
<!-- <module>sparql-maven-plugin</module> --> | ||
<module>lsq-maven-plugin</module> | ||
</modules> | ||
|
||
<build> | ||
<plugins> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<parent> | ||
<groupId>org.aksw.maven.plugins</groupId> | ||
<artifactId>rpt-maven-plugin-parent</artifactId> | ||
<version>0.0.2-SNAPSHOT</version> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>rpt-maven-plugin-shared</artifactId> | ||
|
@@ -16,13 +16,14 @@ | |
<description>Common code for variants of the rpt-maven-plugin</description> | ||
<inceptionYear>2024</inceptionYear> | ||
|
||
<!-- | ||
<scm> | ||
<connection>scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</developerConnection> | ||
<url>https://github.com/Scaseco/sparql-maven-plugin.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
--> | ||
<dependencies> | ||
<!-- Maven API --> | ||
<dependency> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,14 +24,15 @@ | |
<maven>3.5</maven> | ||
</prerequisites> | ||
|
||
<!-- | ||
<scm> | ||
<connection>scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</connection> | ||
<developerConnection> | ||
scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</developerConnection> | ||
<url>https://github.com/Scaseco/sparql-maven-plugin.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
--> | ||
<build> | ||
<resources> | ||
<resource> | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<parent> | ||
<groupId>org.aksw.maven.plugins</groupId> | ||
<artifactId>rpt-maven-plugin-parent</artifactId> | ||
<version>0.0.2-SNAPSHOT</version> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>tdb2-maven-plugin</artifactId> | ||
|
@@ -24,14 +24,15 @@ | |
<maven>3.5</maven> | ||
</prerequisites> | ||
|
||
<!-- | ||
<scm> | ||
<connection>scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</connection> | ||
<developerConnection> | ||
scm:git:[email protected]:Scaseco/sparql-maven-plugin.git</developerConnection> | ||
<url>https://github.com/Scaseco/sparql-maven-plugin.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
--> | ||
<build> | ||
<resources> | ||
<resource> | ||
|