Skip to content

Commit

Permalink
Created module rest. See #5
Browse files Browse the repository at this point in the history
  • Loading branch information
enridaga committed Feb 21, 2021
1 parent d9b4421 commit a922926
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>0.8.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<artifactId>basil</artifactId>
<artifactId>core</artifactId>
<packaging>jar</packaging>

<name>BASIL :: Core</name>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<module>core</module>
<module>server</module>
<module>sparql</module>
<module>rest</module>
</modules>
<profiles>
<profile>
Expand Down
38 changes: 38 additions & 0 deletions rest/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?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>parent</artifactId>
<groupId>io.github.basilapi</groupId>
<version>0.8.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>rest</artifactId>
<name>BASIL :: REST</name>

<dependencies>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<!-- BASIL -->
<dependency>
<groupId>io.github.basilapi</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
14 changes: 10 additions & 4 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,18 @@
<dependencies>
<dependency>
<groupId>io.github.basilapi</groupId>
<artifactId>basil</artifactId>
<artifactId>core</artifactId>
<version>${basil.version}</version>
</dependency>


<!-- Standalone -->

<dependency>
<groupId>io.github.basilapi</groupId>
<artifactId>rest</artifactId>
<version>${basil.version}</version>
</dependency>


<!-- Standalone -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
Expand Down
3 changes: 2 additions & 1 deletion sparql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
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>reactor</artifactId>
<artifactId>parent</artifactId>
<groupId>io.github.basilapi</groupId>
<version>0.8.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit a922926

Please sign in to comment.