Skip to content

Commit d741b36

Browse files
committed
updated files to support SEPIA-Home v2.6.0
1 parent 3a6df66 commit d741b36

10 files changed

+134
-136
lines changed
-1.83 MB
Binary file not shown.
2.24 MB
Binary file not shown.

libs/sepia-chat-v1.3.1-javadoc.jar

-297 KB
Binary file not shown.

libs/sepia-chat-v1.3.2-javadoc.jar

689 KB
Binary file not shown.
-573 KB
Binary file not shown.
979 KB
Binary file not shown.

pom.xml

Lines changed: 134 additions & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -1,123 +1,120 @@
1-
<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">
2-
<modelVersion>4.0.0</modelVersion>
3-
4-
<groupId>net.b07z.sepia.sdk</groupId>
5-
<artifactId>sepia-sdk-java</artifactId>
6-
<version>0.9.23</version>
7-
<name>SEPIA SDK</name>
8-
<description>Tools to develop services for the SEPIA framework</description>
9-
<url>https://sepia-framework.github.io</url>
10-
<packaging>jar</packaging>
11-
12-
<licenses>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>net.b07z.sepia.sdk</groupId>
7+
<artifactId>sepia-sdk-java</artifactId>
8+
<version>0.9.24</version>
9+
<name>SEPIA SDK</name>
10+
<description>Tools to develop services for the SEPIA framework</description>
11+
<url>https://sepia-framework.github.io</url>
12+
<packaging>jar</packaging>
13+
14+
<licenses>
1315
<license>
1416
<name>MIT License</name>
1517
<url>http://www.opensource.org/licenses/mit-license.php</url>
1618
</license>
17-
</licenses>
18-
19-
<properties>
20-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21-
<maven.compiler.source>1.8</maven.compiler.source>
19+
</licenses>
20+
21+
<properties>
22+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23+
<maven.compiler.source>1.8</maven.compiler.source>
2224
<maven.compiler.target>1.8</maven.compiler.target>
2325
<java.version>1.8</java.version>
2426
<kotlin.version>1.3.71</kotlin.version>
25-
</properties>
26-
27-
<dependencies>
28-
<!-- THIS IS WHAT WE USE WHEN THE REPOS ARE ON OSSH OR LOCALLY INSTALLED ...
29-
<dependency>
30-
<groupId>net.b07z.sepia.server.assist</groupId>
31-
<artifactId>sepia-assist-API</artifactId>
32-
<version>2.5.1</version>
33-
</dependency>
34-
-->
35-
36-
<!-- ... THIS IS WHAT WE USE FOR NOW -->
37-
<dependency>
38-
<groupId>com.sparkjava</groupId>
39-
<artifactId>spark-core</artifactId>
40-
<version>2.9.1</version>
41-
</dependency>
42-
<dependency>
43-
<groupId>org.slf4j</groupId>
44-
<artifactId>slf4j-simple</artifactId>
45-
<version>1.7.21</version>
46-
</dependency>
47-
<dependency>
48-
<groupId>com.googlecode.json-simple</groupId>
49-
<artifactId>json-simple</artifactId>
50-
<version>1.1.1</version>
51-
</dependency>
52-
<dependency>
53-
<groupId>com.fasterxml.jackson.core</groupId>
54-
<artifactId>jackson-databind</artifactId>
55-
<version>2.10.4</version>
56-
</dependency>
57-
<dependency>
58-
<groupId>commons-lang</groupId>
59-
<artifactId>commons-lang</artifactId>
60-
<version>2.6</version>
61-
</dependency>
62-
<dependency>
63-
<groupId>commons-io</groupId>
64-
<artifactId>commons-io</artifactId>
65-
<version>2.6</version>
66-
</dependency>
67-
<dependency>
68-
<groupId>commons-codec</groupId>
69-
<artifactId>commons-codec</artifactId>
70-
<version>1.10</version>
71-
</dependency>
72-
<dependency>
73-
<groupId>com.googlecode.soundlibs</groupId>
74-
<artifactId>mp3spi</artifactId>
75-
<version>1.9.5.4</version>
76-
</dependency>
77-
<dependency>
78-
<groupId>com.google.guava</groupId>
79-
<artifactId>guava</artifactId>
80-
<version>19.0</version>
81-
</dependency>
82-
<dependency>
83-
<groupId>org.apache.httpcomponents</groupId>
84-
<artifactId>httpclient</artifactId>
85-
<version>4.5.3</version>
86-
</dependency>
87-
<dependency>
88-
<groupId>org.apache.httpcomponents</groupId>
89-
<artifactId>httpmime</artifactId>
90-
<version>4.5.3</version>
91-
</dependency>
92-
<dependency>
93-
<groupId>org.owasp.encoder</groupId>
94-
<artifactId>encoder</artifactId>
95-
<version>1.2.2</version>
96-
</dependency>
97-
<dependency>
98-
<groupId>net.b07z.sepia.server.core</groupId>
99-
<artifactId>sepia-core-tools</artifactId>
100-
<version>2.2.7</version>
101-
<scope>system</scope>
102-
<systemPath>${basedir}/libs/sepia-core-tools-v2.2.7.jar</systemPath>
103-
</dependency>
27+
</properties>
28+
29+
<dependencies>
30+
<!-- THIS IS WHAT WE USE WHEN THE REPOS ARE ON OSSH OR LOCALLY INSTALLED ...
31+
<dependency>
32+
<groupId>net.b07z.sepia.server.assist</groupId>
33+
<artifactId>sepia-assist-API</artifactId>
34+
<version>2.5.2</version>
35+
</dependency>
36+
-->
10437

