Skip to content

Commit

Permalink
Merge pull request #55 from LK-Test-Solutions/feature/datastorage
Browse files Browse the repository at this point in the history
Feature/datastorage
  • Loading branch information
SoccerFive18 committed Feb 8, 2024
2 parents 34b77f2 + 34a010f commit f526e1a
Show file tree
Hide file tree
Showing 18 changed files with 958 additions and 1,191 deletions.
22 changes: 3 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Coordinates -->
<groupId>org.opentdk</groupId>
<artifactId>opentdk-api</artifactId>
<version>1.6.4</version>
<version>1.6.5</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
Expand Down Expand Up @@ -137,7 +137,7 @@
</excludes>
</configuration>-->
</plugin>
<plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
Expand All @@ -148,7 +148,7 @@
</goals>
</execution>
</executions>
</plugin>
</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -191,21 +191,5 @@
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
</dependency>
<!--<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>2.7.0</version>
</dependency>-->
<!--<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-parsers-standard-package</artifactId>
<version>2.7.0</version>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>-->
</dependencies>
</project>
1 change: 0 additions & 1 deletion src/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@
requires transitive org.json;
requires transitive org.apache.commons.lang3;
requires transitive org.apache.commons.codec;
// requires transitive org.apache.tika.core;
requires transitive org.yaml.snakeyaml;
}
2 changes: 1 addition & 1 deletion src/org/opentdk/api/application/BaseApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public BaseApplication(String[] args) {
* @param runtimePropertiesClass The class of type {@link BaseDispatcher} which includes the
* declaration of all runtime properties
* @param args String array with keys and values passed by the commandline (e.g.
* -homedir=c:/applications/myApp)
* {@literal -homedir=c:/applications/myApp)}
*/
public final void parseArgs(Class<?> runtimePropertiesClass, String[] args) {
String value = "";
Expand Down
Loading

0 comments on commit f526e1a

Please sign in to comment.