From 91b22c27eaad4d64d3630cfd5c13cd880326a1c9 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 29 Jul 2023 13:26:24 +0200 Subject: [PATCH 1/4] #3673 - Update dependencies - junit 5.9.3 -> 5.9.10 - junit-platform 1.9.3 -> 1.10.0 - spring 5.3.28 -> 5.3.29 - spring-boot 2.7.13 -> 2.7.14 - spring-data 2.7.13 -> 2.7.14 - sentry 6.25.2 -> 6.27.0 - wicket-jquery-seletors 3.0.4 -> 3.0.5 - wicket-webjars 3.0.6 -> 3.0.7 - elasticsearch 7.17.9 -> 7.17.12 - rdf4j 4.3.3 -> 4.3.4 - commons-lang3 3.12.0 -> 3.13.0 - caffeine 3.1.6 -> 3.1.7 - jaxb-core 2.3.0 -> 2.3.0.1 - picocli-spring-boot 4.7.0 -> 4.7.4 --- inception/installEclipseSettings.sh | 2 +- inception/pom.xml | 34 ++++++++++++++--------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/inception/installEclipseSettings.sh b/inception/installEclipseSettings.sh index 3fde95b0de5..b8ceae22cf0 100755 --- a/inception/installEclipseSettings.sh +++ b/inception/installEclipseSettings.sh @@ -12,7 +12,7 @@ function installPrefs { cp -v $JDT_UI_PREFS $1/.settings/ } -installPrefsinception-active-learning +installPrefs inception-active-learning installPrefs inception-agreement installPrefs inception-annotation-storage installPrefs inception-api diff --git a/inception/pom.xml b/inception/pom.xml index 9682f7d3406..bf3c6dd9470 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -62,8 +62,8 @@ ${session.executionRootDirectory}/cache/dkpro-core-datasets slow - 5.9.3 - 1.9.3 + 5.10.0 + 1.10.0 5.4.0 3.24.2 @@ -77,9 +77,9 @@ 2.0.29 - 5.3.28 - 2.7.13 - 2.7.13 + 5.3.29 + 2.7.14 + 2.7.14 5.8.5 1.6.14 2.2.15 @@ -88,7 +88,7 @@ 2.0.7 2.20.0 3.5.3.Final - 6.25.2 + 6.27.0 9.0.78 4.0.1 @@ -102,8 +102,8 @@ 9.14.0 9.12.0 6.0.4 - 3.0.4 - 3.0.6 + 3.0.5 + 3.0.7 3.1.6 @@ -116,16 +116,16 @@ - 7.17.9 - - - + 7.17.12 + + + 1.3.11 - 4.3.3 + 4.3.4 4.6.1 @@ -1909,7 +1909,7 @@ org.apache.commons commons-lang3 - 3.12.0 + 3.13.0 org.apache.commons @@ -1929,7 +1929,7 @@ com.github.ben-manes.caffeine caffeine - 3.1.6 + 3.1.7 org.xerial.snappy @@ -1946,7 +1946,7 @@ com.sun.xml.bind jaxb-core - 2.3.0 + 2.3.0.1 com.sun.xml.bind @@ -2209,7 +2209,7 @@ info.picocli picocli-spring-boot-starter - 4.7.0 + 4.7.4 From 0299a43bcff5d89b83eee7d44a46b8494c1f48c2 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 29 Jul 2023 14:17:16 +0200 Subject: [PATCH 2/4] #3673 - Update dependencies - xmlunit 1.6. -> 2.9.1 --- inception/inception-io-bioc/pom.xml | 4 +-- .../bioc/BioCXmlDocumentReaderWriterTest.java | 16 ++++------ inception/inception-io-html/pom.xml | 4 +-- .../dkprocore/HtmlDocumentReaderTest.java | 16 ++++------ inception/pom.xml | 29 +++++++++++++++---- 5 files changed, 37 insertions(+), 32 deletions(-) diff --git a/inception/inception-io-bioc/pom.xml b/inception/inception-io-bioc/pom.xml index 86e3084cf8a..34b17fa34ef 100644 --- a/inception/inception-io-bioc/pom.xml +++ b/inception/inception-io-bioc/pom.xml @@ -114,8 +114,8 @@ test - xmlunit - xmlunit + org.xmlunit + xmlunit-assertj3 test diff --git a/inception/inception-io-bioc/src/test/java/de/tudarmstadt/ukp/inception/io/bioc/BioCXmlDocumentReaderWriterTest.java b/inception/inception-io-bioc/src/test/java/de/tudarmstadt/ukp/inception/io/bioc/BioCXmlDocumentReaderWriterTest.java index 70a71d2524b..a163a5a3ea6 100644 --- a/inception/inception-io-bioc/src/test/java/de/tudarmstadt/ukp/inception/io/bioc/BioCXmlDocumentReaderWriterTest.java +++ b/inception/inception-io-bioc/src/test/java/de/tudarmstadt/ukp/inception/io/bioc/BioCXmlDocumentReaderWriterTest.java @@ -30,18 +30,16 @@ import static org.apache.uima.fit.factory.CollectionReaderFactory.createReaderDescription; import static org.apache.uima.fit.factory.TypeSystemDescriptionFactory.createTypeSystemDescription; import static org.apache.uima.util.CasCreationUtils.mergeTypeSystems; +import static org.xmlunit.assertj3.XmlAssert.assertThat; +import static org.xmlunit.builder.Input.fromFile; import java.io.File; -import java.io.IOException; import org.apache.uima.UIMAFramework; import org.apache.uima.cas.CAS; -import org.custommonkey.xmlunit.XMLAssert; import org.dkpro.core.testing.IOTestRunner; import org.dkpro.core.testing.TestOptions; import org.junit.jupiter.api.Test; -import org.xml.sax.InputSource; -import org.xml.sax.SAXException; public class BioCXmlDocumentReaderWriterTest { @@ -72,12 +70,8 @@ public void testOneWay() throws Exception private void assertXmlEquals(File expected, File actual) { - try { - XMLAssert.assertXMLEqual(new InputSource(expected.getPath()), - new InputSource(actual.getPath())); - } - catch (SAXException | IOException e) { - throw new RuntimeException(e); - } + assertThat(fromFile(expected.getPath())) // + .and(fromFile(actual.getPath())) // + .areSimilar(); } } diff --git a/inception/inception-io-html/pom.xml b/inception/inception-io-html/pom.xml index b46b9c02360..37591065a0c 100644 --- a/inception/inception-io-html/pom.xml +++ b/inception/inception-io-html/pom.xml @@ -117,8 +117,8 @@ test - xmlunit - xmlunit + org.xmlunit + xmlunit-assertj3 test diff --git a/inception/inception-io-html/src/test/java/de/tudarmstadt/ukp/inception/io/html/dkprocore/HtmlDocumentReaderTest.java b/inception/inception-io-html/src/test/java/de/tudarmstadt/ukp/inception/io/html/dkprocore/HtmlDocumentReaderTest.java index 6cb03794996..13ec457e1c9 100644 --- a/inception/inception-io-html/src/test/java/de/tudarmstadt/ukp/inception/io/html/dkprocore/HtmlDocumentReaderTest.java +++ b/inception/inception-io-html/src/test/java/de/tudarmstadt/ukp/inception/io/html/dkprocore/HtmlDocumentReaderTest.java @@ -23,19 +23,17 @@ import static org.apache.uima.fit.util.JCasUtil.select; import static org.assertj.core.api.Assertions.assertThat; import static org.dkpro.core.testing.IOTestRunner.testOneWay; +import static org.xmlunit.builder.Input.fromFile; import java.io.File; -import java.io.IOException; import org.apache.uima.collection.CollectionReader; import org.apache.uima.fit.factory.JCasFactory; import org.apache.uima.jcas.JCas; -import org.custommonkey.xmlunit.XMLAssert; import org.dkpro.core.io.xmi.XmiWriter; import org.dkpro.core.testing.TestOptions; import org.junit.Test; -import org.xml.sax.InputSource; -import org.xml.sax.SAXException; +import org.xmlunit.assertj3.XmlAssert; import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Heading; import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Paragraph; @@ -143,12 +141,8 @@ public void testReadFileWithHeadAndDoctypeAndWriteAsXmi() throws Exception private void assertXmlEquals(File expected, File actual) { - try { - XMLAssert.assertXMLEqual(new InputSource(expected.getPath()), - new InputSource(actual.getPath())); - } - catch (SAXException | IOException e) { - throw new RuntimeException(e); - } + XmlAssert.assertThat(fromFile(expected.getPath())) // + .and(fromFile(actual.getPath())) // + .areSimilar(); } } diff --git a/inception/pom.xml b/inception/pom.xml index bf3c6dd9470..239317cd7ab 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -66,9 +66,9 @@ 1.10.0 5.4.0 3.24.2 + 2.9.1 4.2.0 - 1.6 2.4.0 3.4.1 @@ -404,6 +404,16 @@ assertj-core test + + org.xmlunit + xmlunit-core + test + + + org.xmlunit + xmlunit-assertj3 + test + com.squareup.okhttp3 mockwebserver @@ -1103,6 +1113,16 @@ assertj-core ${assertj.version} + + org.xmlunit + xmlunit-core + ${xmlunit.version} + + + org.xmlunit + xmlunit-assertj3 + ${xmlunit.version} + no.nav.security mock-oauth2-server @@ -1125,11 +1145,6 @@ awaitility ${awaitility.version} - - xmlunit - xmlunit - ${xmlunit.version} - @@ -2597,6 +2612,8 @@ org.mockito:mockito-core org.mockito:mockito-junit-jupiter org.assertj:assertj-core + org.xmlunit:xmlunit-core + org.xmlunit:xmlunit-assertj3 com.squareup.okhttp3:mockwebserver com.squareup.okhttp3:okhttp com.squareup.okio:okio From fc55ee03a8917f5184381c7a7e13ae342979753d Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 29 Jul 2023 16:45:40 +0200 Subject: [PATCH 3/4] #3673 - Update dependencies - springdoc 1.6. -> 2.9.1 - mock-oauth2-server 0.5.7 -> 0.5.10 - snappy-java 1.1.10.2 -> 1.1.10.3 --- inception/pom.xml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/inception/pom.xml b/inception/pom.xml index 239317cd7ab..3a0630d069c 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -81,7 +81,7 @@ 2.7.14 2.7.14 5.8.5 - 1.6.14 + 1.7.0 2.2.15 0.11.5 @@ -1100,13 +1100,10 @@ org.mockito - mockito-core - ${mockito.version} - - - org.mockito - mockito-junit-jupiter + mockito-bom ${mockito.version} + pom + import org.assertj @@ -1123,10 +1120,15 @@ xmlunit-assertj3 ${xmlunit.version} + + org.xmlunit + xmlunit-matchers + ${xmlunit.version} + no.nav.security mock-oauth2-server - 0.5.7 + 0.5.10 test @@ -1536,6 +1538,11 @@ slf4j-jdk14 ${slf4j.version} + + org.slf4j + jul-to-slf4j + ${slf4j.version} + org.jboss.logging @@ -1949,7 +1956,7 @@ org.xerial.snappy snappy-java - 1.1.10.2 + 1.1.10.3 From ca35aa6cc0dd81293800a493a88f32fe4d1f5075 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 29 Jul 2023 20:50:45 +0200 Subject: [PATCH 4/4] #3673 - Update dependencies - Introduce a BOM, a dependencies module and a test-dependencies module --- .../inception-annotation-storage/pom.xml | 31 - inception/inception-bom/LICENSE.txt | 202 ++ inception/inception-bom/pom.xml | 583 ++++ inception/inception-dependencies/LICENSE.txt | 202 ++ inception/inception-dependencies/pom.xml | 1339 +++++++++ inception/inception-diam/pom.xml | 40 - inception/inception-documents/pom.xml | 47 - inception/inception-project-export/pom.xml | 46 - .../inception-test-dependencies/LICENSE.txt | 202 ++ inception/inception-test-dependencies/pom.xml | 135 + inception/pom.xml | 2443 +---------------- pom.xml | 231 +- 12 files changed, 3022 insertions(+), 2479 deletions(-) create mode 100644 inception/inception-bom/LICENSE.txt create mode 100644 inception/inception-bom/pom.xml create mode 100644 inception/inception-dependencies/LICENSE.txt create mode 100644 inception/inception-dependencies/pom.xml create mode 100644 inception/inception-test-dependencies/LICENSE.txt create mode 100644 inception/inception-test-dependencies/pom.xml diff --git a/inception/inception-annotation-storage/pom.xml b/inception/inception-annotation-storage/pom.xml index d9734923751..be228483b57 100644 --- a/inception/inception-annotation-storage/pom.xml +++ b/inception/inception-annotation-storage/pom.xml @@ -122,41 +122,10 @@ - - org.springframework.boot - spring-boot-test - test - - - org.springframework.boot - spring-boot-test-autoconfigure - test - org.apache.uima uimaj-document-annotation test - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - org.springframework.boot:spring-boot-test - org.springframework.boot:spring-boot-starter-data-jpa - org.hsqldb:hsqldb - - - - - - \ No newline at end of file diff --git a/inception/inception-bom/LICENSE.txt b/inception/inception-bom/LICENSE.txt new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/inception/inception-bom/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + 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. diff --git a/inception/inception-bom/pom.xml b/inception/inception-bom/pom.xml new file mode 100644 index 00000000000..6168f60a4b0 --- /dev/null +++ b/inception/inception-bom/pom.xml @@ -0,0 +1,583 @@ + + + 4.0.0 + + de.tudarmstadt.ukp.inception.app + inception + 29.0-SNAPSHOT + ../.. + + + inception-bom + INCEpTION - BOM + pom + + + + + de.tudarmstadt.ukp.inception.app + inception-doc + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-agreement + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-agreement + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-annotation + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-project + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-tagsets + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-curation + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-curation + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-search + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-workload + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-workload-dynamic + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-workload-matrix + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-workload-ui + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-search-core + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-search-pubannotation + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-search-pubmed + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-search-elastic + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-search-opensearch + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-external-search-solr + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-external-search + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-dashboard + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-dashboard-activity + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-kb + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-kb-fact-linking + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-html-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-html-recogito-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-pdf-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-pdf-editor2 + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-recommendation + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-recommendation-api + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-review-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-sharing + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-preferences + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-guidelines + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-schema + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-active-learning + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-core + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-kb + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-concept-linking + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-imls-opennlp + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-imls-elg + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-imls-hf + 29.0-SNAPSHOT + + + + de.tudarmstadt.ukp.inception.app + inception-imls-stringmatch + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-imls-external + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-imls-lapps + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-imls-weblicht + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-example-imls-data-majority + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-log + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-tutorial + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-testing + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-layer-docmetadata + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-feature-lookup + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-image + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-scheduling + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-ui-scheduling + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-search-core + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-search-mtas + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-api + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-js-api + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-api-annotation + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-annotation-storage + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-api-formats + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-documents + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-api-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-api-render + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-api-schema + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-bootstrap + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-brat-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-diag + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-constraints + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-export + 29.0-SNAPSHOT + + + + de.tudarmstadt.ukp.inception.app + inception-io-bioc + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-json + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-text + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-html + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-webanno-tsv + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-tei + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-conll + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-imscwb + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-intertext + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-perseus + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-nif + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-lif + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-tcf + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-xmi + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-telemetry + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-remote + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-security + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-model + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project-initializers + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project-initializers-basic + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project-initializers-doclabeling + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project-initializers-sentencelabeling + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project-initializers-wikidatalinking + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-project-export + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-curation-legacy + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-diam + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-diam-editor + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-support + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-support-standalone + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-model-export + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-io-xml + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-plugin-api + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-plugin-manager + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-versioning + 29.0-SNAPSHOT + + + de.tudarmstadt.ukp.inception.app + inception-websocket + 29.0-SNAPSHOT + + + + diff --git a/inception/inception-dependencies/LICENSE.txt b/inception/inception-dependencies/LICENSE.txt new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/inception/inception-dependencies/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + 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. diff --git a/inception/inception-dependencies/pom.xml b/inception/inception-dependencies/pom.xml new file mode 100644 index 00000000000..cfa6c938999 --- /dev/null +++ b/inception/inception-dependencies/pom.xml @@ -0,0 +1,1339 @@ + + + 4.0.0 + + de.tudarmstadt.ukp.inception.app + inception + 29.0-SNAPSHOT + ../.. + + + inception-dependencies + INCEpTION - Dependencies + pom + + + + + org.apache.uima + uimaj-core + ${uima.version} + + + org.apache.uima + uimaj-cpe + ${uima.version} + + + org.apache.uima + uimaj-tools + ${uima.version} + + + org.apache.uima + uimaj-json + ${uima.version} + + + org.apache.uima + uimaj-document-annotation + ${uima.version} + + + org.apache.uima + uimafit-core + ${uimafit.version} + + + org.apache.uima + uimafit-cpe + ${uimafit.version} + + + org.apache.uima + uimaj-io-json + ${uima-json.version} + + + org.json + json + ${json.version} + + + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + com.squareup.okhttp3 + okhttp-bom + ${okhttp.version} + pom + import + + + com.squareup.okio + okio-bom + ${okio.version} + pom + import + + + org.junit.platform + junit-platform-suite-engine + ${junit-platform.version} + + + org.junit.platform + junit-platform-suite-api + ${junit-platform.version} + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + org.assertj + assertj-core + ${assertj.version} + + + org.xmlunit + xmlunit-core + ${xmlunit.version} + + + org.xmlunit + xmlunit-assertj3 + ${xmlunit.version} + + + org.xmlunit + xmlunit-matchers + ${xmlunit.version} + + + no.nav.security + mock-oauth2-server + 0.5.10 + test + + + ch.qos.logback + logback-classic + + + + + com.nimbusds + nimbus-jose-jwt + 9.31 + + + org.awaitility + awaitility + ${awaitility.version} + + + + + com.googlecode.wicket-jquery-ui + wicket-jquery-ui + ${wicket-jquery-ui.version} + + + com.googlecode.wicket-jquery-ui + wicket-jquery-ui-core + ${wicket-jquery-ui.version} + + + com.googlecode.wicket-jquery-ui + wicket-jquery-ui-theme-uilightness + ${wicket-jquery-ui.version} + + + com.googlecode.wicket-jquery-ui + wicket-kendo-ui + ${wicket-jquery-ui.version} + + + com.googlecode.wicket-jquery-ui + wicket-kendo-ui-theme-bootstrap + ${wicket-jquery-ui.version} + + + + + org.wicketstuff + wicketstuff-htmlcompressor + ${wicketstuff.version} + + + org.wicketstuff + wicketstuff-select2 + ${wicketstuff.version} + + + org.wicketstuff + wicket-datetime + ${wicketstuff.version} + + + org.wicketstuff + wicketstuff-urlfragment + ${wicketstuff.version} + + + org.wicketstuff + wicketstuff-input-events + ${wicketstuff.version} + + + org.slf4j + slf4j-log4j12 + + + + + org.wicketstuff + wicketstuff-progressbar + ${wicketstuff.version} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + + + org.wicketstuff + wicketstuff-annotation + ${wicketstuff.version} + + + org.wicketstuff + wicketstuff-annotationeventdispatcher + ${wicketstuff.version} + + + + de.agilecoders.wicket + wicket-bootstrap-core + ${wicket-bootstrap.version} + + + org.webjars + bootstrap + + + + + de.agilecoders.wicket + wicket-bootstrap-extensions + ${wicket-bootstrap.version} + + + org.webjars + jquery + + + org.webjars + jquery-ui + + + org.webjars + jquerypp + + + com.google.javascript + closure-compiler-unshaded + + + javax.servlet + javax.servlet-api + + + org.webjars + tempusdominus-bootstrap-4 + + + org.webjars + spin-js + + + org.webjars.npm + summernote + + + org.webjars.npm + inputmask + + + org.webjars + typeaheadjs + + + org.webjars + momentjs + + + + + de.agilecoders.wicket + jquery-selectors + ${wicket-jquery-selectors.version} + + + de.agilecoders.wicket + wicket-bootstrap-themes + ${wicket-bootstrap.version} + + + de.agilecoders.wicket.webjars + wicket-webjars + ${wicket-webjars.version} + + + com.giffing.wicket.spring.boot.starter + wicket-spring-boot-starter + ${wicket-spring-boot.version} + + + com.giffing.wicket.spring.boot.starter + wicket-spring-boot-context + ${wicket-spring-boot.version} + + + org.mozilla + rhino-runtime + 1.7.14 + + + + org.webjars.npm + jquery + ${jquery.version} + + + org.webjars + jquery-ui + ${jquery-ui.version} + + + + org.webjars + font-awesome + 5.15.4 + + + org.webjars.npm + webstomp-client + 1.2.6 + + + org.webjars.bower + jquery.scrollTo + 2.1.2 + + + + org.webjars.bower + jquery + + + + + org.webjars.bower + hover + ${hover.version} + + + org.webjars + animate.css + ${animate-css.version} + + + org.sharegov + mjson + 1.4.1 + provided + + + junit + junit + + + + + + org.apache.pdfbox + pdfbox + ${pdfbox.version} + + + org.apache.pdfbox + fontbox + ${pdfbox.version} + + + + com.github.rjeschke + txtmark + 0.13 + + + + com.googlecode.owasp-java-html-sanitizer + owasp-java-html-sanitizer + 20220608.1 + + + + commons-beanutils + commons-beanutils + 1.9.4 + + + org.apache.commons + commons-collections4 + 4.4 + + + org.apache.commons + commons-csv + 1.10.0 + + + commons-fileupload + commons-fileupload + 1.5 + + + org.dom4j + dom4j + 2.1.4 + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + + org.pf4j + pf4j + ${pf4j.version} + + + org.pf4j + pf4j-spring + 0.5.0 + + + org.slf4j + slf4j-log4j12 + + + + + + commons-logging + commons-logging-api + 1.1 + + + commons-logging + commons-logging + 1.2 + + + + + org.apache.jena + jena-fuseki-main + ${jena.version} + + + org.slf4j + slf4j-log4j12 + + + + + org.apache.jena + jena-text + ${jena.version} + + + org.apache.jena + jena-arq + ${jena.version} + + + com.google.protobuf + protobuf-java + + + org.glassfish + jakarta.json + + + + + org.apache.jena + jena-tdb + ${jena.version} + + + org.apache.jena + jena-core + ${jena.version} + + + org.apache.thrift + libthrift + 0.17.0 + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + + + + org.jboss.logging + jboss-logging + ${jboss.logging.version} + + + + io.sentry + sentry-bom + ${sentry.version} + pom + import + + + + javax.servlet + javax.servlet-api + ${servlet-api.version} + + + + com.fasterxml.woodstox + woodstox-core + 6.5.1 + + + org.codehaus.woodstox + stax2-api + 4.2.1 + + + + com.github.openjson + openjson + 1.0.12 + + + + it.unimi.dsi + fastutil + 8.5.12 + + + + org.hibernate + hibernate-core + ${hibernate.version} + + + xml-apis + xml-apis + + + + + org.hibernate + hibernate-entitymanager + ${hibernate.version} + + + org.hibernate + hibernate-validator + ${hibernate.validator.version} + + + org.hibernate.validator + hibernate-validator-annotation-processor + ${hibernate.validator.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate.validator.version} + + + javax.validation + validation-api + 2.0.1.Final + + + javax.persistence + javax.persistence-api + 2.2 + + + org.javassist + javassist + 3.29.2-GA + + + net.bytebuddy + byte-buddy + 1.14.5 + + + net.bytebuddy + byte-buddy-agent + 1.14.5 + + + org.wicketstuff + wicketstuff-clipboardjs + ${wicketstuff.version} + + + + + org.springframework + spring-framework-bom + ${spring.version} + pom + import + + + + + org.springframework.data + spring-data-jpa + ${spring.data.version} + + + org.springframework.data + spring-data-commons + ${spring.data.version} + + + + + com.fasterxml.jackson + jackson-bom + ${jackson.version} + pom + import + + + com.fasterxml.jackson + jackson-databind + ${jackson.version}.2 + + + + com.networknt + json-schema-validator + 1.0.83 + + + + + org.springframework.security + spring-security-bom + ${spring.security.version} + pom + import + + + com.nimbusds + oauth2-oidc-sdk + 9.43.1 + + + io.jsonwebtoken + jjwt-api + ${jjwt.version} + + + io.jsonwebtoken + jjwt-impl + ${jjwt.version} + + + io.jsonwebtoken + jjwt-gson + ${jjwt.version} + + + org.opensaml + opensaml-bom + 4.3.0 + pom + import + + + + + org.springdoc + springdoc-openapi-ui + ${springdoc.version} + + + org.springdoc + springdoc-openapi-common + ${springdoc.version} + + + io.swagger.core.v3 + swagger-annotations + ${swagger.version} + + + io.swagger.core.v3 + swagger-models + ${swagger.version} + + + + + org.apache.tomcat.embed + tomcat-embed-core + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-websocket + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-el + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-jasper + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-logging-juli + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-logging-log4j + ${tomcat.version} + + + org.apache.tomcat + tomcat-annotations-api + ${tomcat.version} + + + + org.hsqldb + hsqldb + 2.7.2 + + + + org.dkpro.statistics + dkpro-statistics-agreement + 2.2.1 + + + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + + + + eu.clarin.weblicht + wlfxb + 1.4.3 + + + + org.eclipse.persistence + org.eclipse.persistence.moxy + + + + + + + + org.jsoup + jsoup + 1.16.1 + + + + + + org.apache.lucene + lucene-core + ${lucene.version} + + + org.apache.lucene + lucene-queries + ${lucene.version} + + + org.apache.lucene + lucene-highlighter + ${lucene.version} + + + org.apache.lucene + lucene-memory + ${lucene.version} + + + org.apache.lucene + lucene-backwards-codeces + ${lucene.version} + + + org.apache.lucene + lucene-spatial + ${lucene.version} + + + org.apache.lucene + lucene-spatial-extras + ${lucene.version} + + + org.apache.lucene + lucene-misc + ${lucene.version} + + + org.apache.lucene + lucene-join + ${lucene.version} + + + org.apache.lucene + lucene-analyzers-common + ${lucene.version} + + + org.apache.lucene + lucene-queryparser + ${lucene.version} + + + org.apache.lucene + lucene-codecs + ${lucene.version} + + + org.apache.lucene + lucene-backward-codecs + ${lucene.version} + + + org.apache.solr + solr-test-framework + ${solr.version} + test + + + org.textexploration.mtas + mtas + ${mtas.version} + + + + + org.apache.solr + solr-core + + + + + + commons-io + commons-io + 2.13.0 + + + org.apache.commons + commons-text + 1.10.0 + + + org.apache.commons + commons-lang3 + 3.13.0 + + + org.apache.commons + commons-compress + 1.23.0 + + + commons-codec + commons-codec + 1.16.0 + + + commons-validator + commons-validator + 1.7 + + + com.github.ben-manes.caffeine + caffeine + 3.1.7 + + + org.xerial.snappy + snappy-java + 1.1.10.3 + + + + + javax.xml.bind + jaxb-api + 2.3.1 + + + com.sun.xml.bind + jaxb-core + 2.3.0.1 + + + com.sun.xml.bind + jaxb-impl + 2.3.8 + + + org.glassfish.jaxb + jaxb-runtime + 2.3.8 + + + javax.activation + javax.activation-api + 1.2.0 + + + + jaxen + jaxen + 1.2.0 + + + dom4j + dom4j + + + xom + xom + + + jdom + jdom + + + + + + org.dkpro.core + dkpro-core-testing-asl + ${dkpro.version} + + + org.slf4j + slf4j-log4j12 + + + junit + junit + + + + + org.dkpro.core + dkpro-core-io-xml-asl + ${dkpro.version} + + + org.dkpro.core + dkpro-core-api-xml-asl + + + + + org.dkpro.core + dkpro-core-io-html-asl + ${dkpro.version} + + + org.dkpro.core + dkpro-core-api-xml-asl + + + + + + org.eclipse.rdf4j + rdf4j-bom + ${rdf4j.version} + pom + import + + + org.eclipse.rdf4j + rdf4j-sail-lucene + ${rdf4j.version} + + + org.locationtech.spatial4j + spatial4j + + + + + + com.github.jsonld-java + jsonld-java + 0.13.4 + + + org.apache.httpcomponents + httpclient-osgi + + + org.apache.httpcomponents + httpcore-osgi + + + + + + org.elasticsearch + elasticsearch + ${elasticsearch.version} + + + org.elasticsearch.client + transport + ${elasticsearch.version} + + + org.elasticsearch.client + elasticsearch-rest-client + ${elasticsearch.version} + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + ${elasticsearch.version} + + + + org.opensearch + opensearch + ${opensearch.version} + + + org.opensearch.client + transport + ${opensearch.version} + + + org.opensearch.client + opensearch-rest-client + ${opensearch.version} + + + org.opensearch.client + opensearch-rest-high-level-client + ${opensearch.version} + + + org.codelibs.opensearch + opensearch-runner + + 1.3.7.0 + + + net.java.dev.jna + jna + 5.13.0 + + + + org.eclipse.jgit + org.eclipse.jgit + 5.13.1.202206130422-r + + + + org.webjars + c3 + 0.6.6 + + + + org.webjars + d3js + 5.5.0 + + + + org.webjars.bowergithub.xbsoftware + enjoyhint + 3.1.0 + + + org.webjars.bowergithub.flesler + jquery.scrollto + + + org.webjars.bowergithub.jquery + jquery-dist + + + org.webjars.bowergithub.ericdrowell + kineticjs + + + + + org.webjars.npm + kinetic + 5.2.0 + + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.driver.version} + + + org.postgresql + postgresql + ${postgres.driver.version} + + + + org.springframework.boot + spring-boot-starter-logging + ${spring.boot.version} + + + ch.qos.logback + logback-classic + + + log4j-to-slf4j + org.apache.logging.log4j + + + + + org.springframework.boot + spring-boot-starter-web + ${spring.boot.version} + + + ch.qos.logback + logback-classic + + + log4j-to-slf4j + org.apache.logging.log4j + + + + + + org.apache.ant + ant + 1.10.13 + + + + info.picocli + picocli + 4.7.4 + + + info.picocli + picocli-spring-boot-starter + 4.7.4 + + + + + org.apache.logging.log4j + log4j-bom + ${log4j2.version} + pom + import + + + org.apache.logging.log4j + log4j-core + ${log4j2.version} + + + org.apache.logging.log4j + log4j-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-layout-template-json + ${log4j2.version} + + + org.apache.logging.log4j + log4j-slf4j2-impl + ${log4j2.version} + + + org.apache.logging.log4j + log4j-spring-boot + ${log4j2.version} + + + + + org.springframework.boot + spring-boot-dependencies + ${spring.boot.version} + pom + import + + + + + org.apache.wicket + wicket-parent + ${wicket.version} + pom + import + + + + + org.dkpro.core + dkpro-core-asl + ${dkpro.version} + pom + import + + + org.dkpro.core + dkpro-core-api-resources-asl + ${dkpro.version} + + + + + + + + org.apache.ivy + ivy + 2.5.1 + + + + diff --git a/inception/inception-diam/pom.xml b/inception/inception-diam/pom.xml index 73e511d1d73..a1913f4d271 100644 --- a/inception/inception-diam/pom.xml +++ b/inception/inception-diam/pom.xml @@ -213,46 +213,16 @@ inception-project test - - org.junit.jupiter - junit-jupiter-api - test - org.apache.tomcat.embed tomcat-embed-websocket test - - org.springframework.boot - spring-boot-starter-data-jpa - test - - - org.springframework.boot - spring-boot-test - test - org.springframework.boot spring-boot-starter-web test - - org.springframework.boot - spring-boot-test-autoconfigure - test - - - org.springframework - spring-test - test - - - org.springframework.security - spring-security-test - test - org.springframework.security spring-security-config @@ -263,16 +233,6 @@ spring-security-web test - - org.hsqldb - hsqldb - test - - - org.awaitility - awaitility - test - de.tudarmstadt.ukp.inception.app inception-io-text diff --git a/inception/inception-documents/pom.xml b/inception/inception-documents/pom.xml index 2896ec325e4..79f13e1d608 100644 --- a/inception/inception-documents/pom.xml +++ b/inception/inception-documents/pom.xml @@ -132,52 +132,5 @@ uimafit-core test - - org.springframework.boot - spring-boot-starter-data-jpa - test - - - org.springframework.boot - spring-boot-starter-logging - - - - - org.hsqldb - hsqldb - test - - - org.springframework.boot - spring-boot-test - test - - - org.springframework.boot - spring-boot-test-autoconfigure - test - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - org.springframework.boot:spring-boot-test - org.springframework.boot:spring-boot-starter-data-jpa - org.hsqldb:hsqldb - - - - - - \ No newline at end of file diff --git a/inception/inception-project-export/pom.xml b/inception/inception-project-export/pom.xml index b0935793500..e64b22ffb95 100644 --- a/inception/inception-project-export/pom.xml +++ b/inception/inception-project-export/pom.xml @@ -181,51 +181,21 @@ javax.persistence-api test - - org.junit.jupiter - junit-jupiter-api - test - org.springframework.boot spring-boot test - - org.springframework.boot - spring-boot-starter-data-jpa - test - - - org.springframework.boot - spring-boot-test - test - org.springframework.boot spring-boot-starter-web test - - org.springframework.boot - spring-boot-test-autoconfigure - test - - - org.springframework - spring-test - test - org.springframework.security spring-security-crypto test - - org.springframework.security - spring-security-test - test - org.springframework.security spring-security-config @@ -236,16 +206,6 @@ spring-security-web test - - org.hsqldb - hsqldb - test - - - org.awaitility - awaitility - test - de.tudarmstadt.ukp.inception.app inception-project @@ -313,12 +273,6 @@ org.springframework:spring-websocket - - - org.springframework.boot:spring-boot-starter-web - org.springframework.boot:spring-boot-test-autoconfigure - org.springframework.security:spring-security-test - diff --git a/inception/inception-test-dependencies/LICENSE.txt b/inception/inception-test-dependencies/LICENSE.txt new file mode 100644 index 00000000000..d6456956733 --- /dev/null +++ b/inception/inception-test-dependencies/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + 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. diff --git a/inception/inception-test-dependencies/pom.xml b/inception/inception-test-dependencies/pom.xml new file mode 100644 index 00000000000..967d3428a39 --- /dev/null +++ b/inception/inception-test-dependencies/pom.xml @@ -0,0 +1,135 @@ + + + 4.0.0 + + de.tudarmstadt.ukp.inception.app + inception + 29.0-SNAPSHOT + ../.. + + + inception-test-dependencies + INCEpTION - Test Dependencies + pom + + + + org.junit.jupiter + junit-jupiter-api + + + org.junit.jupiter + junit-jupiter-params + + + org.junit.platform + junit-platform-suite-engine + + + org.junit.platform + junit-platform-suite-api + + + org.springframework + spring-test + + + org.mockito + mockito-core + + + org.mockito + mockito-junit-jupiter + + + org.awaitility + awaitility + + + org.assertj + assertj-core + + + org.xmlunit + xmlunit-core + + + org.xmlunit + xmlunit-assertj3 + + + com.squareup.okhttp3 + mockwebserver + + + com.squareup.okhttp3 + okhttp + + + com.squareup.okio + okio + + + com.squareup.okio + okio-jvm + + + org.springframework.security + spring-security-test + + + org.springframework.boot + spring-boot-starter-validation + + + org.springframework.boot + spring-boot-test + + + org.springframework.boot + spring-boot-test-autoconfigure + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-logging + + + + + org.hsqldb + hsqldb + + + + + + + de.tudarmstadt.ukp.inception.app + inception-dependencies + ${project.version} + pom + import + + + + diff --git a/inception/pom.xml b/inception/pom.xml index 3a0630d069c..a5af8d4be69 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -22,2311 +22,129 @@ inception 29.0-SNAPSHOT - inception-app - pom - INCEpTION - Application - Towards an Infrastructure for the Distributed Exploration and Annotation of Large Corpora and Knowledge - Bases - - https://inception-project.github.io - 2018 - - - Apache License Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - https://github.com/inception-project/inception/issues - GitHub Issues - - - scm:git:https://github.com/inception-project/inception.git - scm:git:https://github.com/inception-project/inception.git - https://github.com/inception-project/inception - inception-29.0-beta-2 - - - - ukp-oss - https://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-ukp-releases-local - - - - 6g - 11 - ${maven.compiler.release} - ${maven.compiler.release} - yyyy-MM-dd HH:mm - ${session.executionRootDirectory}/cache/dkpro-core-datasets - slow - - 5.10.0 - 1.10.0 - 5.4.0 - 3.24.2 - 2.9.1 - - 4.2.0 - - 2.4.0 - 3.4.1 - 3.4.0 - 0.5.0 - - 2.0.29 - - 5.3.29 - 2.7.14 - 2.7.14 - 5.8.5 - 1.7.0 - 2.2.15 - 0.11.5 - - 2.0.7 - 2.20.0 - 3.5.3.Final - 6.27.0 - - 9.0.78 - 4.0.1 - - 2.7.9 - 42.6.0 - 5.6.15.Final - 6.2.5.Final - - 9.14.0 - 9.14.0 - 9.12.0 - 6.0.4 - 3.0.5 - 3.0.7 - - 3.1.6 - - - 8.11.2 - 8.11.2 - 8.11.1.0 - - - - 7.17.12 - - - - - 1.3.11 - - - - 4.3.4 - - - 4.6.1 - - - - 2.2.3 - 2.5.10 - 2.2.9 - - 20230227 - 2.6.0 - 2.15.2 - 1.33 - 4.11.0 - 3.4.0 - - ci - - 18.14.2 - 5.3.0 - 3.2.6 - ^4.3.6 - ^7.0.3 - ^2.0.1 - ^1.11.4 - ~0.16.17 - ~2.5.0 - ^0.7.3 - ^2.3.0-plugins.0 - ^8.31.0 - ^0.7.2 - ^17.0.0 - ^2.26.0 - ^10.1.0 - ^15.6.0 - ^6.1.1 - ^4.0.0 - ^3.3.0 - ^3.1.1 - 2.0.2 - ^4.3.1 - ^10.1.0 - ^20.0.0 - ^3.0.2 - 3.7.0 - 1.13.2 - ^10.0.0 - ^2.1.0 - 2.14.305 - 1.8.2 - 0.1.11 - 1.7.7 - ^1.57.1 - ^6.1.2 - ^3.55.0 - ^5.0.0 - ^3.1.2 - ^3.0.8 - ^3.1.3 - ^4.9.4 - ^5.47.1 - ^5.47.1 - ^3.0.0 - ^3.5.14 - ^9.1.1 - ^2.3.5 - ^1.19.19 - ^8.3.2 - ^1.19.11 - ^17.6.0 - - - - - - - - - - - - shiboleth-releases - https://build.shibboleth.net/maven/releases/ - - true - - - false - - - - - - - - - - - org.apache.logging.log4j - log4j-core - runtime - - - - org.apache.logging.log4j - log4j-spring-boot - runtime - - - - org.apache.logging.log4j - log4j-slf4j2-impl - runtime - - - - org.slf4j - log4j-over-slf4j - runtime - - - - org.slf4j - jcl-over-slf4j - runtime - - - - org.apache.logging.log4j - log4j-layout-template-json - - - - commons-logging - commons-logging - provided - - - - - com.google.code.findbugs - jsr305 - provided - - - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - - javax.xml.bind - jaxb-api - runtime - - - com.sun.xml.bind - jaxb-core - runtime - - - com.sun.xml.bind - jaxb-impl - runtime - - - javax.activation - javax.activation-api - runtime - - - - - org.junit.jupiter - junit-jupiter-api - test - - - org.junit.jupiter - junit-jupiter-params - test - - - org.junit.platform - junit-platform-suite-engine - test - - - org.junit.platform - junit-platform-suite-api - test - - - org.springframework - spring-test - test - - - org.mockito - mockito-core - test - - - org.mockito - mockito-junit-jupiter - test - - - org.awaitility - awaitility - test - - - org.assertj - assertj-core - test - - - org.xmlunit - xmlunit-core - test - - - org.xmlunit - xmlunit-assertj3 - test - - - com.squareup.okhttp3 - mockwebserver - test - - - com.squareup.okhttp3 - okhttp - test - - - com.squareup.okio - okio - test - - - com.squareup.okio - okio-jvm - ${okio.version} - test - - - org.springframework.boot - spring-boot-starter-validation - test - - - org.springframework.boot - spring-boot-test - test - - - org.springframework.boot - spring-boot-test-autoconfigure - test - - - org.springframework.boot - spring-boot-starter-data-jpa - test - - - org.springframework.boot - spring-boot-starter-logging - - - - - org.hsqldb - hsqldb - test - - - - - - - org.apache.uima - uimaj-core - ${uima.version} - - - org.apache.uima - uimaj-cpe - ${uima.version} - - - org.apache.uima - uimaj-tools - ${uima.version} - - - org.apache.uima - uimaj-json - ${uima.version} - - - org.apache.uima - uimaj-document-annotation - ${uima.version} - - - org.apache.uima - uimafit-core - ${uimafit.version} - - - org.apache.uima - uimafit-cpe - ${uimafit.version} - - - org.apache.uima - uimaj-io-json - ${uima-json.version} - - - org.json - json - ${json.version} - - - - - de.tudarmstadt.ukp.inception.app - inception-doc - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-agreement - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-agreement - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-annotation - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-project - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-tagsets - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-curation - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-curation - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-search - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-workload - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-workload-dynamic - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-workload-matrix - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-workload-ui - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-search-core - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-search-pubannotation - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-search-pubmed - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-search-elastic - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-search-opensearch - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-external-search-solr - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-external-search - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-dashboard - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-dashboard-activity - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-kb - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-kb-fact-linking - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-html-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-html-recogito-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-pdf-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-pdf-editor2 - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-recommendation - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-recommendation-api - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-review-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-sharing - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-preferences - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-guidelines - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-schema - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-active-learning - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-core - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-kb - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-concept-linking - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-imls-opennlp - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-imls-elg - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-imls-hf - 29.0-SNAPSHOT - - - - de.tudarmstadt.ukp.inception.app - inception-imls-stringmatch - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-imls-external - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-imls-lapps - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-imls-weblicht - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-example-imls-data-majority - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-log - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-tutorial - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-testing - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-layer-docmetadata - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-feature-lookup - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-image - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-scheduling - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-ui-scheduling - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-search-core - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-search-mtas - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-api - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-js-api - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-api-annotation - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-annotation-storage - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-api-formats - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-documents - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-api-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-api-render - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-api-schema - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-bootstrap - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-brat-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-diag - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-constraints - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-export - 29.0-SNAPSHOT - - - - de.tudarmstadt.ukp.inception.app - inception-io-bioc - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-json - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-text - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-html - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-webanno-tsv - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-tei - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-conll - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-imscwb - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-intertext - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-perseus - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-nif - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-lif - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-tcf - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-xmi - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-telemetry - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-remote - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-security - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-model - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project-initializers - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project-initializers-basic - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project-initializers-doclabeling - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project-initializers-sentencelabeling - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project-initializers-wikidatalinking - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-project-export - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-curation-legacy - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-diam - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-diam-editor - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-support - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-support-standalone - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-model-export - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-io-xml - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-plugin-api - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-plugin-manager - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-versioning - 29.0-SNAPSHOT - - - de.tudarmstadt.ukp.inception.app - inception-websocket - 29.0-SNAPSHOT - - - - - org.junit - junit-bom - ${junit-jupiter.version} - pom - import - - - com.squareup.okhttp3 - okhttp-bom - ${okhttp.version} - pom - import - - - com.squareup.okio - okio-bom - ${okio.version} - pom - import - - - org.junit.platform - junit-platform-suite-engine - ${junit-platform.version} - - - org.junit.platform - junit-platform-suite-api - ${junit-platform.version} - - - org.mockito - mockito-bom - ${mockito.version} - pom - import - - - org.assertj - assertj-core - ${assertj.version} - - - org.xmlunit - xmlunit-core - ${xmlunit.version} - - - org.xmlunit - xmlunit-assertj3 - ${xmlunit.version} - - - org.xmlunit - xmlunit-matchers - ${xmlunit.version} - - - no.nav.security - mock-oauth2-server - 0.5.10 - test - - - ch.qos.logback - logback-classic - - - - - com.nimbusds - nimbus-jose-jwt - 9.31 - - - org.awaitility - awaitility - ${awaitility.version} - - - - - com.googlecode.wicket-jquery-ui - wicket-jquery-ui - ${wicket-jquery-ui.version} - - - com.googlecode.wicket-jquery-ui - wicket-jquery-ui-core - ${wicket-jquery-ui.version} - - - com.googlecode.wicket-jquery-ui - wicket-jquery-ui-theme-uilightness - ${wicket-jquery-ui.version} - - - com.googlecode.wicket-jquery-ui - wicket-kendo-ui - ${wicket-jquery-ui.version} - - - com.googlecode.wicket-jquery-ui - wicket-kendo-ui-theme-bootstrap - ${wicket-jquery-ui.version} - - - - - org.wicketstuff - wicketstuff-htmlcompressor - ${wicketstuff.version} - - - org.wicketstuff - wicketstuff-select2 - ${wicketstuff.version} - - - org.wicketstuff - wicket-datetime - ${wicketstuff.version} - - - org.wicketstuff - wicketstuff-urlfragment - ${wicketstuff.version} - - - org.wicketstuff - wicketstuff-input-events - ${wicketstuff.version} - - - org.slf4j - slf4j-log4j12 - - - - - org.wicketstuff - wicketstuff-progressbar - ${wicketstuff.version} - - - org.slf4j - slf4j-log4j12 - - - log4j - log4j - - - - - org.wicketstuff - wicketstuff-annotation - ${wicketstuff.version} - - - org.wicketstuff - wicketstuff-annotationeventdispatcher - ${wicketstuff.version} - - - - de.agilecoders.wicket - wicket-bootstrap-core - ${wicket-bootstrap.version} - - - org.webjars - bootstrap - - - - - de.agilecoders.wicket - wicket-bootstrap-extensions - ${wicket-bootstrap.version} - - - org.webjars - jquery - - - org.webjars - jquery-ui - - - org.webjars - jquerypp - - - com.google.javascript - closure-compiler-unshaded - - - javax.servlet - javax.servlet-api - - - org.webjars - tempusdominus-bootstrap-4 - - - org.webjars - spin-js - - - org.webjars.npm - summernote - - - org.webjars.npm - inputmask - - - org.webjars - typeaheadjs - - - org.webjars - momentjs - - - - - de.agilecoders.wicket - jquery-selectors - ${wicket-jquery-selectors.version} - - - de.agilecoders.wicket - wicket-bootstrap-themes - ${wicket-bootstrap.version} - - - de.agilecoders.wicket.webjars - wicket-webjars - ${wicket-webjars.version} - - - com.giffing.wicket.spring.boot.starter - wicket-spring-boot-starter - ${wicket-spring-boot.version} - - - com.giffing.wicket.spring.boot.starter - wicket-spring-boot-context - ${wicket-spring-boot.version} - - - org.mozilla - rhino-runtime - 1.7.14 - - - - org.webjars.npm - jquery - ${jquery.version} - - - org.webjars - jquery-ui - ${jquery-ui.version} - - - - org.webjars - font-awesome - 5.15.4 - - - org.webjars.npm - webstomp-client - 1.2.6 - - - org.webjars.bower - jquery.scrollTo - 2.1.2 - - - - org.webjars.bower - jquery - - - - - org.webjars.bower - hover - ${hover.version} - - - org.webjars - animate.css - ${animate-css.version} - - - org.sharegov - mjson - 1.4.1 - provided - - - junit - junit - - - - - - org.apache.pdfbox - pdfbox - ${pdfbox.version} - - - org.apache.pdfbox - fontbox - ${pdfbox.version} - - - - com.github.rjeschke - txtmark - 0.13 - - - - com.googlecode.owasp-java-html-sanitizer - owasp-java-html-sanitizer - 20220608.1 - - - - commons-beanutils - commons-beanutils - 1.9.4 - - - org.apache.commons - commons-collections4 - 4.4 - - - org.apache.commons - commons-csv - 1.10.0 - - - commons-fileupload - commons-fileupload - 1.5 - - - org.dom4j - dom4j - 2.1.4 - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - - org.pf4j - pf4j - ${pf4j.version} - - - org.pf4j - pf4j-spring - 0.5.0 - - - org.slf4j - slf4j-log4j12 - - - - - - commons-logging - commons-logging-api - 1.1 - - - commons-logging - commons-logging - 1.2 - - - - - org.apache.jena - jena-fuseki-main - ${jena.version} - - - org.slf4j - slf4j-log4j12 - - - - - org.apache.jena - jena-text - ${jena.version} - - - org.apache.jena - jena-arq - ${jena.version} - - - com.google.protobuf - protobuf-java - - - org.glassfish - jakarta.json - - - - - org.apache.jena - jena-tdb - ${jena.version} - - - org.apache.jena - jena-core - ${jena.version} - - - org.apache.thrift - libthrift - 0.17.0 - - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - - - org.slf4j - log4j-over-slf4j - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - org.slf4j - slf4j-jdk14 - ${slf4j.version} - - - org.slf4j - jul-to-slf4j - ${slf4j.version} - - - - org.jboss.logging - jboss-logging - ${jboss.logging.version} - - - - io.sentry - sentry-bom - ${sentry.version} - pom - import - - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - - com.fasterxml.woodstox - woodstox-core - 6.5.1 - - - org.codehaus.woodstox - stax2-api - 4.2.1 - - - - com.github.openjson - openjson - 1.0.12 - - - - it.unimi.dsi - fastutil - 8.5.12 - - - - org.hibernate - hibernate-core - ${hibernate.version} - - - xml-apis - xml-apis - - - - - org.hibernate - hibernate-entitymanager - ${hibernate.version} - - - org.hibernate - hibernate-validator - ${hibernate.validator.version} - - - org.hibernate.validator - hibernate-validator-annotation-processor - ${hibernate.validator.version} - - - org.hibernate.validator - hibernate-validator - ${hibernate.validator.version} - - - javax.validation - validation-api - 2.0.1.Final - - - javax.persistence - javax.persistence-api - 2.2 - - - org.javassist - javassist - 3.29.2-GA - - - net.bytebuddy - byte-buddy - 1.14.5 - - - net.bytebuddy - byte-buddy-agent - 1.14.5 - - - org.wicketstuff - wicketstuff-clipboardjs - ${wicketstuff.version} - - - - - org.springframework - spring-framework-bom - ${spring.version} - pom - import - - - - - org.springframework.data - spring-data-jpa - ${spring.data.version} - - - org.springframework.data - spring-data-commons - ${spring.data.version} - - - - - com.fasterxml.jackson - jackson-bom - ${jackson.version} - pom - import - - - com.fasterxml.jackson - jackson-databind - ${jackson.version}.2 - - - - com.networknt - json-schema-validator - 1.0.83 - - - - - org.springframework.security - spring-security-bom - ${spring.security.version} - pom - import - - - com.nimbusds - oauth2-oidc-sdk - 9.43.1 - - - io.jsonwebtoken - jjwt-api - ${jjwt.version} - - - io.jsonwebtoken - jjwt-impl - ${jjwt.version} - - - io.jsonwebtoken - jjwt-gson - ${jjwt.version} - - - org.opensaml - opensaml-bom - 4.3.0 - pom - import - - - - - org.springdoc - springdoc-openapi-ui - ${springdoc.version} - - - org.springdoc - springdoc-openapi-common - ${springdoc.version} - - - io.swagger.core.v3 - swagger-annotations - ${swagger.version} - - - io.swagger.core.v3 - swagger-models - ${swagger.version} - - - - - org.apache.tomcat.embed - tomcat-embed-core - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-websocket - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-el - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-jasper - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-logging-juli - ${tomcat.version} - - - org.apache.tomcat.embed - tomcat-embed-logging-log4j - ${tomcat.version} - - - org.apache.tomcat - tomcat-annotations-api - ${tomcat.version} - - - - org.hsqldb - hsqldb - 2.7.2 - - - - org.dkpro.statistics - dkpro-statistics-agreement - 2.2.1 - - - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - - - - eu.clarin.weblicht - wlfxb - 1.4.3 - - - - org.eclipse.persistence - org.eclipse.persistence.moxy - - - - - - - - org.jsoup - jsoup - 1.16.1 - - - - - - org.apache.lucene - lucene-core - ${lucene.version} - - - org.apache.lucene - lucene-queries - ${lucene.version} - - - org.apache.lucene - lucene-highlighter - ${lucene.version} - - - org.apache.lucene - lucene-memory - ${lucene.version} - - - org.apache.lucene - lucene-backwards-codeces - ${lucene.version} - - - org.apache.lucene - lucene-spatial - ${lucene.version} - - - org.apache.lucene - lucene-spatial-extras - ${lucene.version} - - - org.apache.lucene - lucene-misc - ${lucene.version} - - - org.apache.lucene - lucene-join - ${lucene.version} - - - org.apache.lucene - lucene-analyzers-common - ${lucene.version} - - - org.apache.lucene - lucene-queryparser - ${lucene.version} - - - org.apache.lucene - lucene-codecs - ${lucene.version} - - - org.apache.lucene - lucene-backward-codecs - ${lucene.version} - - - org.apache.solr - solr-test-framework - ${solr.version} - test - - - org.textexploration.mtas - mtas - ${mtas.version} - - - - - org.apache.solr - solr-core - - - - - - commons-io - commons-io - 2.13.0 - - - org.apache.commons - commons-text - 1.10.0 - - - org.apache.commons - commons-lang3 - 3.13.0 - - - org.apache.commons - commons-compress - 1.23.0 - - - commons-codec - commons-codec - 1.16.0 - - - commons-validator - commons-validator - 1.7 - - - com.github.ben-manes.caffeine - caffeine - 3.1.7 - - - org.xerial.snappy - snappy-java - 1.1.10.3 - - - - - javax.xml.bind - jaxb-api - 2.3.1 - - - com.sun.xml.bind - jaxb-core - 2.3.0.1 - - - com.sun.xml.bind - jaxb-impl - 2.3.8 - - - org.glassfish.jaxb - jaxb-runtime - 2.3.8 - - - javax.activation - javax.activation-api - 1.2.0 - - - - jaxen - jaxen - 1.2.0 - - - dom4j - dom4j - - - xom - xom - - - jdom - jdom - - - - - - org.dkpro.core - dkpro-core-testing-asl - ${dkpro.version} - - - org.slf4j - slf4j-log4j12 - - - junit - junit - - - - - org.dkpro.core - dkpro-core-io-xml-asl - ${dkpro.version} - - - org.dkpro.core - dkpro-core-api-xml-asl - - - - - org.dkpro.core - dkpro-core-io-html-asl - ${dkpro.version} - - - org.dkpro.core - dkpro-core-api-xml-asl - - - - - - org.eclipse.rdf4j - rdf4j-bom - ${rdf4j.version} - pom - import - - - org.eclipse.rdf4j - rdf4j-sail-lucene - ${rdf4j.version} - - - org.locationtech.spatial4j - spatial4j - - - - - - com.github.jsonld-java - jsonld-java - 0.13.4 - - - org.apache.httpcomponents - httpclient-osgi - - - org.apache.httpcomponents - httpcore-osgi - - - - - - org.elasticsearch - elasticsearch - ${elasticsearch.version} - - - org.elasticsearch.client - transport - ${elasticsearch.version} - - - org.elasticsearch.client - elasticsearch-rest-client - ${elasticsearch.version} - - - org.elasticsearch.client - elasticsearch-rest-high-level-client - ${elasticsearch.version} - - - - org.opensearch - opensearch - ${opensearch.version} - - - org.opensearch.client - transport - ${opensearch.version} - - - org.opensearch.client - opensearch-rest-client - ${opensearch.version} - - - org.opensearch.client - opensearch-rest-high-level-client - ${opensearch.version} - - - org.codelibs.opensearch - opensearch-runner - - 1.3.7.0 - - - net.java.dev.jna - jna - 5.13.0 - - - - org.eclipse.jgit - org.eclipse.jgit - 5.13.1.202206130422-r - - - - org.webjars - c3 - 0.6.6 - - - - org.webjars - d3js - 5.5.0 - - - - org.webjars.bowergithub.xbsoftware - enjoyhint - 3.1.0 - - - org.webjars.bowergithub.flesler - jquery.scrollto - - - org.webjars.bowergithub.jquery - jquery-dist - - - org.webjars.bowergithub.ericdrowell - kineticjs - - - - - org.webjars.npm - kinetic - 5.2.0 - - - - org.mariadb.jdbc - mariadb-java-client - ${mariadb.driver.version} - - - org.postgresql - postgresql - ${postgres.driver.version} - - - - org.springframework.boot - spring-boot-starter-logging - ${spring.boot.version} - - - ch.qos.logback - logback-classic - - - log4j-to-slf4j - org.apache.logging.log4j - - - - - org.springframework.boot - spring-boot-starter-web - ${spring.boot.version} - - - ch.qos.logback - logback-classic - - - log4j-to-slf4j - org.apache.logging.log4j - - - - - - org.apache.ant - ant - 1.10.13 - - - - info.picocli - picocli - 4.7.4 - - - info.picocli - picocli-spring-boot-starter - 4.7.4 - - - - - org.apache.logging.log4j - log4j-bom - ${log4j2.version} - pom - import - - - org.apache.logging.log4j - log4j-core - ${log4j2.version} - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - org.apache.logging.log4j - log4j-layout-template-json - ${log4j2.version} - - - org.apache.logging.log4j - log4j-slf4j2-impl - ${log4j2.version} - - - org.apache.logging.log4j - log4j-spring-boot - ${log4j2.version} - - - - org.springframework.boot - spring-boot-dependencies - ${spring.boot.version} - pom - import - + inception-app + pom + + 6g + 11 + ${maven.compiler.release} + ${maven.compiler.release} + yyyy-MM-dd HH:mm + ${session.executionRootDirectory}/cache/dkpro-core-datasets + slow + ci + + + + - - org.apache.wicket - wicket-parent - ${wicket.version} + de.tudarmstadt.ukp.inception.app + inception-bom + 29.0-SNAPSHOT pom import - - - org.dkpro.core - dkpro-core-asl - ${dkpro.version} + de.tudarmstadt.ukp.inception.app + inception-dependencies + 29.0-SNAPSHOT pom import - - org.dkpro.core - dkpro-core-api-resources-asl - ${dkpro.version} - - - - - - - - org.apache.ivy - ivy - 2.5.1 - + + + + + org.apache.logging.log4j + log4j-core + runtime + + + + org.apache.logging.log4j + log4j-spring-boot + runtime + + + + org.apache.logging.log4j + log4j-slf4j2-impl + runtime + + + + org.slf4j + log4j-over-slf4j + runtime + + + + org.slf4j + jcl-over-slf4j + runtime + + + + org.apache.logging.log4j + log4j-layout-template-json + + + + commons-logging + commons-logging + provided + + + + + com.google.code.findbugs + jsr305 + provided + + + + + org.springframework.boot + spring-boot-configuration-processor + true + + + + + javax.xml.bind + jaxb-api + runtime + + + com.sun.xml.bind + jaxb-core + runtime + + + com.sun.xml.bind + jaxb-impl + runtime + + + javax.activation + javax.activation-api + runtime + + + + de.tudarmstadt.ukp.inception.app + inception-test-dependencies + ${project.version} + pom + test + + + inception-build @@ -2612,29 +430,31 @@ - org.junit.jupiter:junit-jupiter-api - org.junit.jupiter:junit-jupiter-params - org.junit.platform:junit-platform-suite-engine - org.junit.platform:junit-platform-suite-api - org.mockito:mockito-core - org.mockito:mockito-junit-jupiter - org.assertj:assertj-core - org.xmlunit:xmlunit-core - org.xmlunit:xmlunit-assertj3 - com.squareup.okhttp3:mockwebserver - com.squareup.okhttp3:okhttp - com.squareup.okio:okio - com.squareup.okio:okio-jvm + de.tudarmstadt.ukp.inception.app:inception-test-dependencies + + + + + org.springframework.boot:spring-boot-starter-web + + + + + + + org.junit.jupiter:* + org.junit.platform:* + org.assertj:* + org.mockito:* + org.xmlunit:* org.awaitility:awaitility org.springframework:spring-test - org.springframework.boot:spring-boot-starter-web org.springframework.boot:spring-boot-test org.springframework.boot:spring-boot-test-autoconfigure - org.springframework.boot:spring-boot-starter-validation - org.springframework.boot:spring-boot-starter-data-jpa - org.springframework.security:spring-security-test - org.hsqldb:hsqldb - + com.squareup.okhttp3:mockwebserver + com.squareup.okhttp3:okhttp + com.squareup.okio:okio-jvm + @@ -2746,6 +566,7 @@ + wicket-module diff --git a/pom.xml b/pom.xml index 12cd1c06631..b07d130d5b8 100644 --- a/pom.xml +++ b/pom.xml @@ -28,11 +28,17 @@ inception 29.0-SNAPSHOT pom + INCEpTION INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management. https://inception-project.github.io 2018 + + The INCEpTION Project + https://inception-project.github.io + + Apache License Version 2.0 @@ -60,11 +66,228 @@ + + 5.10.0 + 1.10.0 + 5.4.0 + 3.24.2 + 2.9.1 + + 4.2.0 + + 2.4.0 + 3.4.1 + 3.4.0 + 0.5.0 + + 2.0.29 + + 5.3.29 + 2.7.14 + 2.7.14 + 5.8.5 + 1.7.0 + 2.2.15 + 0.11.5 + + 2.0.7 + 2.20.0 + 3.5.3.Final + 6.27.0 + + 9.0.78 + 4.0.1 + + 2.7.9 + 42.6.0 + 5.6.15.Final + 6.2.5.Final + + 9.14.0 + 9.14.0 + 9.12.0 + 6.0.4 + 3.0.5 + 3.0.7 + + 3.1.6 + + + 8.11.2 + 8.11.2 + 8.11.1.0 + + + + 7.17.12 + + + + + 1.3.11 + + + + 4.3.4 + + + 4.6.1 + + + + 2.2.3 + 2.5.10 + 2.2.9 + + 20230227 + 2.6.0 + 2.15.2 + 1.33 + 4.11.0 + 3.4.0 + + 18.14.2 + 5.3.0 + 3.2.6 + ^4.3.6 + ^7.0.3 + ^2.0.1 + ^1.11.4 + ~0.16.17 + ~2.5.0 + ^0.7.3 + ^2.3.0-plugins.0 + ^8.31.0 + ^0.7.2 + ^17.0.0 + ^2.26.0 + ^10.1.0 + ^15.6.0 + ^6.1.1 + ^4.0.0 + ^3.3.0 + ^3.1.1 + 2.0.2 + ^4.3.1 + ^10.1.0 + ^20.0.0 + ^3.0.2 + 3.7.0 + 1.13.2 + ^10.0.0 + ^2.1.0 + 2.14.305 + 1.8.2 + 0.1.11 + 1.7.7 + ^1.57.1 + ^6.1.2 + ^3.55.0 + ^5.0.0 + ^3.1.2 + ^3.0.8 + ^3.1.3 + ^4.9.4 + ^5.47.1 + ^5.47.1 + ^3.0.0 + ^3.5.14 + ^9.1.1 + ^2.3.5 + ^1.19.19 + ^8.3.2 + ^1.19.11 + ^17.6.0 + + + inception/inception-dependencies + inception/inception-test-dependencies + inception/inception-bom inception - - The INCEpTION Project - https://inception-project.github.io - + + + + + + + + + + + + shiboleth-releases + https://build.shibboleth.net/maven/releases/ + + true + + + false + + + + + + +