Skip to content

Commit

Permalink
Moved service.properties.
Browse files Browse the repository at this point in the history
Change-Id: I5261ebabe9f9d423e5355b7fd366477895f978c4
  • Loading branch information
margaretha committed Mar 22, 2024
1 parent 823d756 commit 5fecd61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/ids_mannheim/korap/utils/ServiceInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private void load () {
.valueOf((String) props.get("kustvakt.cache"));
this.cache_store = (String) props.get("kustvakt.cache_store");

this.krillVersion = (String) props.get("krill.version");
// this.krillVersion = (String) props.get("krill.version");

QuerySerializer s = new QuerySerializer();
this.koralVersion = s.getVersion();
Expand All @@ -74,7 +74,7 @@ private void load () {
}

private static InputStream getStream () throws IOException {
String path = "service.properties";
String path = "properties/service.properties";
InputStream stream = ConfigLoader.loadConfigStream(path);
if (stream == null)
throw new IOException(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kustvakt.version=${project.version}
krill.version=${krill.version}
#krill.version=${krill.version}
koral.version=${koral.version}
kustvakt.cache=true

0 comments on commit 5fecd61

Please sign in to comment.