38+
<!-- ... THIS IS WHAT WE USE FOR NOW -->
39+
<dependency>
40+
<groupId>com.sparkjava</groupId>
41+
<artifactId>spark-core</artifactId>
42+
<version>2.9.3</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.slf4j</groupId>
46+
<artifactId>slf4j-simple</artifactId>
47+
<version>1.7.21</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.googlecode.json-simple</groupId>
51+
<artifactId>json-simple</artifactId>
52+
<version>1.1.1</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.fasterxml.jackson.core</groupId>
56+
<artifactId>jackson-databind</artifactId>
57+
<version>[2.10.5,2.10.6)</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>commons-lang</groupId>
61+
<artifactId>commons-lang</artifactId>
62+
<version>2.6</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>commons-io</groupId>
66+
<artifactId>commons-io</artifactId>
67+
<version>2.8.0</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>commons-codec</groupId>
71+
<artifactId>commons-codec</artifactId>
72+
<version>1.10</version>
73+
</dependency>
10574
<dependency>
106-
<groupId>com.j2html</groupId>
107-
<artifactId>j2html</artifactId>
108-
<version>0.88</version>
109-
</dependency>
110-
<dependency>
111-
<groupId>org.eclipse.paho</groupId>
112-
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
113-
<version>1.2.0</version> <!-- NOTE: we can't use 1.2.2 due to: https://github.com/eclipse/paho.mqtt.java/issues/572 -->
75+
<groupId>com.googlecode.soundlibs</groupId>
76+
<artifactId>mp3spi</artifactId>
77+
<version>1.9.5.4</version>
11478
</dependency>
11579
<dependency>
116-
<groupId>net.b07z.sepia.websockets</groupId>
80+
<groupId>org.apache.httpcomponents</groupId>
81+
<artifactId>httpclient</artifactId>
82+
<version>[4.5.13,4.6.0)</version>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.apache.httpcomponents</groupId>
86+
<artifactId>httpmime</artifactId>
87+
<version>[4.5.13,4.6.0)</version>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.owasp.encoder</groupId>
91+
<artifactId>encoder</artifactId>
92+
<version>1.2.2</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>net.b07z.sepia.server.core</groupId>
96+
<artifactId>sepia-core-tools</artifactId>
97+
<version>2.2.9</version>
98+
<scope>system</scope>
99+
<systemPath>${basedir}/libs/sepia-core-tools-v2.2.9.jar</systemPath>
100+
</dependency>
101+
102+
<dependency>
103+
<groupId>com.j2html</groupId>
104+
<artifactId>j2html</artifactId>
105+
<version>0.88</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>org.eclipse.paho</groupId>
109+
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
110+
<version>1.2.0</version> <!-- NOTE: we can't use 1.2.2 due to: https://github.com/eclipse/paho.mqtt.java/issues/572 -->
111+
</dependency>
112+
<dependency>
113+
<groupId>net.b07z.sepia.websockets</groupId>
117114
<artifactId>sepia-websockets</artifactId>
118-
<version>1.3.1</version>
119-
<scope>system</scope>
120-
<systemPath>${basedir}/libs/sepia-chat-v1.3.1.jar</systemPath>
115+
<version>1.3.2</version>
116+
<scope>system</scope>
117+
<systemPath>${basedir}/libs/sepia-chat-v1.3.2.jar</systemPath>
121118
</dependency>
122119

