Skip to content

Commit a922926

Browse files
committed
Created module rest. See #5
1 parent d9b4421 commit a922926

File tree

5 files changed

+52
-6
lines changed

5 files changed

+52
-6
lines changed

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>0.8.0-SNAPSHOT</version>
1010
<relativePath>../parent</relativePath>
1111
</parent>
12-
<artifactId>basil</artifactId>
12+
<artifactId>core</artifactId>
1313
<packaging>jar</packaging>
1414

1515
<name>BASIL :: Core</name>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<module>core</module>
2222
<module>server</module>
2323
<module>sparql</module>
24+
<module>rest</module>
2425
</modules>
2526
<profiles>
2627
<profile>

rest/pom.xml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>parent</artifactId>
7+
<groupId>io.github.basilapi</groupId>
8+
<version>0.8.0-SNAPSHOT</version>
9+
<relativePath>../parent</relativePath>
10+
</parent>
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<artifactId>rest</artifactId>
14+
<name>BASIL :: REST</name>
15+
16+
<dependencies>
17+
18+
<!-- Logging -->
19+
<dependency>
20+
<groupId>org.slf4j</groupId>
21+
<artifactId>slf4j-api</artifactId>
22+
</dependency>
23+
24+
<!-- Test -->
25+
<dependency>
26+
<groupId>junit</groupId>
27+
<artifactId>junit</artifactId>
28+
<scope>test</scope>
29+
</dependency>
30+
31+
<!-- BASIL -->
32+
<dependency>
33+
<groupId>io.github.basilapi</groupId>
34+
<artifactId>core</artifactId>
35+
<version>${project.version}</version>
36+
</dependency>
37+
</dependencies>
38+
</project>

server/pom.xml

+10-4
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,18 @@
1919
<dependencies>
2020
<dependency>
2121
<groupId>io.github.basilapi</groupId>
22-
<artifactId>basil</artifactId>
22+
<artifactId>core</artifactId>
2323
<version>${basil.version}</version>
2424
</dependency>
25-
26-
27-
<!-- Standalone -->
25+
26+
<dependency>
27+
<groupId>io.github.basilapi</groupId>
28+
<artifactId>rest</artifactId>
29+
<version>${basil.version}</version>
30+
</dependency>
31+
32+
33+
<!-- Standalone -->
2834
<dependency>
2935
<groupId>commons-cli</groupId>
3036
<artifactId>commons-cli</artifactId>

sparql/pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>reactor</artifactId>
6+
<artifactId>parent</artifactId>
77
<groupId>io.github.basilapi</groupId>
88
<version>0.8.0-SNAPSHOT</version>
9+
<relativePath>../parent</relativePath>
910
</parent>
1011
<modelVersion>4.0.0</modelVersion>
1112

0 commit comments

Comments
 (0)