-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Upgrade Spring 4 to Spring 5 (5.3.30) Upgrade Hibernate to 5.6 (5.6.15) Upgrade HSQLDB to 2.7.2 * Use correct Maven coordinates for Hibernate Remove C3P0 connection pool used in tests * Fix deprecations (language migration) * PostgreSQL Upgrade to 42.6.0 * Upgrade JGraphT to 1.5.2 * Move to log4j2 * Remove unused trove4j library * Remove unused jfreechart * Remove unused dependency towards apache ant * Remove dependency towards javax.mail * Remove deprecated mail logger, fix compile issues * Fork from ant bzip2 to avoid direct dependency to build tool * Compiler fixes + dependency upgrades * Fork of ant tools to avoid build tools as dependency * Fix compile issues from trove removal * Rename log4j config * Move JWPL to jakarta.* namespace targeting EE 9.1 (Hibernate 6.1.7, JPA 3.0) * Bumps version to 2.x to indicate a major change (javax -> jakarta) * adds the possibility to use MariaDB JDBC driver as alternative to proprietary MySQL connector switches to recommended collation format on modern mysql/mariadb DBMS environments: utf8mb4_bin sets mysql-connector-java driver to 'runtime' scope, as it should not be compiled against those classes * Remove Statistics* as these classes were used to connect to bender and compute some stuff. Won't work anyway anymore. * Remove unused file * Fix PerformanceIT * Log4J2 configs * Add "jwpl-*" prefix * Remove provided scope in dependency management Fix scope of log4j2 dependencies in parser module * Refactor Boolean.XY -> true/false * Move to commons-compress and remove forked ant code * Fix refactoring issue regarding hbm2ddl.auto * Introduce fastutil-core to avoid object-based arrays / maps in version dumpers --------- Co-authored-by: Martin Wiesner <[email protected]>
- Loading branch information
Showing
57 changed files
with
746 additions
and
1,464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-2.72 KB
...dt.ukp.wikipedia.api/catGraphSer_bender.ukp.informatik.tu-darmstadt.de_wikiapi_test__test
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 0 additions & 58 deletions
58
de.tudarmstadt.ukp.wikipedia.api/src/it/resources/log4j.xml
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
de.tudarmstadt.ukp.wikipedia.api/src/it/resources/log4j2.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- | ||
Licensed to the Technische Universität Darmstadt under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The Technische Universität Darmstadt | ||
licenses this file to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<Configuration> | ||
<Appenders> | ||
<Console name="STDOUT" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d %-5p [%t] %C{2} (%F:%L) - %m%n"/> | ||
</Console> | ||
</Appenders> | ||
|
||
<Loggers> | ||
<Logger name="de.tudarmstadt.ukp.wikipedia.api.PerformanceTest" level="DEBUG"> | ||
<AppenderRef ref="STDOUT"/> | ||
</Logger> | ||
|
||
<Logger name="de.tudarmstadt.ukp.wikipedia.api.PerformanceIT" level="DEBUG"> | ||
<AppenderRef ref="STDOUT"/> | ||
</Logger> | ||
|
||
<Root level="WARN"> | ||
<AppenderRef ref="STDOUT"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.