Skip to content

Commit

Permalink
Merge pull request #22 from rwth-acis/release_v1.1.0
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
pedela authored Apr 27, 2021
2 parents 44edf07 + a399307 commit 6645a24
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
language: java
jdk:
- openjdk8
- openjdk14
install:
- sudo apt-get install -y ant ant-optional
services:
- mysql
script: 'ant all'
script:
- export JAVA_HOME=~/openjdk14
- export JDK_HOME=~/openjdk14
- ant all
sudo: required
before_script:
- bash .travis.install-mysql-5.7.sh
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:8-jdk-alpine
FROM openjdk:14-jdk-alpine

ENV LAS2PEER_PORT=9011

Expand Down
2 changes: 1 addition & 1 deletion etc/ant_configuration/service.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
service.version=1.0.1
service.version=1.1.0
service.name=i5.las2peer.services.mobsos.dataProcessing
service.path=i5/las2peer/services/mobsos/dataProcessing
service.class=MobSOSDataProcessingService
Expand Down
2 changes: 1 addition & 1 deletion etc/ivy/ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<artifact type="jar" ext="jar" conf="*" />
</publications>
<dependencies>
<dependency org="i5" name="las2peer-bundle" rev="1.0.1" conf="platform->*" />
<dependency org="i5" name="las2peer-bundle" rev="1.1.1" conf="platform->*" />
<dependency org="junit" name="junit" rev="4.12" conf="platform->*" />
<dependency org="org.jacoco" name="org.jacoco.ant" rev="0.8.5" conf="platform->*" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,13 @@ else if (Math.abs(message.getEvent().getCode()) >= 7000
if (message.getRemarks() != null) {
String serviceClassName = monitoredServices.get(message.getSourceAgentId());
if (sendToLRS && serviceClassName != null
&& (serviceClassName
.contains("i5.las2peer.services.moodleDataProxyService.MoodleDataProxyService@1.2.0")
&& (serviceClassName.contains(
"i5.las2peer.services.moodleDataProxyService.MoodleDataProxyService@1.3.0")
|| serviceClassName.contains(
"i5.las2peer.services.onyxDataProxyService.OnyxDataProxyService@1.0.0"))) {
"i5.las2peer.services.onyxDataProxyService.OnyxDataProxyService@1.0.0")
|| serviceClassName.contains(
"i5.las2peer.services.AssessmentHandler.AssessmentHandlerService@1.0.0")
|| serviceClassName.contains("i5.las2peer.services.tmitocar"))) {
String statement = message.getRemarks();
if (statement.contains("actor") && statement.contains("verb") && statement.contains("object"))
xAPIstatements.add(statement);
Expand Down

0 comments on commit 6645a24

Please sign in to comment.