Skip to content

Commit

Permalink
[Feature #30] Basic structure to create tabular module
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Oct 26, 2021
1 parent c099eb9 commit 363704b
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
5 changes: 5 additions & 0 deletions s-pipes-modules-registry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>cz.cvut.kbss</groupId>
<artifactId>s-pipes-modules-tabular</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>cz.cvut.kbss</groupId>
<artifactId>s-pipes-modules-tarql</artifactId>
Expand Down
27 changes: 27 additions & 0 deletions s-pipes-modules/module-tabular/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?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>
<artifactId>s-pipes-modules</artifactId>
<groupId>cz.cvut.kbss</groupId>
<version>0.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>s-pipes-modules-tabular</artifactId>
<name>SPipes Modules - Tabular</name>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>cz.cvut.kbss</groupId>
<artifactId>s-pipes-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package cz.cvut.spipes.modules;

public class TabularModule {


}
1 change: 1 addition & 0 deletions s-pipes-modules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<module>module-rdfstream</module>
<module>module-security</module>
<module>module-sparql-endpoint</module>
<module>module-tabular</module>
<module>module-tarql</module>
</modules>

Expand Down

0 comments on commit 363704b

Please sign in to comment.