Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/arces-wot/sepa.git into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
lroffia committed Jun 14, 2021
2 parents a2b487e + b1e1dce commit e630c32
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 55 deletions.
6 changes: 3 additions & 3 deletions client-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.8.1</version>
<version>2.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.8.1</version>
<version>2.13.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
Expand Down Expand Up @@ -105,7 +105,7 @@
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>4.34.2</version>
<version>7.9</version>
</dependency>

<dependency>
Expand Down
8 changes: 4 additions & 4 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.8.1</version>
<version>2.13.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.8.1</version>
<version>2.13.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.jena/apache-jena-libs -->
<dependency>
<groupId>org.apache.jena</groupId>
Expand Down Expand Up @@ -156,7 +156,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.1</version>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,54 +331,30 @@ else if (properties.isLDAPEnabled()) {
}

public Engine(String[] args) {
System.out
.println("##########################################################################################");
System.out
.println("# ____ _____ ____ _ #");
System.out.println(
"# / ___|| ____| _ \\ / \\ #");
System.out.println(
"# \\___ \\| _| | |_) / _ \\ #");
System.out
.println("# ___) | |___| __/ ___ \\ #");
System.out.println(
"# |____/|_____|_| /_/ \\_\\ #");
System.out
.println("# #");
System.out
.println("# SPARQL Event Processing Architecture #");
System.out
.println("# #");
System.out
.println("# #");
System.out
.println("# This program comes with ABSOLUTELY NO WARRANTY #");
System.out
.println("# This is free software, and you are welcome to redistribute it under certain conditions #");
System.out
.println("# GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007 #");
System.out
.println("# #");
System.out
.println("# #");
System.out
.println("# @prefix git: <https://github.com/> . #");
System.out
.println("# @prefix dc: <http://purl.org/dc/elements/1.1/> . #");
System.out
.println("# #");
System.out
.println("# git:arces-wot/sepa dc:title 'SEPA' ; #");
System.out
.println("# dc:creator git:lroffia ; #");
System.out
.println("# dc:contributor git:relu91 ; #");
System.out
.println("# dc:format <https://java.com> ; #");
System.out
.println("# dc:publisher <https://github.com> . #");
System.out
.println("##########################################################################################");
System.out.println("##########################################################################################");
System.out.println("# ____ _____ ____ _ #");
System.out.println("# / ___|| ____| _ \\ / \\ #");
System.out.println("# \\___ \\| _| | |_) / _ \\ #");
System.out.println("# ___) | |___| __/ ___ \\ #");
System.out.println("# |____/|_____|_| /_/ \\_\\ #");
System.out.println("# #");
System.out.println("# SPARQL Event Processing Architecture #");
System.out.println("# #");
System.out.println("# #");
System.out.println("# This program comes with ABSOLUTELY NO WARRANTY #");
System.out.println("# This is free software, and you are welcome to redistribute it under certain conditions #");
System.out.println("# GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007 #");
System.out.println("# #");
System.out.println("# #");
System.out.println("# @prefix git: <https://github.com/> . #");
System.out.println("# @prefix dc: <http://purl.org/dc/elements/1.1/> . #");
System.out.println("# #");
System.out.println("# git:arces-wot/sepa dc:title 'SEPA' ; #");
System.out.println("# dc:creator git:lroffia ; #");
System.out.println("# dc:contributor git:relu91 ; #");
System.out.println("# dc:format <https://java.com> ; #");
System.out.println("# dc:publisher <https://github.com> . #");
System.out.println("##########################################################################################");
System.out.println("");

// Command arguments
Expand Down

0 comments on commit e630c32

Please sign in to comment.