File tree 5 files changed +52
-6
lines changed
5 files changed +52
-6
lines changed Original file line number Diff line number Diff line change 9
9
<version >0.8.0-SNAPSHOT</version >
10
10
<relativePath >../parent</relativePath >
11
11
</parent >
12
- <artifactId >basil </artifactId >
12
+ <artifactId >core </artifactId >
13
13
<packaging >jar</packaging >
14
14
15
15
<name >BASIL :: Core</name >
Original file line number Diff line number Diff line change 21
21
<module >core</module >
22
22
<module >server</module >
23
23
<module >sparql</module >
24
+ <module >rest</module >
24
25
</modules >
25
26
<profiles >
26
27
<profile >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 19
19
<dependencies >
20
20
<dependency >
21
21
<groupId >io.github.basilapi</groupId >
22
- <artifactId >basil </artifactId >
22
+ <artifactId >core </artifactId >
23
23
<version >${basil.version} </version >
24
24
</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 -->
28
34
<dependency >
29
35
<groupId >commons-cli</groupId >
30
36
<artifactId >commons-cli</artifactId >
Original file line number Diff line number Diff line change 3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<parent >
6
- <artifactId >reactor </artifactId >
6
+ <artifactId >parent </artifactId >
7
7
<groupId >io.github.basilapi</groupId >
8
8
<version >0.8.0-SNAPSHOT</version >
9
+ <relativePath >../parent</relativePath >
9
10
</parent >
10
11
<modelVersion >4.0.0</modelVersion >
11
12
You can’t perform that action at this time.
0 commit comments