123120
<dependency>
@@ -128,42 +125,43 @@
128125
<dependency>
129126
<groupId>com.rometools</groupId>
130127
<artifactId>rome</artifactId>
131-
<version>1.12.0</version>
128+
<version>1.12.2</version>
132129
</dependency>
133-
<dependency>
134-
<groupId>org.jetbrains.kotlin</groupId>
135-
<artifactId>kotlin-stdlib-jdk8</artifactId>
136-
<version>${kotlin.version}</version>
137-
</dependency>
138130
<dependency>
139-
<groupId>net.b07z.sepia.server.assist</groupId>
131+
<groupId>org.jetbrains.kotlin</groupId>
132+
<artifactId>kotlin-stdlib-jdk8</artifactId>
133+
<version>${kotlin.version}</version>
134+
</dependency>
135+
<dependency>
136+
<groupId>net.b07z.sepia.server.assist</groupId>
140137
<artifactId>sepia-assist-API</artifactId>
141-
<version>2.5.1</version>
142-
<scope>system</scope>
143-
<systemPath>${basedir}/libs/sepia-assist-v2.5.1.jar</systemPath>
138+
<version>2.5.2</version>
139+
<scope>system</scope>
140+
<systemPath>${basedir}/libs/sepia-assist-v2.5.2.jar</systemPath>
144141
</dependency>
145142
<!-- -->
146-
147-
<!-- NOTE: Java Docs for the SDK can be loaded via IDE (Java build path -> Libraries -> Maven dep. -> ... Javadoc location) -->
148-
143+
144+
<!-- NOTE: Java Docs for the SDK can be loaded via IDE (Java build path
145+
-> Libraries -> Maven dep. -> ... Javadoc location) -->
146+
149147
<!-- JUnit -->
150148
<dependency>
151-
<groupId>junit</groupId>
152-
<artifactId>junit</artifactId>
153-
<version>4.13.1</version>
154-
<scope>test</scope>
155-
</dependency>
156-
<dependency>
157-
<groupId>org.jetbrains.kotlin</groupId>
158-
<artifactId>kotlin-test</artifactId>
159-
<version>${kotlin.version}</version>
160-
<scope>test</scope>
149+
<groupId>junit</groupId>
150+
<artifactId>junit</artifactId>
151+
<version>4.13.1</version>
152+
<scope>test</scope>
153+
</dependency>
154+
<dependency>
155+
<groupId>org.jetbrains.kotlin</groupId>
156+
<artifactId>kotlin-test</artifactId>
157+
<version>${kotlin.version}</version>
158+
<scope>test</scope>
161159
</dependency>
162160
<dependency>
163-
<groupId>org.jetbrains.kotlin</groupId>
164-
<artifactId>kotlin-test-junit</artifactId>
165-
<version>${kotlin.version}</version>
166-
<scope>test</scope>
161+
<groupId>org.jetbrains.kotlin</groupId>
162+
<artifactId>kotlin-test-junit</artifactId>
163+
<version>${kotlin.version}</version>
164+
<scope>test</scope>
167165
</dependency>
168-
</dependencies>
166+
</dependencies>
169167
</project>

0 commit comments

Comments
 (0)