Skip to content

Commit

Permalink
Moved resurces to module rest. Moved mysql implementation to module s…
Browse files Browse the repository at this point in the history
…tore. Arranged dependencies. See #5
  • Loading branch information
enridaga committed Feb 21, 2021
1 parent 5aefd37 commit 1323509
Show file tree
Hide file tree
Showing 24 changed files with 25 additions and 5 deletions.
5 changes: 0 additions & 5 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,6 @@
<artifactId>sparql</artifactId>
<version>${basil.version}</version>
</dependency>
<dependency>
<groupId>io.github.basilapi</groupId>
<artifactId>store</artifactId>
<version>${basil.version}</version>
</dependency>
</dependencies>

</project>
Expand Down
6 changes: 6 additions & 0 deletions rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,11 @@
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.basilapi</groupId>
<artifactId>store</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>
</project>
19 changes: 19 additions & 0 deletions store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,24 @@

<description></description>

<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>

0 comments on commit 1323509

Please sign in to comment.