From 13c3f449a5446f83895b4699ffd458cb67a8d5ed Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Mon, 27 Feb 2023 17:49:15 +0100 Subject: [PATCH 001/189] #3571 - Update dependencies - Wicket Bootstrap 6.0.0 -> 6.0.1 - Added enforcer config to inception-boot-loader module so latest m2e configures the execution environment correctly --- inception/inception-boot-loader/pom.xml | 23 +++++++++++++++++++++++ inception/pom.xml | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/inception/inception-boot-loader/pom.xml b/inception/inception-boot-loader/pom.xml index f332e3f818a..84377186315 100644 --- a/inception/inception-boot-loader/pom.xml +++ b/inception/inception-boot-loader/pom.xml @@ -39,4 +39,27 @@ spring-boot-loader-tools + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + [1.8,) + + + + + + + + \ No newline at end of file diff --git a/inception/pom.xml b/inception/pom.xml index d3ae5bdb329..5371d3cf7ff 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -98,7 +98,7 @@ 9.12.0 9.12.0 9.11.0 - 6.0.0 + 6.0.1 3.0.4 3.0.6 From 8decaadfc907d40a26e5c9387ce558df36f359a9 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Mon, 27 Feb 2023 19:10:12 +0100 Subject: [PATCH 002/189] #2677 - Make it possible to hide the editor preference menu in the editor - Added setting in the annotation project settings to disable access to the preferences dialog - Respect that setting when constructing the preferences extension for the annotation page action bar - Avoid redirecting to WebSocket endpoint from login page --- .../page/AnnotationEditorState.java | 17 +++++++++++ .../annotation/page/AnnotationPageBase.java | 4 --- .../AnnotationPreferencesDialogContent.java | 6 ++-- .../UserPreferencesActionBarExtension.java | 23 +++++++++++++++ ...nnotationEditorManagerPrefPanel.properties | 2 +- .../webanno/ui/annotation/AnnotationPage.java | 1 + .../webanno/ui/core/login/LoginPage.java | 26 ++++++++--------- .../DefaultAnnotationEditorStatePanel.html | 10 +++++++ .../DefaultAnnotationEditorStatePanel.java | 29 +++++++++++-------- ...faultAnnotationEditorStatePanel.properties | 1 + 10 files changed, 86 insertions(+), 33 deletions(-) diff --git a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationEditorState.java b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationEditorState.java index 6cbf310f47f..c99d561954a 100644 --- a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationEditorState.java +++ b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationEditorState.java @@ -21,14 +21,21 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import de.tudarmstadt.ukp.inception.preferences.Key; + @JsonIgnoreProperties(ignoreUnknown = true) public class AnnotationEditorState implements Serializable { private static final long serialVersionUID = -1637731874872789592L; + public static final Key KEY_EDITOR_STATE = new Key<>( + AnnotationEditorState.class, "annotation/editor"); + private String defaultEditor; + private boolean preferencesAccessAllowed = true; + public String getDefaultEditor() { return defaultEditor; @@ -38,4 +45,14 @@ public void setDefaultEditor(String aEditorId) { defaultEditor = aEditorId; } + + public boolean isPreferencesAccessAllowed() + { + return preferencesAccessAllowed; + } + + public void setPreferencesAccessAllowed(boolean aPreferencesAccessAllowed) + { + preferencesAccessAllowed = aPreferencesAccessAllowed; + } } diff --git a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationPageBase.java b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationPageBase.java index 9fde6ce8fba..c3c33d5e657 100644 --- a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationPageBase.java +++ b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/page/AnnotationPageBase.java @@ -76,7 +76,6 @@ import de.tudarmstadt.ukp.clarin.webanno.support.wicket.DecoratedObject; import de.tudarmstadt.ukp.clarin.webanno.ui.core.page.ProjectPageBase; import de.tudarmstadt.ukp.inception.editor.action.AnnotationActionHandler; -import de.tudarmstadt.ukp.inception.preferences.Key; import de.tudarmstadt.ukp.inception.rendering.editorstate.AnnotatorState; import de.tudarmstadt.ukp.inception.rendering.vmodel.VID; import de.tudarmstadt.ukp.inception.rendering.vmodel.VRange; @@ -90,9 +89,6 @@ public abstract class AnnotationPageBase { private static final long serialVersionUID = -1133219266479577443L; - public static final Key KEY_EDITOR_STATE = new Key<>( - AnnotationEditorState.class, "annotation/editor"); - public static final String PAGE_PARAM_DOCUMENT = "d"; public static final String PAGE_PARAM_USER = "u"; public static final String PAGE_PARAM_FOCUS = "f"; diff --git a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/AnnotationPreferencesDialogContent.java b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/AnnotationPreferencesDialogContent.java index 32404e1755c..0e907c15e78 100755 --- a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/AnnotationPreferencesDialogContent.java +++ b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/AnnotationPreferencesDialogContent.java @@ -17,6 +17,7 @@ */ package de.tudarmstadt.ukp.clarin.webanno.api.annotation.preferences; +import static de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationEditorState.KEY_EDITOR_STATE; import static de.tudarmstadt.ukp.clarin.webanno.model.Mode.ANNOTATION; import static de.tudarmstadt.ukp.clarin.webanno.model.Mode.CURATION; import static de.tudarmstadt.ukp.clarin.webanno.support.WebAnnoConst.CHAIN_TYPE; @@ -55,7 +56,6 @@ import de.tudarmstadt.ukp.clarin.webanno.api.ProjectService; import de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationEditorState; -import de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationPageBase; import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationLayer; import de.tudarmstadt.ukp.clarin.webanno.security.UserDao; import de.tudarmstadt.ukp.clarin.webanno.support.lambda.AjaxCallback; @@ -130,8 +130,8 @@ public AnnotationPreferencesDialogContent(String aId, IModel aMo fontZoomField.setMaximum(AnnotationPreference.FONT_ZOOM_MAX); form.add(fontZoomField); - AnnotationEditorState state = preferencesService.loadDefaultTraitsForProject( - AnnotationPageBase.KEY_EDITOR_STATE, stateModel.getObject().getProject()); + AnnotationEditorState state = preferencesService + .loadDefaultTraitsForProject(KEY_EDITOR_STATE, stateModel.getObject().getProject()); DropDownChoice> editor = new DropDownChoice<>("editor"); editor.setChoiceRenderer(new ChoiceRenderer<>("value")); diff --git a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/UserPreferencesActionBarExtension.java b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/UserPreferencesActionBarExtension.java index 24374f68147..44b08e146a6 100644 --- a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/UserPreferencesActionBarExtension.java +++ b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/preferences/UserPreferencesActionBarExtension.java @@ -17,18 +17,41 @@ */ package de.tudarmstadt.ukp.clarin.webanno.api.annotation.preferences; +import static de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationEditorState.KEY_EDITOR_STATE; +import static de.tudarmstadt.ukp.clarin.webanno.model.Mode.CURATION; + import org.apache.wicket.markup.html.panel.Panel; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; import de.tudarmstadt.ukp.clarin.webanno.api.annotation.actionbar.ActionBarExtension; +import de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationEditorState; import de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationPageBase; +import de.tudarmstadt.ukp.inception.preferences.PreferencesService; @Order(10000) @Component public class UserPreferencesActionBarExtension implements ActionBarExtension { + private final PreferencesService preferencesService; + + public UserPreferencesActionBarExtension(PreferencesService aPreferencesService) + { + super(); + preferencesService = aPreferencesService; + } + + @Override + public boolean accepts(AnnotationPageBase aPage) + { + AnnotationEditorState editorState = preferencesService + .loadDefaultTraitsForProject(KEY_EDITOR_STATE, aPage.getProject()); + + return editorState.isPreferencesAccessAllowed() + || aPage.getModelObject().getMode() == CURATION; + } + @Override public Panel createActionBarItem(String aId, AnnotationPageBase aPage) { diff --git a/inception/inception-brat-editor/src/main/java/de/tudarmstadt/ukp/clarin/webanno/brat/preferences/BratAnnotationEditorManagerPrefPanel.properties b/inception/inception-brat-editor/src/main/java/de/tudarmstadt/ukp/clarin/webanno/brat/preferences/BratAnnotationEditorManagerPrefPanel.properties index a3e1aee67e9..7f2f96da4ab 100755 --- a/inception/inception-brat-editor/src/main/java/de/tudarmstadt/ukp/clarin/webanno/brat/preferences/BratAnnotationEditorManagerPrefPanel.properties +++ b/inception/inception-brat-editor/src/main/java/de/tudarmstadt/ukp/clarin/webanno/brat/preferences/BratAnnotationEditorManagerPrefPanel.properties @@ -15,7 +15,7 @@ # limitations under the License. title=Brat annotation editor -changingScriptDirectionAllowed=Allow annotator to change script direction +changingScriptDirectionAllowed=Allow changing the script direction in the annotation editor defaultPageSize=Default page size scriptDirection=Script direction ScriptDirection.LTR=left-to-right diff --git a/inception/inception-ui-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/annotation/AnnotationPage.java b/inception/inception-ui-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/annotation/AnnotationPage.java index b6c410f2804..d5745ea498a 100755 --- a/inception/inception-ui-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/annotation/AnnotationPage.java +++ b/inception/inception-ui-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/annotation/AnnotationPage.java @@ -18,6 +18,7 @@ package de.tudarmstadt.ukp.clarin.webanno.ui.annotation; import static de.tudarmstadt.ukp.clarin.webanno.api.CasUpgradeMode.FORCE_CAS_UPGRADE; +import static de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationEditorState.KEY_EDITOR_STATE; import static de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationPageBase.PAGE_PARAM_DOCUMENT; import static de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocumentState.IGNORE; import static de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocumentStateChangeFlag.EXPLICIT_ANNOTATOR_USER_ACTION; diff --git a/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/login/LoginPage.java b/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/login/LoginPage.java index dd527886e8b..1415cfc296f 100644 --- a/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/login/LoginPage.java +++ b/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/login/LoginPage.java @@ -320,24 +320,24 @@ private void setDefaultResponsePageIfNecessary(String aRedirectUrl) // Wicket continueToOriginalDestination(); if (aRedirectUrl == null || aRedirectUrl.contains(".IBehaviorListener.") - || aRedirectUrl.contains("-logoutPanel-")) { + || aRedirectUrl.contains("-logoutPanel-") || aRedirectUrl.endsWith("/ws")) { log.debug("Redirecting to welcome page"); setResponsePage(getApplication().getHomePage()); + return; } - else { - log.debug("Redirecting to saved URL: [{}]", aRedirectUrl); - if (isNotBlank(localLoginPanel.urlfragment) - && localLoginPanel.urlfragment.startsWith("!")) { - Url url = Url.parse("http://dummy?" + localLoginPanel.urlfragment.substring(1)); - UrlRequestParametersAdapter adapter = new UrlRequestParametersAdapter(url); - LinkedHashMap params = new LinkedHashMap<>(); - for (String name : adapter.getParameterNames()) { - params.put(name, adapter.getParameterValue(name)); - } - Session.get().setMetaData(SessionMetaData.LOGIN_URL_FRAGMENT_PARAMS, params); + + log.debug("Redirecting to saved URL: [{}]", aRedirectUrl); + if (isNotBlank(localLoginPanel.urlfragment) + && localLoginPanel.urlfragment.startsWith("!")) { + Url url = Url.parse("http://dummy?" + localLoginPanel.urlfragment.substring(1)); + UrlRequestParametersAdapter adapter = new UrlRequestParametersAdapter(url); + LinkedHashMap params = new LinkedHashMap<>(); + for (String name : adapter.getParameterNames()) { + params.put(name, adapter.getParameterValue(name)); } - throw new NonResettingRestartException(aRedirectUrl); + Session.get().setMetaData(SessionMetaData.LOGIN_URL_FRAGMENT_PARAMS, params); } + throw new NonResettingRestartException(aRedirectUrl); } } diff --git a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.html b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.html index 46f22726c53..4afdb8ad027 100644 --- a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.html +++ b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.html @@ -32,6 +32,16 @@ + + + + diff --git a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.java b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.java index 1a6463e8fc4..67a9d221a8d 100644 --- a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.java +++ b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.java @@ -17,7 +17,7 @@ */ package de.tudarmstadt.ukp.inception.ui.core.dashboard.settings.annotation; -import static de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationPageBase.KEY_EDITOR_STATE; +import static de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationEditorState.KEY_EDITOR_STATE; import static de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaBehavior.visibleWhen; import java.util.List; @@ -26,10 +26,12 @@ import org.apache.commons.lang3.tuple.Pair; import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.markup.html.form.CheckBox; import org.apache.wicket.markup.html.form.ChoiceRenderer; import org.apache.wicket.markup.html.form.DropDownChoice; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.markup.html.panel.Panel; +import org.apache.wicket.model.CompoundPropertyModel; import org.apache.wicket.model.IModel; import org.apache.wicket.model.Model; import org.apache.wicket.spring.injection.annot.SpringBean; @@ -49,6 +51,7 @@ public class DefaultAnnotationEditorStatePanel private @SpringBean AnnotationEditorRegistry annotationEditorRegistry; private @SpringBean PreferencesService preferencesService; + private IModel state; private IModel> defaultEditor; public DefaultAnnotationEditorStatePanel(String aId, IModel aProjectModel) @@ -56,9 +59,10 @@ public DefaultAnnotationEditorStatePanel(String aId, IModel aProjectMod super(aId, aProjectModel); setOutputMarkupPlaceholderTag(true); + state = CompoundPropertyModel.of(null); defaultEditor = Model.of(); - LambdaForm form = new LambdaForm<>("form"); + var form = new LambdaForm("form", state); DropDownChoice> editor = new DropDownChoice<>("defaultEditor"); editor.setModel(defaultEditor); @@ -68,6 +72,8 @@ public DefaultAnnotationEditorStatePanel(String aId, IModel aProjectMod editor.add(visibleWhen(() -> editor.getChoices().size() > 1)); form.add(editor); + form.add(new CheckBox("preferencesAccessAllowed").setOutputMarkupId(true)); + form.onSubmit(this::actionSave); add(form); @@ -91,15 +97,16 @@ public IModel getModel() private void actionLoad() { - AnnotationEditorState state = preferencesService - .loadDefaultTraitsForProject(KEY_EDITOR_STATE, getModel().getObject()); + state.setObject(preferencesService.loadDefaultTraitsForProject(KEY_EDITOR_STATE, + getModel().getObject())); + var defaultEditorId = state.getObject().getDefaultEditor(); AnnotationEditorFactory factory = annotationEditorRegistry - .getEditorFactory(state.getDefaultEditor()); + .getEditorFactory(defaultEditorId); if (factory != null) { defaultEditor.setObject(listAvailableEditors().stream() // - .filter(e -> Objects.equals(state.getDefaultEditor(), e.getKey())) // + .filter(e -> Objects.equals(defaultEditorId, e.getKey())) // .findFirst() // .orElse(null)); } @@ -108,14 +115,12 @@ private void actionLoad() } } - private void actionSave(AjaxRequestTarget aTarget, Form aDummy) + private void actionSave(AjaxRequestTarget aTarget, Form aDummy) { - AnnotationEditorState state = preferencesService - .loadDefaultTraitsForProject(KEY_EDITOR_STATE, getModel().getObject()); - - state.setDefaultEditor(defaultEditor.map(Pair::getKey).orElse(null).getObject()); + state.getObject() + .setDefaultEditor(defaultEditor.map(Pair::getKey).orElse(null).getObject()); preferencesService.saveDefaultTraitsForProject(KEY_EDITOR_STATE, getModel().getObject(), - state); + state.getObject()); } } diff --git a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.properties b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.properties index 68ac4ed32cd..1272a423fa5 100755 --- a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.properties +++ b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/settings/annotation/DefaultAnnotationEditorStatePanel.properties @@ -17,3 +17,4 @@ defaultEditor=Editor defaultEditor.nullValid=Leave choice to annotator defaultAnnotationEditorState=Annotation editor +preferencesAccessAllowed=Allow access to user-specific annotation editor preferences From 940a5080c8fb2fba6904f0058a8a56ebfbc033ae Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Mon, 27 Feb 2023 19:34:21 +0100 Subject: [PATCH 003/189] #3762 - Ability to sort annotation sidebar by recommender scores - Make sort-by-score the default - Make the DocumentServiceImplConcurrentyTest run faster again (fewer iterations and less concurrency) --- .../src/main/ts/src/AnnotationsByLabelList.svelte | 2 +- .../documents/DocumentServiceImplConcurrencyTest.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte index f8a248c051a..15f2642ffe6 100644 --- a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte +++ b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte @@ -34,7 +34,7 @@ let groupedAnnotations: Record; let sortedLabels: string[]; - let sortByScore: boolean = false; + let sortByScore: boolean = true; $: sortedLabels = uniqueLabels(data); $: { diff --git a/inception/inception-documents/src/test/java/de/tudarmstadt/ukp/inception/documents/DocumentServiceImplConcurrencyTest.java b/inception/inception-documents/src/test/java/de/tudarmstadt/ukp/inception/documents/DocumentServiceImplConcurrencyTest.java index cd1fba5bd9e..9c8810068f0 100644 --- a/inception/inception-documents/src/test/java/de/tudarmstadt/ukp/inception/documents/DocumentServiceImplConcurrencyTest.java +++ b/inception/inception-documents/src/test/java/de/tudarmstadt/ukp/inception/documents/DocumentServiceImplConcurrencyTest.java @@ -262,9 +262,9 @@ public void testHighConcurrencyMultiUser() throws Exception List primaryTasks = new ArrayList<>(); List secondaryTasks = new ArrayList<>(); - int threadGroupCount = 8; - int iterations = 1000; - int userCount = 16; + int threadGroupCount = 4; + int iterations = 100; + int userCount = 4; for (int u = 0; u < userCount; u++) { for (int n = 0; n < threadGroupCount; n++) { Thread rw = new ExclusiveReadWriteTask(n, doc, user + n, iterations); From d96ebcfd8e432f0f9c40a6976e4c86e63c56cc94 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Mon, 27 Feb 2023 20:51:45 +0100 Subject: [PATCH 004/189] #3836 - Keyboard shortcuts on dashboard should not trigger when editing project title - Configure InputBehavior to not trigger when the focus is in an input field --- .../inception/ui/core/dashboard/DashboardMenu.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/DashboardMenu.java b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/DashboardMenu.java index 7bc9b88298d..9aea8319d55 100644 --- a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/DashboardMenu.java +++ b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/dashboard/DashboardMenu.java @@ -186,7 +186,16 @@ private void generateMenuItem(ListItem aItem) menulink.add(AttributeAppender.append("class", () -> getPage().getClass().equals(pageClass) ? "active" : "")); if (item.shortcut() != null && item.shortcut().length > 0) { - menulink.add(new InputBehavior(item.shortcut(), EventType.click)); + menulink.add(new InputBehavior(item.shortcut(), EventType.click) + { + private static final long serialVersionUID = -3230776977218522942L; + + @Override + protected Boolean getDisable_in_input() + { + return true; + }; + }); menulink.add(AttributeModifier.append("title", "[" + Stream.of(item.shortcut()).map(Object::toString).collect(joining(" + ")) + "]")); From 4d860c34e55bfd24a39b7d0239885a37361ef5d6 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 28 Feb 2023 11:49:16 +0100 Subject: [PATCH 005/189] #3838 - Better upgrade documentation - Explain different upgrade paths in more detail - Use MariaDB instead of MySQL --- .../asciidoc/admin-guide/upgrade.adoc | 54 +++++++++++++++++-- .../asciidoc/admin-guide/upgrade_backup.adoc | 11 +++- .../admin-guide/upgrade_imexport.adoc | 33 ------------ .../asciidoc/admin-guide/upgrade_jar.adoc | 2 +- .../asciidoc/admin-guide/upgrade_notes.adoc | 4 +- 5 files changed, 62 insertions(+), 42 deletions(-) delete mode 100644 inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_imexport.adoc diff --git a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade.adoc b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade.adoc index a02283487c6..d85a086ab6d 100644 --- a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade.adoc +++ b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade.adoc @@ -17,9 +17,53 @@ [[sect_upgrade]] = Upgrading +== Upgrade paths -In general, it is possible to perform an in-place upgrade of the application. However, before doing -an upgrade, it is recommender to create a backup of the application and data to allow coming back -to a working system if case of a problem during the upgrade. Mind that the upgrade is only completed -once the new version has successfully started because during startup, the application may make -changes to the database schema or to the data on disk. +There are in principle three ways to upgrade {product-name} to a new version: + +* **In-place update** - in this scenario, you simply stop the application, replace the existing + {product-name} JAR file with the new version, and then start the application again. The benefit + of this approach is, that is is very fast. The downside is, that in case anything goes wrong, you + cannot simply go back to using the old version. You need to make sure that you have a proper + backup of the application home folder and the database (if you use an external database) because + the in-place update might migrate your data and after you might no longer be able to use it with + an older version (e.g. if you replace the JAR again with an older version). The steps for + performing an in-place upgrade are specifed in the respective section below. + +* **Migrating to a fresh installation** - in this scenario, you would set up a fresh installation + of the new {product-name} version using a different application home folder and a different database + than your existing installation. After that, you would move the data of the old installation over + to the new installation, e.g. by copying the contents of the old application home/database over + into the new ones. When you start the fresh installation then, it will find the data you just + copied over, automatically perform a database migration if there were any changes in the database + schema, and then start up. The benefit of this approach is that in case anything does wrong during + the upgrade or in case there is a critical problem with the new version, you can always go back + to using the old installation and e.g. retry the update again at a later time. The steps for + setting up a new instance are specified in the installation instructions. The steps for copying + the data over to the new instance are the same as for performing a backup. + +* **Copying projects to a fresh installation** - in this scenario, you would export all projects + from your existing installation. Then you would set up a new installation using a fresh + application home folder/database. Finally, you would import all the exported projects into this + new installation. The only situation where this type of upgrade procedure is necessary is, when + you want to change the database backend, e.g. if you want to switch from an embedded database to + an external database. Otherwise, there is typically no benefit in following this approach. + It would only be necessary if a new {product-name} release would completely break its database + schema and not offer an automatic migration. This typically does never happen since {product-name} + has support for automatic database migrations these days. Also note that none of the user's + passwords are migrated in this way. When you import the projects in the new installation, you need + to enable the **import missing users** option and after all projects have been imported, you need + to go through each of the users, enable them, set their roles and set a new password for them. + Or alternatively, you could copy the contents of the database tables `users` and `authorities` + from the old database into the new one. + +The release notes generally indicate that it is possible to perform an in-place upgrade of the +application. However, before doing an upgrade, it is recommended to create a backup of the +application and data to allow coming back to a working system if case of a problem during the +upgrade. Mind that the upgrade is only completed once the new version has successfully started +because during startup, the application may make changes to the database schema or to the data on +disk. + +Also, for certain versions there might be special considerations to be aware of when performing the +upgrade. Always be sure to check the section below **as well as the release notes** of every version +between the version you are upgrading from up to and including the version you are upgrading to. diff --git a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_backup.adoc b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_backup.adoc index aa245ed037e..48a3a67bedd 100644 --- a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_backup.adoc +++ b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_backup.adoc @@ -16,5 +16,12 @@ = Backup your data -* Make a copy of your {product-name} home folder -* If you are using MySQL, make a backup of your {product-name} database, e.g. using the link:http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html[mysqldump] command. +* Make a copy of your {product-name} application home folder +* If you are using an external database like MariaDB, make a backup of your {product-name} database, + e.g. using the link:https://mariadb.com/kb/en/making-backups-with-mysqldump/[mysqldump] command. + +NOTE: Make sure that you can actually re-create a working installation by restoring your backup. + I.e. restore your database export into a fresh database and point a new {product-name} installation + at using your home folder copy and the restored database and then start the application and check + that everything is there and working. A backup which cannot be successfully restored is worthless. + \ No newline at end of file diff --git a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_imexport.adoc b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_imexport.adoc deleted file mode 100644 index 30e17806445..00000000000 --- a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_imexport.adoc +++ /dev/null @@ -1,33 +0,0 @@ -// Licensed to the Technische Universität Darmstadt under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The Technische Universität Darmstadt -// licenses this file to you under the Apache License, Version 2.0 (the -// "License"); you may not use this file except in compliance -// with the License. -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -= Upgrading via export/import - -This option can be used when performing an upgrade by exporting all data from once instance of -the application into another instance which may potentially reside on a different machine. It -is a very tedious approach because there is no option to bulk-export all projects. - -* Log into WebAnno and export all the projects that you wish to migrate using the *Export* pane in the project settings -* Move your WebAnno home folder to a safe location so that WebAnno and create a new home folder in the old location -* Copy the *settings.properties* back from your moved folder -* Start the new WebAnno version to initialize the database -* Recreate the users -** If you are using MySQL -*** create a new database for the new WebAnno version and update the *settings.properties* accordingly -*** use link:http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html[mysqldump] to dump the tables `users` and `authorities` from the old database and load it back into the new database -** If you are not using MySQL, you have to recreate the users manually -* When upgrading to WebAnno 2.x from a pre 2.x version, remove the *format.properties* file from the WebAnno home folder -* Restart WebAnno and import the previously exported projects diff --git a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_jar.adoc b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_jar.adoc index f50654b7321..0c4dd9f4d50 100644 --- a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_jar.adoc +++ b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_jar.adoc @@ -18,7 +18,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -= Upgrading with embedded Tomcat += Performing an in-place upgrade * Stop the {product-name} service * Replace the `inception.jar` file with the new version diff --git a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_notes.adoc b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_notes.adoc index 89741feffc4..1f5ac22ce5c 100644 --- a/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_notes.adoc +++ b/inception/inception-doc/src/main/resources/META-INF/asciidoc/admin-guide/upgrade_notes.adoc @@ -18,7 +18,9 @@ This section summarizes important upgrade notes from the release history of INCEpTION. If you upgrade from any version `X`, carefully read all the upgrade notes for versions later than `X`. In particular, if any of the upgrade notes mentions that an intermediate upgrade to that version must be made before going to a higher version, then first perform all required intermediate upgrades in order. -NOTE: It is a good idea to back up your installation and data before an upgrade. +NOTE: It is a good idea to back up your installation and data before an upgrade. Also make sure that + you can actually re-create a working installation by restoring your backup. A backup which cannot be + successfully restored is worthless. == INCEpTION 25.0 From 3d736282d79e94bf8db78c3f7f195a5837f30917 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 28 Feb 2023 14:42:44 +0100 Subject: [PATCH 006/189] [maven-release-plugin] prepare release inception-27.0-rc-1 --- inception/inception-active-learning/pom.xml | 2 +- inception/inception-agreement/pom.xml | 2 +- .../inception-annotation-storage/pom.xml | 2 +- inception/inception-api-annotation/pom.xml | 2 +- inception/inception-api-editor/pom.xml | 2 +- inception/inception-api-formats/pom.xml | 2 +- inception/inception-api-render/pom.xml | 2 +- inception/inception-api-schema/pom.xml | 2 +- inception/inception-api/pom.xml | 2 +- inception/inception-app-webapp/pom.xml | 2 +- inception/inception-boot-loader/pom.xml | 2 +- inception/inception-bootstrap/pom.xml | 2 +- inception/inception-brat-editor/pom.xml | 2 +- inception/inception-build/pom.xml | 2 +- inception/inception-concept-linking/pom.xml | 2 +- inception/inception-constraints/pom.xml | 2 +- inception/inception-curation-legacy/pom.xml | 2 +- inception/inception-curation/pom.xml | 2 +- inception/inception-diag/pom.xml | 2 +- inception/inception-diam-editor/pom.xml | 2 +- inception/inception-diam/pom.xml | 2 +- inception/inception-doc/pom.xml | 2 +- inception/inception-docker/pom.xml | 2 +- inception/inception-documents/pom.xml | 2 +- .../pom.xml | 2 +- inception/inception-export/pom.xml | 2 +- inception/inception-external-editor/pom.xml | 2 +- .../inception-external-search-core/pom.xml | 2 +- .../inception-external-search-elastic/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-external-search-solr/pom.xml | 2 +- inception/inception-feature-lookup/pom.xml | 2 +- inception/inception-guidelines/pom.xml | 2 +- inception/inception-html-editor/pom.xml | 2 +- .../inception-html-recogito-editor/pom.xml | 2 +- inception/inception-image/pom.xml | 2 +- inception/inception-imls-elg/pom.xml | 2 +- inception/inception-imls-external/pom.xml | 2 +- inception/inception-imls-hf/pom.xml | 2 +- inception/inception-imls-lapps/pom.xml | 2 +- inception/inception-imls-opennlp/pom.xml | 2 +- inception/inception-imls-stringmatch/pom.xml | 2 +- inception/inception-imls-weblicht/pom.xml | 2 +- inception/inception-io-conll/pom.xml | 2 +- inception/inception-io-html/pom.xml | 2 +- inception/inception-io-imscwb/pom.xml | 2 +- inception/inception-io-intertext/pom.xml | 2 +- inception/inception-io-json/pom.xml | 2 +- inception/inception-io-lif/pom.xml | 2 +- inception/inception-io-nif/pom.xml | 2 +- inception/inception-io-perseus/pom.xml | 2 +- inception/inception-io-tcf/pom.xml | 2 +- inception/inception-io-tei/pom.xml | 2 +- inception/inception-io-text/pom.xml | 2 +- inception/inception-io-webanno-tsv/pom.xml | 2 +- inception/inception-io-xmi/pom.xml | 2 +- inception/inception-io-xml/pom.xml | 2 +- inception/inception-js-api/pom.xml | 2 +- inception/inception-kb-fact-linking/pom.xml | 2 +- inception/inception-kb/pom.xml | 2 +- inception/inception-layer-docmetadata/pom.xml | 2 +- inception/inception-log/pom.xml | 2 +- inception/inception-model-export/pom.xml | 2 +- inception/inception-model/pom.xml | 2 +- inception/inception-pdf-editor/pom.xml | 2 +- inception/inception-pdf-editor2/pom.xml | 2 +- inception/inception-plugin-api/pom.xml | 2 +- inception/inception-plugin-manager/pom.xml | 2 +- inception/inception-plugin-parent/pom.xml | 2 +- inception/inception-preferences/pom.xml | 2 +- inception/inception-project-export/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-project-initializers/pom.xml | 2 +- inception/inception-project/pom.xml | 2 +- .../inception-recommendation-api/pom.xml | 2 +- inception/inception-recommendation/pom.xml | 2 +- inception/inception-remote/pom.xml | 2 +- inception/inception-review-editor/pom.xml | 2 +- inception/inception-scheduling/pom.xml | 2 +- inception/inception-schema/pom.xml | 2 +- inception/inception-search-core/pom.xml | 2 +- inception/inception-search-mtas/pom.xml | 2 +- inception/inception-security/pom.xml | 2 +- inception/inception-sharing/pom.xml | 2 +- .../inception-support-standalone/pom.xml | 2 +- inception/inception-support/pom.xml | 2 +- inception/inception-telemetry/pom.xml | 2 +- inception/inception-testing/pom.xml | 2 +- inception/inception-tutorial/pom.xml | 2 +- inception/inception-ui-agreement/pom.xml | 2 +- inception/inception-ui-annotation/pom.xml | 2 +- inception/inception-ui-core/pom.xml | 2 +- inception/inception-ui-curation/pom.xml | 2 +- .../inception-ui-dashboard-activity/pom.xml | 2 +- inception/inception-ui-dashboard/pom.xml | 2 +- .../inception-ui-external-search/pom.xml | 2 +- inception/inception-ui-kb/pom.xml | 2 +- inception/inception-ui-project/pom.xml | 2 +- inception/inception-ui-search/pom.xml | 2 +- inception/inception-ui-tagsets/pom.xml | 2 +- inception/inception-versioning/pom.xml | 2 +- inception/inception-websocket/pom.xml | 2 +- inception/inception-workload-dynamic/pom.xml | 2 +- inception/inception-workload-matrix/pom.xml | 2 +- inception/inception-workload-ui/pom.xml | 2 +- inception/inception-workload/pom.xml | 2 +- inception/pom.xml | 214 +++++++++--------- pom.xml | 4 +- 112 files changed, 219 insertions(+), 219 deletions(-) diff --git a/inception/inception-active-learning/pom.xml b/inception/inception-active-learning/pom.xml index 7909d448328..59c799e91ec 100644 --- a/inception/inception-active-learning/pom.xml +++ b/inception/inception-active-learning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 .. inception-active-learning diff --git a/inception/inception-agreement/pom.xml b/inception/inception-agreement/pom.xml index 485da6c2098..f3e7e4dc904 100644 --- a/inception/inception-agreement/pom.xml +++ b/inception/inception-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-agreement INCEpTION - Core - Agreement diff --git a/inception/inception-annotation-storage/pom.xml b/inception/inception-annotation-storage/pom.xml index 104fa8b88b6..45e98364b39 100644 --- a/inception/inception-annotation-storage/pom.xml +++ b/inception/inception-annotation-storage/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-annotation-storage INCEpTION - Core - Annotation Storage diff --git a/inception/inception-api-annotation/pom.xml b/inception/inception-api-annotation/pom.xml index d7759afe81b..e50df6010b2 100644 --- a/inception/inception-api-annotation/pom.xml +++ b/inception/inception-api-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-api-annotation INCEpTION - Core - Annotation API diff --git a/inception/inception-api-editor/pom.xml b/inception/inception-api-editor/pom.xml index 693a41899d1..c91a3760c07 100644 --- a/inception/inception-api-editor/pom.xml +++ b/inception/inception-api-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-api-editor INCEpTION - Core - Annotation editor API diff --git a/inception/inception-api-formats/pom.xml b/inception/inception-api-formats/pom.xml index cbf96d1e800..2288aed4c4d 100644 --- a/inception/inception-api-formats/pom.xml +++ b/inception/inception-api-formats/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-api-formats INCEpTION - Core - Formats API diff --git a/inception/inception-api-render/pom.xml b/inception/inception-api-render/pom.xml index e493ce3940e..f3563eb221b 100644 --- a/inception/inception-api-render/pom.xml +++ b/inception/inception-api-render/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-api-render INCEpTION - Core - Annotation rendering API diff --git a/inception/inception-api-schema/pom.xml b/inception/inception-api-schema/pom.xml index 382d455b6fb..22f70ba8dc2 100644 --- a/inception/inception-api-schema/pom.xml +++ b/inception/inception-api-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-api-schema INCEpTION - Core - Annotation Schema API diff --git a/inception/inception-api/pom.xml b/inception/inception-api/pom.xml index 4d26bfd1d7d..fe400706a9a 100644 --- a/inception/inception-api/pom.xml +++ b/inception/inception-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-api INCEpTION - Core - API diff --git a/inception/inception-app-webapp/pom.xml b/inception/inception-app-webapp/pom.xml index 30cfd2e8724..80d4be62a05 100644 --- a/inception/inception-app-webapp/pom.xml +++ b/inception/inception-app-webapp/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 .. diff --git a/inception/inception-boot-loader/pom.xml b/inception/inception-boot-loader/pom.xml index 84377186315..2da7ac681de 100644 --- a/inception/inception-boot-loader/pom.xml +++ b/inception/inception-boot-loader/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-boot-loader INCEpTION - Boot loader diff --git a/inception/inception-bootstrap/pom.xml b/inception/inception-bootstrap/pom.xml index 140ed867558..9235a5ac769 100644 --- a/inception/inception-bootstrap/pom.xml +++ b/inception/inception-bootstrap/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-bootstrap diff --git a/inception/inception-brat-editor/pom.xml b/inception/inception-brat-editor/pom.xml index 7817719fd14..fa943cb933d 100644 --- a/inception/inception-brat-editor/pom.xml +++ b/inception/inception-brat-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-brat-editor INCEpTION - Editor - brat diff --git a/inception/inception-build/pom.xml b/inception/inception-build/pom.xml index 09daa2d30b0..8bfbf588938 100644 --- a/inception/inception-build/pom.xml +++ b/inception/inception-build/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-build INCEpTION - Build resources diff --git a/inception/inception-concept-linking/pom.xml b/inception/inception-concept-linking/pom.xml index 782e92c2ac7..da35ddf92bb 100644 --- a/inception/inception-concept-linking/pom.xml +++ b/inception/inception-concept-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-concept-linking INCEpTION - Concept Linking diff --git a/inception/inception-constraints/pom.xml b/inception/inception-constraints/pom.xml index c1e865ef272..533f097a0ad 100644 --- a/inception/inception-constraints/pom.xml +++ b/inception/inception-constraints/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-constraints INCEpTION - Core - Constraints diff --git a/inception/inception-curation-legacy/pom.xml b/inception/inception-curation-legacy/pom.xml index 0b66e51f660..5482ab80c76 100644 --- a/inception/inception-curation-legacy/pom.xml +++ b/inception/inception-curation-legacy/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-curation-legacy INCEpTION - Core - Curation diff --git a/inception/inception-curation/pom.xml b/inception/inception-curation/pom.xml index 147bca250a6..21b3e3d5ed3 100644 --- a/inception/inception-curation/pom.xml +++ b/inception/inception-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-curation INCEpTION - Curation diff --git a/inception/inception-diag/pom.xml b/inception/inception-diag/pom.xml index 4397c27bdd6..1c944a20e4d 100644 --- a/inception/inception-diag/pom.xml +++ b/inception/inception-diag/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-diag INCEpTION - Core - Diagnostics diff --git a/inception/inception-diam-editor/pom.xml b/inception/inception-diam-editor/pom.xml index fa6d785bb16..0494f0f4fca 100644 --- a/inception/inception-diam-editor/pom.xml +++ b/inception/inception-diam-editor/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-diam-editor INCEpTION - DIAM - Editor diff --git a/inception/inception-diam/pom.xml b/inception/inception-diam/pom.xml index 76c9cd00ad0..8544c35f36c 100644 --- a/inception/inception-diam/pom.xml +++ b/inception/inception-diam/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-diam diff --git a/inception/inception-doc/pom.xml b/inception/inception-doc/pom.xml index 60897dbbab3..43ba2c1d598 100644 --- a/inception/inception-doc/pom.xml +++ b/inception/inception-doc/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-doc jar diff --git a/inception/inception-docker/pom.xml b/inception/inception-docker/pom.xml index 01495e66e18..527bf969708 100644 --- a/inception/inception-docker/pom.xml +++ b/inception/inception-docker/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 .. inception-docker diff --git a/inception/inception-documents/pom.xml b/inception/inception-documents/pom.xml index c88effa2f32..3ba173f5c79 100644 --- a/inception/inception-documents/pom.xml +++ b/inception/inception-documents/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-documents INCEpTION - Core - Persistence API diff --git a/inception/inception-example-imls-data-majority/pom.xml b/inception/inception-example-imls-data-majority/pom.xml index f6fad56f3da..9939a8a42ce 100644 --- a/inception/inception-example-imls-data-majority/pom.xml +++ b/inception/inception-example-imls-data-majority/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-plugin-parent - 27.0-SNAPSHOT + 27.0-rc-1 ../inception-plugin-parent inception-example-imls-data-majority diff --git a/inception/inception-export/pom.xml b/inception/inception-export/pom.xml index 4f9bd816376..44484df642c 100644 --- a/inception/inception-export/pom.xml +++ b/inception/inception-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-export INCEpTION - Core - Export diff --git a/inception/inception-external-editor/pom.xml b/inception/inception-external-editor/pom.xml index 0c0eee83002..476d65d5129 100644 --- a/inception/inception-external-editor/pom.xml +++ b/inception/inception-external-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-external-editor INCEpTION - Editor - External editor diff --git a/inception/inception-external-search-core/pom.xml b/inception/inception-external-search-core/pom.xml index d7e684a216f..4af92e19026 100644 --- a/inception/inception-external-search-core/pom.xml +++ b/inception/inception-external-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-external-search-core INCEpTION - External Search - Core diff --git a/inception/inception-external-search-elastic/pom.xml b/inception/inception-external-search-elastic/pom.xml index 3f77728c986..dcbd4e70168 100644 --- a/inception/inception-external-search-elastic/pom.xml +++ b/inception/inception-external-search-elastic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-external-search-elastic INCEpTION - External Search - Elastic Search diff --git a/inception/inception-external-search-opensearch/pom.xml b/inception/inception-external-search-opensearch/pom.xml index fcb5ccdfaf0..6592029bcf4 100644 --- a/inception/inception-external-search-opensearch/pom.xml +++ b/inception/inception-external-search-opensearch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-external-search-opensearch INCEpTION - External Search - OpenSearch diff --git a/inception/inception-external-search-pubannotation/pom.xml b/inception/inception-external-search-pubannotation/pom.xml index b9373bfb134..fa22abc1e90 100644 --- a/inception/inception-external-search-pubannotation/pom.xml +++ b/inception/inception-external-search-pubannotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-external-search-pubannotation INCEpTION - External Search - PubAnnotation diff --git a/inception/inception-external-search-solr/pom.xml b/inception/inception-external-search-solr/pom.xml index 822ae31eba8..056d70e56c8 100644 --- a/inception/inception-external-search-solr/pom.xml +++ b/inception/inception-external-search-solr/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-external-search-solr INCEpTION - External Search - Solr diff --git a/inception/inception-feature-lookup/pom.xml b/inception/inception-feature-lookup/pom.xml index 6db293fe73d..9832076056a 100644 --- a/inception/inception-feature-lookup/pom.xml +++ b/inception/inception-feature-lookup/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-feature-lookup INCEpTION - Lookup Feature Support diff --git a/inception/inception-guidelines/pom.xml b/inception/inception-guidelines/pom.xml index c2cf26dcff2..259cd0a8285 100644 --- a/inception/inception-guidelines/pom.xml +++ b/inception/inception-guidelines/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-guidelines INCEpTION - Core - Annotation Guidelines diff --git a/inception/inception-html-editor/pom.xml b/inception/inception-html-editor/pom.xml index 3939f4561ef..5292dc6ae7f 100644 --- a/inception/inception-html-editor/pom.xml +++ b/inception/inception-html-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-html-editor INCEpTION - Editor - HTML + Annotator JS diff --git a/inception/inception-html-recogito-editor/pom.xml b/inception/inception-html-recogito-editor/pom.xml index 988cd296c73..6f887a958af 100644 --- a/inception/inception-html-recogito-editor/pom.xml +++ b/inception/inception-html-recogito-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-html-recogito-editor INCEpTION - Editor - HTML + Recogito JS (${recogitojs.version}) diff --git a/inception/inception-image/pom.xml b/inception/inception-image/pom.xml index 3dbb04c41d5..d924ae42a14 100644 --- a/inception/inception-image/pom.xml +++ b/inception/inception-image/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-image INCEpTION - Image Support diff --git a/inception/inception-imls-elg/pom.xml b/inception/inception-imls-elg/pom.xml index 1a1a708912e..80a8d0e9237 100644 --- a/inception/inception-imls-elg/pom.xml +++ b/inception/inception-imls-elg/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-elg diff --git a/inception/inception-imls-external/pom.xml b/inception/inception-imls-external/pom.xml index dfd891a5e0b..0e4c1352e2f 100644 --- a/inception/inception-imls-external/pom.xml +++ b/inception/inception-imls-external/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-external diff --git a/inception/inception-imls-hf/pom.xml b/inception/inception-imls-hf/pom.xml index c8c2aabf6d2..d261b8128fb 100644 --- a/inception/inception-imls-hf/pom.xml +++ b/inception/inception-imls-hf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-hf diff --git a/inception/inception-imls-lapps/pom.xml b/inception/inception-imls-lapps/pom.xml index 2f2a060d26f..b252d5a5a4b 100644 --- a/inception/inception-imls-lapps/pom.xml +++ b/inception/inception-imls-lapps/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-lapps diff --git a/inception/inception-imls-opennlp/pom.xml b/inception/inception-imls-opennlp/pom.xml index 2a1ad7e4bbb..68b3a6d29f7 100644 --- a/inception/inception-imls-opennlp/pom.xml +++ b/inception/inception-imls-opennlp/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-opennlp INCEpTION - ML - OpenNLP (v ${opennlp.version}) diff --git a/inception/inception-imls-stringmatch/pom.xml b/inception/inception-imls-stringmatch/pom.xml index bd76d0d3e64..fd0dbd2f2f1 100644 --- a/inception/inception-imls-stringmatch/pom.xml +++ b/inception/inception-imls-stringmatch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-stringmatch INCEpTION - ML - String Matching diff --git a/inception/inception-imls-weblicht/pom.xml b/inception/inception-imls-weblicht/pom.xml index 1569cc4baba..6d2da91b4cb 100644 --- a/inception/inception-imls-weblicht/pom.xml +++ b/inception/inception-imls-weblicht/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-imls-weblicht diff --git a/inception/inception-io-conll/pom.xml b/inception/inception-io-conll/pom.xml index 6111b1c04a0..bd61703c26e 100644 --- a/inception/inception-io-conll/pom.xml +++ b/inception/inception-io-conll/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-conll INCEpTION - IO - CONLL diff --git a/inception/inception-io-html/pom.xml b/inception/inception-io-html/pom.xml index a83e71f0945..5ca466d862f 100644 --- a/inception/inception-io-html/pom.xml +++ b/inception/inception-io-html/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-html INCEpTION - IO - HTML diff --git a/inception/inception-io-imscwb/pom.xml b/inception/inception-io-imscwb/pom.xml index 1070e6e9468..f4ce69e1456 100644 --- a/inception/inception-io-imscwb/pom.xml +++ b/inception/inception-io-imscwb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-imscwb INCEpTION - IO - IMS CWB diff --git a/inception/inception-io-intertext/pom.xml b/inception/inception-io-intertext/pom.xml index e34382d5142..a2768271bc6 100644 --- a/inception/inception-io-intertext/pom.xml +++ b/inception/inception-io-intertext/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-intertext INCEpTION - IO - InterText diff --git a/inception/inception-io-json/pom.xml b/inception/inception-io-json/pom.xml index e9071d6bea3..8951a3ee15b 100644 --- a/inception/inception-io-json/pom.xml +++ b/inception/inception-io-json/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-json INCEpTION - IO - JSON diff --git a/inception/inception-io-lif/pom.xml b/inception/inception-io-lif/pom.xml index 6c9ab8d5139..2fefb6ba585 100644 --- a/inception/inception-io-lif/pom.xml +++ b/inception/inception-io-lif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-lif INCEpTION - IO - LIF (deprecated) diff --git a/inception/inception-io-nif/pom.xml b/inception/inception-io-nif/pom.xml index 3d99192b791..0cad0585fd1 100644 --- a/inception/inception-io-nif/pom.xml +++ b/inception/inception-io-nif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-nif INCEpTION - IO - NIF diff --git a/inception/inception-io-perseus/pom.xml b/inception/inception-io-perseus/pom.xml index 9379f8af88b..94f61d8248a 100644 --- a/inception/inception-io-perseus/pom.xml +++ b/inception/inception-io-perseus/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-perseus INCEpTION - IO - Perseus diff --git a/inception/inception-io-tcf/pom.xml b/inception/inception-io-tcf/pom.xml index cac3fd8d392..2c121ab0d97 100644 --- a/inception/inception-io-tcf/pom.xml +++ b/inception/inception-io-tcf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-tcf INCEpTION - IO - TCF diff --git a/inception/inception-io-tei/pom.xml b/inception/inception-io-tei/pom.xml index 1e30ca7423e..17c77ec9f5a 100644 --- a/inception/inception-io-tei/pom.xml +++ b/inception/inception-io-tei/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-tei INCEpTION - IO - TEI diff --git a/inception/inception-io-text/pom.xml b/inception/inception-io-text/pom.xml index f5a56b3e69e..1609ad05339 100644 --- a/inception/inception-io-text/pom.xml +++ b/inception/inception-io-text/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-text INCEpTION - IO - Text diff --git a/inception/inception-io-webanno-tsv/pom.xml b/inception/inception-io-webanno-tsv/pom.xml index 8df715154dc..1c18d23417e 100644 --- a/inception/inception-io-webanno-tsv/pom.xml +++ b/inception/inception-io-webanno-tsv/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-webanno-tsv INCEpTION - IO - TSV diff --git a/inception/inception-io-xmi/pom.xml b/inception/inception-io-xmi/pom.xml index fe49ee672fc..ec2fd82f23b 100644 --- a/inception/inception-io-xmi/pom.xml +++ b/inception/inception-io-xmi/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-xmi INCEpTION - IO - XMI diff --git a/inception/inception-io-xml/pom.xml b/inception/inception-io-xml/pom.xml index 6f69a15663f..79505223244 100644 --- a/inception/inception-io-xml/pom.xml +++ b/inception/inception-io-xml/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-io-xml INCEpTION - IO - XML diff --git a/inception/inception-js-api/pom.xml b/inception/inception-js-api/pom.xml index 9e6f5c331db..495da6a022d 100644 --- a/inception/inception-js-api/pom.xml +++ b/inception/inception-js-api/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-js-api diff --git a/inception/inception-kb-fact-linking/pom.xml b/inception/inception-kb-fact-linking/pom.xml index 4c4931b7eb9..b803f27bff7 100644 --- a/inception/inception-kb-fact-linking/pom.xml +++ b/inception/inception-kb-fact-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-kb-fact-linking INCEpTION - Knowledge Base - Fact Linking diff --git a/inception/inception-kb/pom.xml b/inception/inception-kb/pom.xml index 996a340a3ff..d7eb160f517 100644 --- a/inception/inception-kb/pom.xml +++ b/inception/inception-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-kb INCEpTION - Knowledge Base - Core diff --git a/inception/inception-layer-docmetadata/pom.xml b/inception/inception-layer-docmetadata/pom.xml index 6a144227064..a8ffaec3c5c 100644 --- a/inception/inception-layer-docmetadata/pom.xml +++ b/inception/inception-layer-docmetadata/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-layer-docmetadata INCEpTION - Document Metadata Support diff --git a/inception/inception-log/pom.xml b/inception/inception-log/pom.xml index 1dd49d03c13..9db17bc3731 100644 --- a/inception/inception-log/pom.xml +++ b/inception/inception-log/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-log INCEpTION - Log diff --git a/inception/inception-model-export/pom.xml b/inception/inception-model-export/pom.xml index cef30cb6b9b..b705fec6c26 100644 --- a/inception/inception-model-export/pom.xml +++ b/inception/inception-model-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-model-export INCEpTION - Core - Export Model diff --git a/inception/inception-model/pom.xml b/inception/inception-model/pom.xml index 6d9269a7994..74d31b6314f 100644 --- a/inception/inception-model/pom.xml +++ b/inception/inception-model/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-model INCEpTION - Core - Model diff --git a/inception/inception-pdf-editor/pom.xml b/inception/inception-pdf-editor/pom.xml index 4aa972aa9e2..3a3779aac18 100644 --- a/inception/inception-pdf-editor/pom.xml +++ b/inception/inception-pdf-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}) inception-pdf-editor diff --git a/inception/inception-pdf-editor2/pom.xml b/inception/inception-pdf-editor2/pom.xml index d90872324f4..cd302003c61 100644 --- a/inception/inception-pdf-editor2/pom.xml +++ b/inception/inception-pdf-editor2/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}; pdfjs ${pdfjs.version}) inception-pdf-editor2 diff --git a/inception/inception-plugin-api/pom.xml b/inception/inception-plugin-api/pom.xml index a9cadf616c7..50a8520f363 100644 --- a/inception/inception-plugin-api/pom.xml +++ b/inception/inception-plugin-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-plugin-api INCEpTION - Plugin API diff --git a/inception/inception-plugin-manager/pom.xml b/inception/inception-plugin-manager/pom.xml index 49b684a67d5..f7a1c0394c3 100644 --- a/inception/inception-plugin-manager/pom.xml +++ b/inception/inception-plugin-manager/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-plugin-manager INCEpTION - Plugin manager diff --git a/inception/inception-plugin-parent/pom.xml b/inception/inception-plugin-parent/pom.xml index 801365859f7..3548f311b0f 100644 --- a/inception/inception-plugin-parent/pom.xml +++ b/inception/inception-plugin-parent/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-plugin-parent INCEpTION - Plugin Parent POM diff --git a/inception/inception-preferences/pom.xml b/inception/inception-preferences/pom.xml index 9260d7ee5b9..e50e9ba3f2f 100644 --- a/inception/inception-preferences/pom.xml +++ b/inception/inception-preferences/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-preferences INCEpTION - Preferences diff --git a/inception/inception-project-export/pom.xml b/inception/inception-project-export/pom.xml index 61159da9b24..8426c8aecea 100644 --- a/inception/inception-project-export/pom.xml +++ b/inception/inception-project-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project-export INCEpTION - Core - Project export diff --git a/inception/inception-project-initializers-basic/pom.xml b/inception/inception-project-initializers-basic/pom.xml index a03efb4cb4e..a80346fce2e 100644 --- a/inception/inception-project-initializers-basic/pom.xml +++ b/inception/inception-project-initializers-basic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project-initializers-basic INCEpTION - Core - Project initializers - Basic Span / Relation diff --git a/inception/inception-project-initializers-doclabeling/pom.xml b/inception/inception-project-initializers-doclabeling/pom.xml index a993f1375b9..bb73180a7e8 100644 --- a/inception/inception-project-initializers-doclabeling/pom.xml +++ b/inception/inception-project-initializers-doclabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project-initializers-doclabeling INCEpTION - Core - Project initializers - Document Labeling diff --git a/inception/inception-project-initializers-sentencelabeling/pom.xml b/inception/inception-project-initializers-sentencelabeling/pom.xml index 3294b0c5464..62a10dca99b 100644 --- a/inception/inception-project-initializers-sentencelabeling/pom.xml +++ b/inception/inception-project-initializers-sentencelabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project-initializers-sentencelabeling INCEpTION - Core - Project initializers - Sentence Labeling diff --git a/inception/inception-project-initializers-wikidatalinking/pom.xml b/inception/inception-project-initializers-wikidatalinking/pom.xml index 6857252e375..e942f21660e 100644 --- a/inception/inception-project-initializers-wikidatalinking/pom.xml +++ b/inception/inception-project-initializers-wikidatalinking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project-initializers-wikidatalinking INCEpTION - Core - Project initializers - Entity Linking (Wikidata) diff --git a/inception/inception-project-initializers/pom.xml b/inception/inception-project-initializers/pom.xml index e7bccbf8eb8..372cb8ea1e7 100644 --- a/inception/inception-project-initializers/pom.xml +++ b/inception/inception-project-initializers/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project-initializers INCEpTION - Core - Project initializers diff --git a/inception/inception-project/pom.xml b/inception/inception-project/pom.xml index 582abc2d8e8..afaea2ca9f9 100644 --- a/inception/inception-project/pom.xml +++ b/inception/inception-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-project INCEpTION - Core - Project diff --git a/inception/inception-recommendation-api/pom.xml b/inception/inception-recommendation-api/pom.xml index 697d4253793..2b881bad6df 100644 --- a/inception/inception-recommendation-api/pom.xml +++ b/inception/inception-recommendation-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-recommendation-api INCEpTION - Recommendation - API diff --git a/inception/inception-recommendation/pom.xml b/inception/inception-recommendation/pom.xml index 2254a904d4d..7fc53cffdbe 100644 --- a/inception/inception-recommendation/pom.xml +++ b/inception/inception-recommendation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-recommendation INCEpTION - Recommendation - Core diff --git a/inception/inception-remote/pom.xml b/inception/inception-remote/pom.xml index fc0f7c59e81..295bac60403 100644 --- a/inception/inception-remote/pom.xml +++ b/inception/inception-remote/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-remote INCEpTION - Core - Remote API diff --git a/inception/inception-review-editor/pom.xml b/inception/inception-review-editor/pom.xml index 363dfa702b2..4d3f0a014c9 100644 --- a/inception/inception-review-editor/pom.xml +++ b/inception/inception-review-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 INCEpTION - Editor - Review inception-review-editor diff --git a/inception/inception-scheduling/pom.xml b/inception/inception-scheduling/pom.xml index cbd11b4965f..b5c0b0bf378 100644 --- a/inception/inception-scheduling/pom.xml +++ b/inception/inception-scheduling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-scheduling INCEpTION - Scheduling diff --git a/inception/inception-schema/pom.xml b/inception/inception-schema/pom.xml index f3bd61ef8f0..6c3090c33d8 100644 --- a/inception/inception-schema/pom.xml +++ b/inception/inception-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-schema INCEpTION - Core - Annotation Schema diff --git a/inception/inception-search-core/pom.xml b/inception/inception-search-core/pom.xml index ed6f84b4899..2530efcc7d1 100644 --- a/inception/inception-search-core/pom.xml +++ b/inception/inception-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-search-core INCEpTION - Search - Core diff --git a/inception/inception-search-mtas/pom.xml b/inception/inception-search-mtas/pom.xml index 27acf6a0655..b1d871d91e1 100644 --- a/inception/inception-search-mtas/pom.xml +++ b/inception/inception-search-mtas/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-search-mtas INCEpTION - Search - MTAS diff --git a/inception/inception-security/pom.xml b/inception/inception-security/pom.xml index f9125d63527..bab1376afed 100644 --- a/inception/inception-security/pom.xml +++ b/inception/inception-security/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-security INCEpTION - Core - Security diff --git a/inception/inception-sharing/pom.xml b/inception/inception-sharing/pom.xml index f896e275adc..cdd5bb4872d 100644 --- a/inception/inception-sharing/pom.xml +++ b/inception/inception-sharing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-sharing INCEpTION - Sharing diff --git a/inception/inception-support-standalone/pom.xml b/inception/inception-support-standalone/pom.xml index 7e2a2a567da..25b7920a7ec 100644 --- a/inception/inception-support-standalone/pom.xml +++ b/inception/inception-support-standalone/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-support-standalone INCEpTION - Core - Support for standalone mode diff --git a/inception/inception-support/pom.xml b/inception/inception-support/pom.xml index b19d2a3fa0e..efad79446f9 100644 --- a/inception/inception-support/pom.xml +++ b/inception/inception-support/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-support INCEpTION - Support library diff --git a/inception/inception-telemetry/pom.xml b/inception/inception-telemetry/pom.xml index 576fd7a28f4..fc55494d7eb 100644 --- a/inception/inception-telemetry/pom.xml +++ b/inception/inception-telemetry/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-telemetry INCEpTION - Telemetry diff --git a/inception/inception-testing/pom.xml b/inception/inception-testing/pom.xml index 55938eb4187..8064598cadc 100644 --- a/inception/inception-testing/pom.xml +++ b/inception/inception-testing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-testing INCEpTION - Test Support library diff --git a/inception/inception-tutorial/pom.xml b/inception/inception-tutorial/pom.xml index 609fb346b59..d9eea945840 100644 --- a/inception/inception-tutorial/pom.xml +++ b/inception/inception-tutorial/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-tutorial INCEpTION - UI - Tutorial diff --git a/inception/inception-ui-agreement/pom.xml b/inception/inception-ui-agreement/pom.xml index 999a058b430..d585b7e52e8 100644 --- a/inception/inception-ui-agreement/pom.xml +++ b/inception/inception-ui-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-agreement INCEpTION - UI - Agreement diff --git a/inception/inception-ui-annotation/pom.xml b/inception/inception-ui-annotation/pom.xml index b271671df76..2226b390214 100644 --- a/inception/inception-ui-annotation/pom.xml +++ b/inception/inception-ui-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-annotation INCEpTION - UI - Annotation diff --git a/inception/inception-ui-core/pom.xml b/inception/inception-ui-core/pom.xml index aa691b10b95..ca5e2aa9426 100644 --- a/inception/inception-ui-core/pom.xml +++ b/inception/inception-ui-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-core INCEpTION - UI - Core diff --git a/inception/inception-ui-curation/pom.xml b/inception/inception-ui-curation/pom.xml index bc085277ec1..11c9c6f985d 100644 --- a/inception/inception-ui-curation/pom.xml +++ b/inception/inception-ui-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-curation INCEpTION - UI - Curation diff --git a/inception/inception-ui-dashboard-activity/pom.xml b/inception/inception-ui-dashboard-activity/pom.xml index df312118ce8..563ac9cf6fd 100644 --- a/inception/inception-ui-dashboard-activity/pom.xml +++ b/inception/inception-ui-dashboard-activity/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-dashboard-activity INCEpTION - Dashboard - Recent activity diff --git a/inception/inception-ui-dashboard/pom.xml b/inception/inception-ui-dashboard/pom.xml index d09e3fdb1d7..2fb334e5881 100644 --- a/inception/inception-ui-dashboard/pom.xml +++ b/inception/inception-ui-dashboard/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-dashboard INCEpTION - UI - Dashboard diff --git a/inception/inception-ui-external-search/pom.xml b/inception/inception-ui-external-search/pom.xml index 6320997c35f..c5a3072bf3b 100644 --- a/inception/inception-ui-external-search/pom.xml +++ b/inception/inception-ui-external-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-external-search INCEpTION - External Search - UI diff --git a/inception/inception-ui-kb/pom.xml b/inception/inception-ui-kb/pom.xml index 41bd4652947..e5e9514e0bf 100644 --- a/inception/inception-ui-kb/pom.xml +++ b/inception/inception-ui-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-kb INCEpTION - Knowledge Base - UI diff --git a/inception/inception-ui-project/pom.xml b/inception/inception-ui-project/pom.xml index d9afa577458..3650708c19b 100644 --- a/inception/inception-ui-project/pom.xml +++ b/inception/inception-ui-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-project INCEpTION - UI - Project diff --git a/inception/inception-ui-search/pom.xml b/inception/inception-ui-search/pom.xml index e18705b9860..03502856698 100644 --- a/inception/inception-ui-search/pom.xml +++ b/inception/inception-ui-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-search INCEpTION - Search - UI diff --git a/inception/inception-ui-tagsets/pom.xml b/inception/inception-ui-tagsets/pom.xml index 63fa93efb10..f837d72bcc7 100644 --- a/inception/inception-ui-tagsets/pom.xml +++ b/inception/inception-ui-tagsets/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-ui-tagsets INCEpTION - UI - Tagsets diff --git a/inception/inception-versioning/pom.xml b/inception/inception-versioning/pom.xml index d009bce4de9..d725f7feccc 100644 --- a/inception/inception-versioning/pom.xml +++ b/inception/inception-versioning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-versioning INCEpTION - Versioning diff --git a/inception/inception-websocket/pom.xml b/inception/inception-websocket/pom.xml index a1297422ba9..e5e9b36d63c 100644 --- a/inception/inception-websocket/pom.xml +++ b/inception/inception-websocket/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0-rc-1 inception-websocket INCEpTION - Websocket diff --git a/inception/inception-workload-dynamic/pom.xml b/inception/inception-workload-dynamic/pom.xml index 4ca5f949768..78144a6adcc 100644 --- a/inception/inception-workload-dynamic/pom.xml +++ b/inception/inception-workload-dynamic/pom.xml @@ -19,7 +19,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-workload-dynamic diff --git a/inception/inception-workload-matrix/pom.xml b/inception/inception-workload-matrix/pom.xml index dc021554c07..ce6c94fc14d 100644 --- a/inception/inception-workload-matrix/pom.xml +++ b/inception/inception-workload-matrix/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-workload-matrix diff --git a/inception/inception-workload-ui/pom.xml b/inception/inception-workload-ui/pom.xml index 1d1f79d7a64..b713849ebd8 100644 --- a/inception/inception-workload-ui/pom.xml +++ b/inception/inception-workload-ui/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-workload-ui diff --git a/inception/inception-workload/pom.xml b/inception/inception-workload/pom.xml index aea6f25fe5e..022271f2640 100644 --- a/inception/inception-workload/pom.xml +++ b/inception/inception-workload/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0-rc-1 4.0.0 inception-workload diff --git a/inception/pom.xml b/inception/pom.xml index 5371d3cf7ff..5a8512acf50 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-SNAPSHOT + 27.0-rc-1 inception-app pom @@ -45,7 +45,7 @@ scm:git:https://github.com/inception-project/inception.git scm:git:https://github.com/inception-project/inception.git https://github.com/inception-project/inception - HEAD + inception-27.0-rc-1 @@ -517,212 +517,212 @@ de.tudarmstadt.ukp.inception.app inception-doc - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-agreement - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-agreement - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-annotation - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-project - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-tagsets - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-curation - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-curation - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-search - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-workload - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-workload-dynamic - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-workload-matrix - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-workload-ui - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-external-editor - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-external-search-core - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-external-search-pubannotation - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-external-search-elastic - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-external-search-opensearch - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-external-search-solr - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-external-search - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-dashboard - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-dashboard-activity - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-kb - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-kb-fact-linking - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-html-editor - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-html-recogito-editor - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-pdf-editor - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-pdf-editor2 - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-recommendation - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-recommendation-api - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-review-editor - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-sharing - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-preferences - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-guidelines - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-schema - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-active-learning - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-core - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-ui-kb - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-concept-linking - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-imls-opennlp - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-imls-elg - 27.0-SNAPSHOT + 27.0-rc-1 de.tudarmstadt.ukp.inception.app inception-imls-hf - 27.0-SNAPSHOT + 27.0-rc-1 diff --git a/pom.xml b/pom.xml index 342add70145..b92ab455dad 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-SNAPSHOT + 27.0-rc-1 pom INCEpTION INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management. @@ -50,7 +50,7 @@ scm:git:https://github.com/inception-project/inception.git scm:git:https://github.com/inception-project/inception.git https://github.com/inception-project/inception - HEAD + inception-27.0-rc-1 From b4a0fea39432c8defc970c2a3f57c542adbfd21d Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 28 Feb 2023 14:42:48 +0100 Subject: [PATCH 007/189] [maven-release-plugin] prepare for next development iteration --- inception/inception-active-learning/pom.xml | 2 +- inception/inception-agreement/pom.xml | 2 +- .../inception-annotation-storage/pom.xml | 2 +- inception/inception-api-annotation/pom.xml | 2 +- inception/inception-api-editor/pom.xml | 2 +- inception/inception-api-formats/pom.xml | 2 +- inception/inception-api-render/pom.xml | 2 +- inception/inception-api-schema/pom.xml | 2 +- inception/inception-api/pom.xml | 2 +- inception/inception-app-webapp/pom.xml | 2 +- inception/inception-boot-loader/pom.xml | 2 +- inception/inception-bootstrap/pom.xml | 2 +- inception/inception-brat-editor/pom.xml | 2 +- inception/inception-build/pom.xml | 2 +- inception/inception-concept-linking/pom.xml | 2 +- inception/inception-constraints/pom.xml | 2 +- inception/inception-curation-legacy/pom.xml | 2 +- inception/inception-curation/pom.xml | 2 +- inception/inception-diag/pom.xml | 2 +- inception/inception-diam-editor/pom.xml | 2 +- inception/inception-diam/pom.xml | 2 +- inception/inception-doc/pom.xml | 2 +- inception/inception-docker/pom.xml | 2 +- inception/inception-documents/pom.xml | 2 +- .../pom.xml | 2 +- inception/inception-export/pom.xml | 2 +- inception/inception-external-editor/pom.xml | 2 +- .../inception-external-search-core/pom.xml | 2 +- .../inception-external-search-elastic/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-external-search-solr/pom.xml | 2 +- inception/inception-feature-lookup/pom.xml | 2 +- inception/inception-guidelines/pom.xml | 2 +- inception/inception-html-editor/pom.xml | 2 +- .../inception-html-recogito-editor/pom.xml | 2 +- inception/inception-image/pom.xml | 2 +- inception/inception-imls-elg/pom.xml | 2 +- inception/inception-imls-external/pom.xml | 2 +- inception/inception-imls-hf/pom.xml | 2 +- inception/inception-imls-lapps/pom.xml | 2 +- inception/inception-imls-opennlp/pom.xml | 2 +- inception/inception-imls-stringmatch/pom.xml | 2 +- inception/inception-imls-weblicht/pom.xml | 2 +- inception/inception-io-conll/pom.xml | 2 +- inception/inception-io-html/pom.xml | 2 +- inception/inception-io-imscwb/pom.xml | 2 +- inception/inception-io-intertext/pom.xml | 2 +- inception/inception-io-json/pom.xml | 2 +- inception/inception-io-lif/pom.xml | 2 +- inception/inception-io-nif/pom.xml | 2 +- inception/inception-io-perseus/pom.xml | 2 +- inception/inception-io-tcf/pom.xml | 2 +- inception/inception-io-tei/pom.xml | 2 +- inception/inception-io-text/pom.xml | 2 +- inception/inception-io-webanno-tsv/pom.xml | 2 +- inception/inception-io-xmi/pom.xml | 2 +- inception/inception-io-xml/pom.xml | 2 +- inception/inception-js-api/pom.xml | 2 +- inception/inception-kb-fact-linking/pom.xml | 2 +- inception/inception-kb/pom.xml | 2 +- inception/inception-layer-docmetadata/pom.xml | 2 +- inception/inception-log/pom.xml | 2 +- inception/inception-model-export/pom.xml | 2 +- inception/inception-model/pom.xml | 2 +- inception/inception-pdf-editor/pom.xml | 2 +- inception/inception-pdf-editor2/pom.xml | 2 +- inception/inception-plugin-api/pom.xml | 2 +- inception/inception-plugin-manager/pom.xml | 2 +- inception/inception-plugin-parent/pom.xml | 2 +- inception/inception-preferences/pom.xml | 2 +- inception/inception-project-export/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-project-initializers/pom.xml | 2 +- inception/inception-project/pom.xml | 2 +- .../inception-recommendation-api/pom.xml | 2 +- inception/inception-recommendation/pom.xml | 2 +- inception/inception-remote/pom.xml | 2 +- inception/inception-review-editor/pom.xml | 2 +- inception/inception-scheduling/pom.xml | 2 +- inception/inception-schema/pom.xml | 2 +- inception/inception-search-core/pom.xml | 2 +- inception/inception-search-mtas/pom.xml | 2 +- inception/inception-security/pom.xml | 2 +- inception/inception-sharing/pom.xml | 2 +- .../inception-support-standalone/pom.xml | 2 +- inception/inception-support/pom.xml | 2 +- inception/inception-telemetry/pom.xml | 2 +- inception/inception-testing/pom.xml | 2 +- inception/inception-tutorial/pom.xml | 2 +- inception/inception-ui-agreement/pom.xml | 2 +- inception/inception-ui-annotation/pom.xml | 2 +- inception/inception-ui-core/pom.xml | 2 +- inception/inception-ui-curation/pom.xml | 2 +- .../inception-ui-dashboard-activity/pom.xml | 2 +- inception/inception-ui-dashboard/pom.xml | 2 +- .../inception-ui-external-search/pom.xml | 2 +- inception/inception-ui-kb/pom.xml | 2 +- inception/inception-ui-project/pom.xml | 2 +- inception/inception-ui-search/pom.xml | 2 +- inception/inception-ui-tagsets/pom.xml | 2 +- inception/inception-versioning/pom.xml | 2 +- inception/inception-websocket/pom.xml | 2 +- inception/inception-workload-dynamic/pom.xml | 2 +- inception/inception-workload-matrix/pom.xml | 2 +- inception/inception-workload-ui/pom.xml | 2 +- inception/inception-workload/pom.xml | 2 +- inception/pom.xml | 214 +++++++++--------- pom.xml | 4 +- 112 files changed, 219 insertions(+), 219 deletions(-) diff --git a/inception/inception-active-learning/pom.xml b/inception/inception-active-learning/pom.xml index 59c799e91ec..7909d448328 100644 --- a/inception/inception-active-learning/pom.xml +++ b/inception/inception-active-learning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT .. inception-active-learning diff --git a/inception/inception-agreement/pom.xml b/inception/inception-agreement/pom.xml index f3e7e4dc904..485da6c2098 100644 --- a/inception/inception-agreement/pom.xml +++ b/inception/inception-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-agreement INCEpTION - Core - Agreement diff --git a/inception/inception-annotation-storage/pom.xml b/inception/inception-annotation-storage/pom.xml index 45e98364b39..104fa8b88b6 100644 --- a/inception/inception-annotation-storage/pom.xml +++ b/inception/inception-annotation-storage/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-annotation-storage INCEpTION - Core - Annotation Storage diff --git a/inception/inception-api-annotation/pom.xml b/inception/inception-api-annotation/pom.xml index e50df6010b2..d7759afe81b 100644 --- a/inception/inception-api-annotation/pom.xml +++ b/inception/inception-api-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-api-annotation INCEpTION - Core - Annotation API diff --git a/inception/inception-api-editor/pom.xml b/inception/inception-api-editor/pom.xml index c91a3760c07..693a41899d1 100644 --- a/inception/inception-api-editor/pom.xml +++ b/inception/inception-api-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-api-editor INCEpTION - Core - Annotation editor API diff --git a/inception/inception-api-formats/pom.xml b/inception/inception-api-formats/pom.xml index 2288aed4c4d..cbf96d1e800 100644 --- a/inception/inception-api-formats/pom.xml +++ b/inception/inception-api-formats/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-api-formats INCEpTION - Core - Formats API diff --git a/inception/inception-api-render/pom.xml b/inception/inception-api-render/pom.xml index f3563eb221b..e493ce3940e 100644 --- a/inception/inception-api-render/pom.xml +++ b/inception/inception-api-render/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-api-render INCEpTION - Core - Annotation rendering API diff --git a/inception/inception-api-schema/pom.xml b/inception/inception-api-schema/pom.xml index 22f70ba8dc2..382d455b6fb 100644 --- a/inception/inception-api-schema/pom.xml +++ b/inception/inception-api-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-api-schema INCEpTION - Core - Annotation Schema API diff --git a/inception/inception-api/pom.xml b/inception/inception-api/pom.xml index fe400706a9a..4d26bfd1d7d 100644 --- a/inception/inception-api/pom.xml +++ b/inception/inception-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-api INCEpTION - Core - API diff --git a/inception/inception-app-webapp/pom.xml b/inception/inception-app-webapp/pom.xml index 80d4be62a05..30cfd2e8724 100644 --- a/inception/inception-app-webapp/pom.xml +++ b/inception/inception-app-webapp/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT .. diff --git a/inception/inception-boot-loader/pom.xml b/inception/inception-boot-loader/pom.xml index 2da7ac681de..84377186315 100644 --- a/inception/inception-boot-loader/pom.xml +++ b/inception/inception-boot-loader/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-boot-loader INCEpTION - Boot loader diff --git a/inception/inception-bootstrap/pom.xml b/inception/inception-bootstrap/pom.xml index 9235a5ac769..140ed867558 100644 --- a/inception/inception-bootstrap/pom.xml +++ b/inception/inception-bootstrap/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-bootstrap diff --git a/inception/inception-brat-editor/pom.xml b/inception/inception-brat-editor/pom.xml index fa943cb933d..7817719fd14 100644 --- a/inception/inception-brat-editor/pom.xml +++ b/inception/inception-brat-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-brat-editor INCEpTION - Editor - brat diff --git a/inception/inception-build/pom.xml b/inception/inception-build/pom.xml index 8bfbf588938..09daa2d30b0 100644 --- a/inception/inception-build/pom.xml +++ b/inception/inception-build/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-build INCEpTION - Build resources diff --git a/inception/inception-concept-linking/pom.xml b/inception/inception-concept-linking/pom.xml index da35ddf92bb..782e92c2ac7 100644 --- a/inception/inception-concept-linking/pom.xml +++ b/inception/inception-concept-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-concept-linking INCEpTION - Concept Linking diff --git a/inception/inception-constraints/pom.xml b/inception/inception-constraints/pom.xml index 533f097a0ad..c1e865ef272 100644 --- a/inception/inception-constraints/pom.xml +++ b/inception/inception-constraints/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-constraints INCEpTION - Core - Constraints diff --git a/inception/inception-curation-legacy/pom.xml b/inception/inception-curation-legacy/pom.xml index 5482ab80c76..0b66e51f660 100644 --- a/inception/inception-curation-legacy/pom.xml +++ b/inception/inception-curation-legacy/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-curation-legacy INCEpTION - Core - Curation diff --git a/inception/inception-curation/pom.xml b/inception/inception-curation/pom.xml index 21b3e3d5ed3..147bca250a6 100644 --- a/inception/inception-curation/pom.xml +++ b/inception/inception-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-curation INCEpTION - Curation diff --git a/inception/inception-diag/pom.xml b/inception/inception-diag/pom.xml index 1c944a20e4d..4397c27bdd6 100644 --- a/inception/inception-diag/pom.xml +++ b/inception/inception-diag/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-diag INCEpTION - Core - Diagnostics diff --git a/inception/inception-diam-editor/pom.xml b/inception/inception-diam-editor/pom.xml index 0494f0f4fca..fa6d785bb16 100644 --- a/inception/inception-diam-editor/pom.xml +++ b/inception/inception-diam-editor/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-diam-editor INCEpTION - DIAM - Editor diff --git a/inception/inception-diam/pom.xml b/inception/inception-diam/pom.xml index 8544c35f36c..76c9cd00ad0 100644 --- a/inception/inception-diam/pom.xml +++ b/inception/inception-diam/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-diam diff --git a/inception/inception-doc/pom.xml b/inception/inception-doc/pom.xml index 43ba2c1d598..60897dbbab3 100644 --- a/inception/inception-doc/pom.xml +++ b/inception/inception-doc/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-doc jar diff --git a/inception/inception-docker/pom.xml b/inception/inception-docker/pom.xml index 527bf969708..01495e66e18 100644 --- a/inception/inception-docker/pom.xml +++ b/inception/inception-docker/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT .. inception-docker diff --git a/inception/inception-documents/pom.xml b/inception/inception-documents/pom.xml index 3ba173f5c79..c88effa2f32 100644 --- a/inception/inception-documents/pom.xml +++ b/inception/inception-documents/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-documents INCEpTION - Core - Persistence API diff --git a/inception/inception-example-imls-data-majority/pom.xml b/inception/inception-example-imls-data-majority/pom.xml index 9939a8a42ce..f6fad56f3da 100644 --- a/inception/inception-example-imls-data-majority/pom.xml +++ b/inception/inception-example-imls-data-majority/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-plugin-parent - 27.0-rc-1 + 27.0-SNAPSHOT ../inception-plugin-parent inception-example-imls-data-majority diff --git a/inception/inception-export/pom.xml b/inception/inception-export/pom.xml index 44484df642c..4f9bd816376 100644 --- a/inception/inception-export/pom.xml +++ b/inception/inception-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-export INCEpTION - Core - Export diff --git a/inception/inception-external-editor/pom.xml b/inception/inception-external-editor/pom.xml index 476d65d5129..0c0eee83002 100644 --- a/inception/inception-external-editor/pom.xml +++ b/inception/inception-external-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-external-editor INCEpTION - Editor - External editor diff --git a/inception/inception-external-search-core/pom.xml b/inception/inception-external-search-core/pom.xml index 4af92e19026..d7e684a216f 100644 --- a/inception/inception-external-search-core/pom.xml +++ b/inception/inception-external-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-external-search-core INCEpTION - External Search - Core diff --git a/inception/inception-external-search-elastic/pom.xml b/inception/inception-external-search-elastic/pom.xml index dcbd4e70168..3f77728c986 100644 --- a/inception/inception-external-search-elastic/pom.xml +++ b/inception/inception-external-search-elastic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-external-search-elastic INCEpTION - External Search - Elastic Search diff --git a/inception/inception-external-search-opensearch/pom.xml b/inception/inception-external-search-opensearch/pom.xml index 6592029bcf4..fcb5ccdfaf0 100644 --- a/inception/inception-external-search-opensearch/pom.xml +++ b/inception/inception-external-search-opensearch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-external-search-opensearch INCEpTION - External Search - OpenSearch diff --git a/inception/inception-external-search-pubannotation/pom.xml b/inception/inception-external-search-pubannotation/pom.xml index fa22abc1e90..b9373bfb134 100644 --- a/inception/inception-external-search-pubannotation/pom.xml +++ b/inception/inception-external-search-pubannotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-external-search-pubannotation INCEpTION - External Search - PubAnnotation diff --git a/inception/inception-external-search-solr/pom.xml b/inception/inception-external-search-solr/pom.xml index 056d70e56c8..822ae31eba8 100644 --- a/inception/inception-external-search-solr/pom.xml +++ b/inception/inception-external-search-solr/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-external-search-solr INCEpTION - External Search - Solr diff --git a/inception/inception-feature-lookup/pom.xml b/inception/inception-feature-lookup/pom.xml index 9832076056a..6db293fe73d 100644 --- a/inception/inception-feature-lookup/pom.xml +++ b/inception/inception-feature-lookup/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-feature-lookup INCEpTION - Lookup Feature Support diff --git a/inception/inception-guidelines/pom.xml b/inception/inception-guidelines/pom.xml index 259cd0a8285..c2cf26dcff2 100644 --- a/inception/inception-guidelines/pom.xml +++ b/inception/inception-guidelines/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-guidelines INCEpTION - Core - Annotation Guidelines diff --git a/inception/inception-html-editor/pom.xml b/inception/inception-html-editor/pom.xml index 5292dc6ae7f..3939f4561ef 100644 --- a/inception/inception-html-editor/pom.xml +++ b/inception/inception-html-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-html-editor INCEpTION - Editor - HTML + Annotator JS diff --git a/inception/inception-html-recogito-editor/pom.xml b/inception/inception-html-recogito-editor/pom.xml index 6f887a958af..988cd296c73 100644 --- a/inception/inception-html-recogito-editor/pom.xml +++ b/inception/inception-html-recogito-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-html-recogito-editor INCEpTION - Editor - HTML + Recogito JS (${recogitojs.version}) diff --git a/inception/inception-image/pom.xml b/inception/inception-image/pom.xml index d924ae42a14..3dbb04c41d5 100644 --- a/inception/inception-image/pom.xml +++ b/inception/inception-image/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-image INCEpTION - Image Support diff --git a/inception/inception-imls-elg/pom.xml b/inception/inception-imls-elg/pom.xml index 80a8d0e9237..1a1a708912e 100644 --- a/inception/inception-imls-elg/pom.xml +++ b/inception/inception-imls-elg/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-elg diff --git a/inception/inception-imls-external/pom.xml b/inception/inception-imls-external/pom.xml index 0e4c1352e2f..dfd891a5e0b 100644 --- a/inception/inception-imls-external/pom.xml +++ b/inception/inception-imls-external/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-external diff --git a/inception/inception-imls-hf/pom.xml b/inception/inception-imls-hf/pom.xml index d261b8128fb..c8c2aabf6d2 100644 --- a/inception/inception-imls-hf/pom.xml +++ b/inception/inception-imls-hf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-hf diff --git a/inception/inception-imls-lapps/pom.xml b/inception/inception-imls-lapps/pom.xml index b252d5a5a4b..2f2a060d26f 100644 --- a/inception/inception-imls-lapps/pom.xml +++ b/inception/inception-imls-lapps/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-lapps diff --git a/inception/inception-imls-opennlp/pom.xml b/inception/inception-imls-opennlp/pom.xml index 68b3a6d29f7..2a1ad7e4bbb 100644 --- a/inception/inception-imls-opennlp/pom.xml +++ b/inception/inception-imls-opennlp/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-opennlp INCEpTION - ML - OpenNLP (v ${opennlp.version}) diff --git a/inception/inception-imls-stringmatch/pom.xml b/inception/inception-imls-stringmatch/pom.xml index fd0dbd2f2f1..bd76d0d3e64 100644 --- a/inception/inception-imls-stringmatch/pom.xml +++ b/inception/inception-imls-stringmatch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-stringmatch INCEpTION - ML - String Matching diff --git a/inception/inception-imls-weblicht/pom.xml b/inception/inception-imls-weblicht/pom.xml index 6d2da91b4cb..1569cc4baba 100644 --- a/inception/inception-imls-weblicht/pom.xml +++ b/inception/inception-imls-weblicht/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-imls-weblicht diff --git a/inception/inception-io-conll/pom.xml b/inception/inception-io-conll/pom.xml index bd61703c26e..6111b1c04a0 100644 --- a/inception/inception-io-conll/pom.xml +++ b/inception/inception-io-conll/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-conll INCEpTION - IO - CONLL diff --git a/inception/inception-io-html/pom.xml b/inception/inception-io-html/pom.xml index 5ca466d862f..a83e71f0945 100644 --- a/inception/inception-io-html/pom.xml +++ b/inception/inception-io-html/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-html INCEpTION - IO - HTML diff --git a/inception/inception-io-imscwb/pom.xml b/inception/inception-io-imscwb/pom.xml index f4ce69e1456..1070e6e9468 100644 --- a/inception/inception-io-imscwb/pom.xml +++ b/inception/inception-io-imscwb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-imscwb INCEpTION - IO - IMS CWB diff --git a/inception/inception-io-intertext/pom.xml b/inception/inception-io-intertext/pom.xml index a2768271bc6..e34382d5142 100644 --- a/inception/inception-io-intertext/pom.xml +++ b/inception/inception-io-intertext/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-intertext INCEpTION - IO - InterText diff --git a/inception/inception-io-json/pom.xml b/inception/inception-io-json/pom.xml index 8951a3ee15b..e9071d6bea3 100644 --- a/inception/inception-io-json/pom.xml +++ b/inception/inception-io-json/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-json INCEpTION - IO - JSON diff --git a/inception/inception-io-lif/pom.xml b/inception/inception-io-lif/pom.xml index 2fefb6ba585..6c9ab8d5139 100644 --- a/inception/inception-io-lif/pom.xml +++ b/inception/inception-io-lif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-lif INCEpTION - IO - LIF (deprecated) diff --git a/inception/inception-io-nif/pom.xml b/inception/inception-io-nif/pom.xml index 0cad0585fd1..3d99192b791 100644 --- a/inception/inception-io-nif/pom.xml +++ b/inception/inception-io-nif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-nif INCEpTION - IO - NIF diff --git a/inception/inception-io-perseus/pom.xml b/inception/inception-io-perseus/pom.xml index 94f61d8248a..9379f8af88b 100644 --- a/inception/inception-io-perseus/pom.xml +++ b/inception/inception-io-perseus/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-perseus INCEpTION - IO - Perseus diff --git a/inception/inception-io-tcf/pom.xml b/inception/inception-io-tcf/pom.xml index 2c121ab0d97..cac3fd8d392 100644 --- a/inception/inception-io-tcf/pom.xml +++ b/inception/inception-io-tcf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-tcf INCEpTION - IO - TCF diff --git a/inception/inception-io-tei/pom.xml b/inception/inception-io-tei/pom.xml index 17c77ec9f5a..1e30ca7423e 100644 --- a/inception/inception-io-tei/pom.xml +++ b/inception/inception-io-tei/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-tei INCEpTION - IO - TEI diff --git a/inception/inception-io-text/pom.xml b/inception/inception-io-text/pom.xml index 1609ad05339..f5a56b3e69e 100644 --- a/inception/inception-io-text/pom.xml +++ b/inception/inception-io-text/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-text INCEpTION - IO - Text diff --git a/inception/inception-io-webanno-tsv/pom.xml b/inception/inception-io-webanno-tsv/pom.xml index 1c18d23417e..8df715154dc 100644 --- a/inception/inception-io-webanno-tsv/pom.xml +++ b/inception/inception-io-webanno-tsv/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-webanno-tsv INCEpTION - IO - TSV diff --git a/inception/inception-io-xmi/pom.xml b/inception/inception-io-xmi/pom.xml index ec2fd82f23b..fe49ee672fc 100644 --- a/inception/inception-io-xmi/pom.xml +++ b/inception/inception-io-xmi/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-xmi INCEpTION - IO - XMI diff --git a/inception/inception-io-xml/pom.xml b/inception/inception-io-xml/pom.xml index 79505223244..6f69a15663f 100644 --- a/inception/inception-io-xml/pom.xml +++ b/inception/inception-io-xml/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-io-xml INCEpTION - IO - XML diff --git a/inception/inception-js-api/pom.xml b/inception/inception-js-api/pom.xml index 495da6a022d..9e6f5c331db 100644 --- a/inception/inception-js-api/pom.xml +++ b/inception/inception-js-api/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-js-api diff --git a/inception/inception-kb-fact-linking/pom.xml b/inception/inception-kb-fact-linking/pom.xml index b803f27bff7..4c4931b7eb9 100644 --- a/inception/inception-kb-fact-linking/pom.xml +++ b/inception/inception-kb-fact-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-kb-fact-linking INCEpTION - Knowledge Base - Fact Linking diff --git a/inception/inception-kb/pom.xml b/inception/inception-kb/pom.xml index d7eb160f517..996a340a3ff 100644 --- a/inception/inception-kb/pom.xml +++ b/inception/inception-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-kb INCEpTION - Knowledge Base - Core diff --git a/inception/inception-layer-docmetadata/pom.xml b/inception/inception-layer-docmetadata/pom.xml index a8ffaec3c5c..6a144227064 100644 --- a/inception/inception-layer-docmetadata/pom.xml +++ b/inception/inception-layer-docmetadata/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-layer-docmetadata INCEpTION - Document Metadata Support diff --git a/inception/inception-log/pom.xml b/inception/inception-log/pom.xml index 9db17bc3731..1dd49d03c13 100644 --- a/inception/inception-log/pom.xml +++ b/inception/inception-log/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-log INCEpTION - Log diff --git a/inception/inception-model-export/pom.xml b/inception/inception-model-export/pom.xml index b705fec6c26..cef30cb6b9b 100644 --- a/inception/inception-model-export/pom.xml +++ b/inception/inception-model-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-model-export INCEpTION - Core - Export Model diff --git a/inception/inception-model/pom.xml b/inception/inception-model/pom.xml index 74d31b6314f..6d9269a7994 100644 --- a/inception/inception-model/pom.xml +++ b/inception/inception-model/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-model INCEpTION - Core - Model diff --git a/inception/inception-pdf-editor/pom.xml b/inception/inception-pdf-editor/pom.xml index 3a3779aac18..4aa972aa9e2 100644 --- a/inception/inception-pdf-editor/pom.xml +++ b/inception/inception-pdf-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}) inception-pdf-editor diff --git a/inception/inception-pdf-editor2/pom.xml b/inception/inception-pdf-editor2/pom.xml index cd302003c61..d90872324f4 100644 --- a/inception/inception-pdf-editor2/pom.xml +++ b/inception/inception-pdf-editor2/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}; pdfjs ${pdfjs.version}) inception-pdf-editor2 diff --git a/inception/inception-plugin-api/pom.xml b/inception/inception-plugin-api/pom.xml index 50a8520f363..a9cadf616c7 100644 --- a/inception/inception-plugin-api/pom.xml +++ b/inception/inception-plugin-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-plugin-api INCEpTION - Plugin API diff --git a/inception/inception-plugin-manager/pom.xml b/inception/inception-plugin-manager/pom.xml index f7a1c0394c3..49b684a67d5 100644 --- a/inception/inception-plugin-manager/pom.xml +++ b/inception/inception-plugin-manager/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-plugin-manager INCEpTION - Plugin manager diff --git a/inception/inception-plugin-parent/pom.xml b/inception/inception-plugin-parent/pom.xml index 3548f311b0f..801365859f7 100644 --- a/inception/inception-plugin-parent/pom.xml +++ b/inception/inception-plugin-parent/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-plugin-parent INCEpTION - Plugin Parent POM diff --git a/inception/inception-preferences/pom.xml b/inception/inception-preferences/pom.xml index e50e9ba3f2f..9260d7ee5b9 100644 --- a/inception/inception-preferences/pom.xml +++ b/inception/inception-preferences/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-preferences INCEpTION - Preferences diff --git a/inception/inception-project-export/pom.xml b/inception/inception-project-export/pom.xml index 8426c8aecea..61159da9b24 100644 --- a/inception/inception-project-export/pom.xml +++ b/inception/inception-project-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project-export INCEpTION - Core - Project export diff --git a/inception/inception-project-initializers-basic/pom.xml b/inception/inception-project-initializers-basic/pom.xml index a80346fce2e..a03efb4cb4e 100644 --- a/inception/inception-project-initializers-basic/pom.xml +++ b/inception/inception-project-initializers-basic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project-initializers-basic INCEpTION - Core - Project initializers - Basic Span / Relation diff --git a/inception/inception-project-initializers-doclabeling/pom.xml b/inception/inception-project-initializers-doclabeling/pom.xml index bb73180a7e8..a993f1375b9 100644 --- a/inception/inception-project-initializers-doclabeling/pom.xml +++ b/inception/inception-project-initializers-doclabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project-initializers-doclabeling INCEpTION - Core - Project initializers - Document Labeling diff --git a/inception/inception-project-initializers-sentencelabeling/pom.xml b/inception/inception-project-initializers-sentencelabeling/pom.xml index 62a10dca99b..3294b0c5464 100644 --- a/inception/inception-project-initializers-sentencelabeling/pom.xml +++ b/inception/inception-project-initializers-sentencelabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project-initializers-sentencelabeling INCEpTION - Core - Project initializers - Sentence Labeling diff --git a/inception/inception-project-initializers-wikidatalinking/pom.xml b/inception/inception-project-initializers-wikidatalinking/pom.xml index e942f21660e..6857252e375 100644 --- a/inception/inception-project-initializers-wikidatalinking/pom.xml +++ b/inception/inception-project-initializers-wikidatalinking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project-initializers-wikidatalinking INCEpTION - Core - Project initializers - Entity Linking (Wikidata) diff --git a/inception/inception-project-initializers/pom.xml b/inception/inception-project-initializers/pom.xml index 372cb8ea1e7..e7bccbf8eb8 100644 --- a/inception/inception-project-initializers/pom.xml +++ b/inception/inception-project-initializers/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project-initializers INCEpTION - Core - Project initializers diff --git a/inception/inception-project/pom.xml b/inception/inception-project/pom.xml index afaea2ca9f9..582abc2d8e8 100644 --- a/inception/inception-project/pom.xml +++ b/inception/inception-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-project INCEpTION - Core - Project diff --git a/inception/inception-recommendation-api/pom.xml b/inception/inception-recommendation-api/pom.xml index 2b881bad6df..697d4253793 100644 --- a/inception/inception-recommendation-api/pom.xml +++ b/inception/inception-recommendation-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-recommendation-api INCEpTION - Recommendation - API diff --git a/inception/inception-recommendation/pom.xml b/inception/inception-recommendation/pom.xml index 7fc53cffdbe..2254a904d4d 100644 --- a/inception/inception-recommendation/pom.xml +++ b/inception/inception-recommendation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-recommendation INCEpTION - Recommendation - Core diff --git a/inception/inception-remote/pom.xml b/inception/inception-remote/pom.xml index 295bac60403..fc0f7c59e81 100644 --- a/inception/inception-remote/pom.xml +++ b/inception/inception-remote/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-remote INCEpTION - Core - Remote API diff --git a/inception/inception-review-editor/pom.xml b/inception/inception-review-editor/pom.xml index 4d3f0a014c9..363dfa702b2 100644 --- a/inception/inception-review-editor/pom.xml +++ b/inception/inception-review-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT INCEpTION - Editor - Review inception-review-editor diff --git a/inception/inception-scheduling/pom.xml b/inception/inception-scheduling/pom.xml index b5c0b0bf378..cbd11b4965f 100644 --- a/inception/inception-scheduling/pom.xml +++ b/inception/inception-scheduling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-scheduling INCEpTION - Scheduling diff --git a/inception/inception-schema/pom.xml b/inception/inception-schema/pom.xml index 6c3090c33d8..f3bd61ef8f0 100644 --- a/inception/inception-schema/pom.xml +++ b/inception/inception-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-schema INCEpTION - Core - Annotation Schema diff --git a/inception/inception-search-core/pom.xml b/inception/inception-search-core/pom.xml index 2530efcc7d1..ed6f84b4899 100644 --- a/inception/inception-search-core/pom.xml +++ b/inception/inception-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-search-core INCEpTION - Search - Core diff --git a/inception/inception-search-mtas/pom.xml b/inception/inception-search-mtas/pom.xml index b1d871d91e1..27acf6a0655 100644 --- a/inception/inception-search-mtas/pom.xml +++ b/inception/inception-search-mtas/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-search-mtas INCEpTION - Search - MTAS diff --git a/inception/inception-security/pom.xml b/inception/inception-security/pom.xml index bab1376afed..f9125d63527 100644 --- a/inception/inception-security/pom.xml +++ b/inception/inception-security/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-security INCEpTION - Core - Security diff --git a/inception/inception-sharing/pom.xml b/inception/inception-sharing/pom.xml index cdd5bb4872d..f896e275adc 100644 --- a/inception/inception-sharing/pom.xml +++ b/inception/inception-sharing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-sharing INCEpTION - Sharing diff --git a/inception/inception-support-standalone/pom.xml b/inception/inception-support-standalone/pom.xml index 25b7920a7ec..7e2a2a567da 100644 --- a/inception/inception-support-standalone/pom.xml +++ b/inception/inception-support-standalone/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-support-standalone INCEpTION - Core - Support for standalone mode diff --git a/inception/inception-support/pom.xml b/inception/inception-support/pom.xml index efad79446f9..b19d2a3fa0e 100644 --- a/inception/inception-support/pom.xml +++ b/inception/inception-support/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-support INCEpTION - Support library diff --git a/inception/inception-telemetry/pom.xml b/inception/inception-telemetry/pom.xml index fc55494d7eb..576fd7a28f4 100644 --- a/inception/inception-telemetry/pom.xml +++ b/inception/inception-telemetry/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-telemetry INCEpTION - Telemetry diff --git a/inception/inception-testing/pom.xml b/inception/inception-testing/pom.xml index 8064598cadc..55938eb4187 100644 --- a/inception/inception-testing/pom.xml +++ b/inception/inception-testing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-testing INCEpTION - Test Support library diff --git a/inception/inception-tutorial/pom.xml b/inception/inception-tutorial/pom.xml index d9eea945840..609fb346b59 100644 --- a/inception/inception-tutorial/pom.xml +++ b/inception/inception-tutorial/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-tutorial INCEpTION - UI - Tutorial diff --git a/inception/inception-ui-agreement/pom.xml b/inception/inception-ui-agreement/pom.xml index d585b7e52e8..999a058b430 100644 --- a/inception/inception-ui-agreement/pom.xml +++ b/inception/inception-ui-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-agreement INCEpTION - UI - Agreement diff --git a/inception/inception-ui-annotation/pom.xml b/inception/inception-ui-annotation/pom.xml index 2226b390214..b271671df76 100644 --- a/inception/inception-ui-annotation/pom.xml +++ b/inception/inception-ui-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-annotation INCEpTION - UI - Annotation diff --git a/inception/inception-ui-core/pom.xml b/inception/inception-ui-core/pom.xml index ca5e2aa9426..aa691b10b95 100644 --- a/inception/inception-ui-core/pom.xml +++ b/inception/inception-ui-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-core INCEpTION - UI - Core diff --git a/inception/inception-ui-curation/pom.xml b/inception/inception-ui-curation/pom.xml index 11c9c6f985d..bc085277ec1 100644 --- a/inception/inception-ui-curation/pom.xml +++ b/inception/inception-ui-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-curation INCEpTION - UI - Curation diff --git a/inception/inception-ui-dashboard-activity/pom.xml b/inception/inception-ui-dashboard-activity/pom.xml index 563ac9cf6fd..df312118ce8 100644 --- a/inception/inception-ui-dashboard-activity/pom.xml +++ b/inception/inception-ui-dashboard-activity/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-dashboard-activity INCEpTION - Dashboard - Recent activity diff --git a/inception/inception-ui-dashboard/pom.xml b/inception/inception-ui-dashboard/pom.xml index 2fb334e5881..d09e3fdb1d7 100644 --- a/inception/inception-ui-dashboard/pom.xml +++ b/inception/inception-ui-dashboard/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-dashboard INCEpTION - UI - Dashboard diff --git a/inception/inception-ui-external-search/pom.xml b/inception/inception-ui-external-search/pom.xml index c5a3072bf3b..6320997c35f 100644 --- a/inception/inception-ui-external-search/pom.xml +++ b/inception/inception-ui-external-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-external-search INCEpTION - External Search - UI diff --git a/inception/inception-ui-kb/pom.xml b/inception/inception-ui-kb/pom.xml index e5e9514e0bf..41bd4652947 100644 --- a/inception/inception-ui-kb/pom.xml +++ b/inception/inception-ui-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-kb INCEpTION - Knowledge Base - UI diff --git a/inception/inception-ui-project/pom.xml b/inception/inception-ui-project/pom.xml index 3650708c19b..d9afa577458 100644 --- a/inception/inception-ui-project/pom.xml +++ b/inception/inception-ui-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-project INCEpTION - UI - Project diff --git a/inception/inception-ui-search/pom.xml b/inception/inception-ui-search/pom.xml index 03502856698..e18705b9860 100644 --- a/inception/inception-ui-search/pom.xml +++ b/inception/inception-ui-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-search INCEpTION - Search - UI diff --git a/inception/inception-ui-tagsets/pom.xml b/inception/inception-ui-tagsets/pom.xml index f837d72bcc7..63fa93efb10 100644 --- a/inception/inception-ui-tagsets/pom.xml +++ b/inception/inception-ui-tagsets/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-ui-tagsets INCEpTION - UI - Tagsets diff --git a/inception/inception-versioning/pom.xml b/inception/inception-versioning/pom.xml index d725f7feccc..d009bce4de9 100644 --- a/inception/inception-versioning/pom.xml +++ b/inception/inception-versioning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-versioning INCEpTION - Versioning diff --git a/inception/inception-websocket/pom.xml b/inception/inception-websocket/pom.xml index e5e9b36d63c..a1297422ba9 100644 --- a/inception/inception-websocket/pom.xml +++ b/inception/inception-websocket/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-rc-1 + 27.0-SNAPSHOT inception-websocket INCEpTION - Websocket diff --git a/inception/inception-workload-dynamic/pom.xml b/inception/inception-workload-dynamic/pom.xml index 78144a6adcc..4ca5f949768 100644 --- a/inception/inception-workload-dynamic/pom.xml +++ b/inception/inception-workload-dynamic/pom.xml @@ -19,7 +19,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-workload-dynamic diff --git a/inception/inception-workload-matrix/pom.xml b/inception/inception-workload-matrix/pom.xml index ce6c94fc14d..dc021554c07 100644 --- a/inception/inception-workload-matrix/pom.xml +++ b/inception/inception-workload-matrix/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-workload-matrix diff --git a/inception/inception-workload-ui/pom.xml b/inception/inception-workload-ui/pom.xml index b713849ebd8..1d1f79d7a64 100644 --- a/inception/inception-workload-ui/pom.xml +++ b/inception/inception-workload-ui/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-workload-ui diff --git a/inception/inception-workload/pom.xml b/inception/inception-workload/pom.xml index 022271f2640..aea6f25fe5e 100644 --- a/inception/inception-workload/pom.xml +++ b/inception/inception-workload/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-rc-1 + 27.0-SNAPSHOT 4.0.0 inception-workload diff --git a/inception/pom.xml b/inception/pom.xml index 5a8512acf50..5371d3cf7ff 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-rc-1 + 27.0-SNAPSHOT inception-app pom @@ -45,7 +45,7 @@ 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-27.0-rc-1 + HEAD @@ -517,212 +517,212 @@ de.tudarmstadt.ukp.inception.app inception-doc - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-agreement - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-agreement - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-annotation - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-project - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-tagsets - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-curation - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-curation - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-search - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-dynamic - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-matrix - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-ui - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-editor - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-core - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-pubannotation - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-elastic - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-opensearch - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-solr - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-external-search - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-dashboard - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-dashboard-activity - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-kb - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-kb-fact-linking - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-html-editor - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-html-recogito-editor - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-pdf-editor - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-pdf-editor2 - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-recommendation - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-recommendation-api - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-review-editor - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-sharing - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-preferences - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-guidelines - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-schema - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-active-learning - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-core - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-kb - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-concept-linking - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-opennlp - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-elg - 27.0-rc-1 + 27.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-hf - 27.0-rc-1 + 27.0-SNAPSHOT diff --git a/pom.xml b/pom.xml index b92ab455dad..342add70145 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-rc-1 + 27.0-SNAPSHOT pom INCEpTION INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management. @@ -50,7 +50,7 @@ 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-27.0-rc-1 + HEAD From 7a1e9ebc408b9521ffa8364e4f0477f51619573c Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 28 Feb 2023 16:13:23 +0100 Subject: [PATCH 008/189] No issue. Bump version to 28.0-SNAPSHOT. --- inception/inception-active-learning/pom.xml | 2 +- inception/inception-agreement/pom.xml | 2 +- .../inception-annotation-storage/pom.xml | 2 +- inception/inception-api-annotation/pom.xml | 2 +- inception/inception-api-editor/pom.xml | 2 +- inception/inception-api-formats/pom.xml | 2 +- inception/inception-api-render/pom.xml | 2 +- inception/inception-api-schema/pom.xml | 2 +- inception/inception-api/pom.xml | 2 +- inception/inception-app-webapp/pom.xml | 2 +- inception/inception-boot-loader/pom.xml | 2 +- inception/inception-bootstrap/pom.xml | 2 +- inception/inception-brat-editor/pom.xml | 2 +- inception/inception-build/pom.xml | 2 +- inception/inception-concept-linking/pom.xml | 2 +- inception/inception-constraints/pom.xml | 2 +- inception/inception-curation-legacy/pom.xml | 2 +- inception/inception-curation/pom.xml | 2 +- inception/inception-diag/pom.xml | 2 +- inception/inception-diam-editor/pom.xml | 2 +- inception/inception-diam/pom.xml | 2 +- inception/inception-doc/pom.xml | 2 +- inception/inception-docker/pom.xml | 2 +- inception/inception-documents/pom.xml | 2 +- .../pom.xml | 2 +- inception/inception-export/pom.xml | 2 +- inception/inception-external-editor/pom.xml | 2 +- .../inception-external-search-core/pom.xml | 2 +- .../inception-external-search-elastic/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-external-search-solr/pom.xml | 2 +- inception/inception-feature-lookup/pom.xml | 2 +- inception/inception-guidelines/pom.xml | 2 +- inception/inception-html-editor/pom.xml | 2 +- .../inception-html-recogito-editor/pom.xml | 2 +- inception/inception-image/pom.xml | 2 +- inception/inception-imls-elg/pom.xml | 2 +- inception/inception-imls-external/pom.xml | 2 +- inception/inception-imls-hf/pom.xml | 2 +- inception/inception-imls-lapps/pom.xml | 2 +- inception/inception-imls-opennlp/pom.xml | 2 +- inception/inception-imls-stringmatch/pom.xml | 2 +- inception/inception-imls-weblicht/pom.xml | 2 +- inception/inception-io-conll/pom.xml | 2 +- inception/inception-io-html/pom.xml | 2 +- inception/inception-io-imscwb/pom.xml | 2 +- inception/inception-io-intertext/pom.xml | 2 +- inception/inception-io-json/pom.xml | 2 +- inception/inception-io-lif/pom.xml | 2 +- inception/inception-io-nif/pom.xml | 2 +- inception/inception-io-perseus/pom.xml | 2 +- inception/inception-io-tcf/pom.xml | 2 +- inception/inception-io-tei/pom.xml | 2 +- inception/inception-io-text/pom.xml | 2 +- inception/inception-io-webanno-tsv/pom.xml | 2 +- inception/inception-io-xmi/pom.xml | 2 +- inception/inception-io-xml/pom.xml | 2 +- inception/inception-js-api/pom.xml | 2 +- inception/inception-kb-fact-linking/pom.xml | 2 +- inception/inception-kb/pom.xml | 2 +- inception/inception-layer-docmetadata/pom.xml | 2 +- inception/inception-log/pom.xml | 2 +- inception/inception-model-export/pom.xml | 2 +- inception/inception-model/pom.xml | 2 +- inception/inception-pdf-editor/pom.xml | 2 +- inception/inception-pdf-editor2/pom.xml | 2 +- inception/inception-plugin-api/pom.xml | 2 +- inception/inception-plugin-manager/pom.xml | 2 +- inception/inception-plugin-parent/pom.xml | 2 +- inception/inception-preferences/pom.xml | 2 +- inception/inception-project-export/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-project-initializers/pom.xml | 2 +- inception/inception-project/pom.xml | 2 +- .../inception-recommendation-api/pom.xml | 2 +- inception/inception-recommendation/pom.xml | 2 +- inception/inception-remote/pom.xml | 2 +- inception/inception-review-editor/pom.xml | 2 +- inception/inception-scheduling/pom.xml | 2 +- inception/inception-schema/pom.xml | 2 +- inception/inception-search-core/pom.xml | 2 +- inception/inception-search-mtas/pom.xml | 2 +- inception/inception-security/pom.xml | 2 +- inception/inception-sharing/pom.xml | 2 +- .../inception-support-standalone/pom.xml | 2 +- inception/inception-support/pom.xml | 2 +- inception/inception-telemetry/pom.xml | 2 +- inception/inception-testing/pom.xml | 2 +- inception/inception-tutorial/pom.xml | 2 +- inception/inception-ui-agreement/pom.xml | 2 +- inception/inception-ui-annotation/pom.xml | 2 +- inception/inception-ui-core/pom.xml | 2 +- inception/inception-ui-curation/pom.xml | 2 +- .../inception-ui-dashboard-activity/pom.xml | 2 +- inception/inception-ui-dashboard/pom.xml | 2 +- .../inception-ui-external-search/pom.xml | 2 +- inception/inception-ui-kb/pom.xml | 2 +- inception/inception-ui-project/pom.xml | 2 +- inception/inception-ui-search/pom.xml | 2 +- inception/inception-ui-tagsets/pom.xml | 2 +- inception/inception-versioning/pom.xml | 2 +- inception/inception-websocket/pom.xml | 2 +- inception/inception-workload-dynamic/pom.xml | 2 +- inception/inception-workload-matrix/pom.xml | 2 +- inception/inception-workload-ui/pom.xml | 2 +- inception/inception-workload/pom.xml | 2 +- inception/pom.xml | 212 +++++++++--------- pom.xml | 2 +- 112 files changed, 217 insertions(+), 217 deletions(-) diff --git a/inception/inception-active-learning/pom.xml b/inception/inception-active-learning/pom.xml index 7909d448328..924acef58b4 100644 --- a/inception/inception-active-learning/pom.xml +++ b/inception/inception-active-learning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT .. inception-active-learning diff --git a/inception/inception-agreement/pom.xml b/inception/inception-agreement/pom.xml index 485da6c2098..4980075d5bc 100644 --- a/inception/inception-agreement/pom.xml +++ b/inception/inception-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-agreement INCEpTION - Core - Agreement diff --git a/inception/inception-annotation-storage/pom.xml b/inception/inception-annotation-storage/pom.xml index 104fa8b88b6..0ad60fc29cb 100644 --- a/inception/inception-annotation-storage/pom.xml +++ b/inception/inception-annotation-storage/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-annotation-storage INCEpTION - Core - Annotation Storage diff --git a/inception/inception-api-annotation/pom.xml b/inception/inception-api-annotation/pom.xml index d7759afe81b..3e491113807 100644 --- a/inception/inception-api-annotation/pom.xml +++ b/inception/inception-api-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-api-annotation INCEpTION - Core - Annotation API diff --git a/inception/inception-api-editor/pom.xml b/inception/inception-api-editor/pom.xml index 693a41899d1..b6a53031826 100644 --- a/inception/inception-api-editor/pom.xml +++ b/inception/inception-api-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-api-editor INCEpTION - Core - Annotation editor API diff --git a/inception/inception-api-formats/pom.xml b/inception/inception-api-formats/pom.xml index cbf96d1e800..8b748e8e9b8 100644 --- a/inception/inception-api-formats/pom.xml +++ b/inception/inception-api-formats/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-api-formats INCEpTION - Core - Formats API diff --git a/inception/inception-api-render/pom.xml b/inception/inception-api-render/pom.xml index e493ce3940e..57429bef744 100644 --- a/inception/inception-api-render/pom.xml +++ b/inception/inception-api-render/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-api-render INCEpTION - Core - Annotation rendering API diff --git a/inception/inception-api-schema/pom.xml b/inception/inception-api-schema/pom.xml index 382d455b6fb..0bd0d62eb0a 100644 --- a/inception/inception-api-schema/pom.xml +++ b/inception/inception-api-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-api-schema INCEpTION - Core - Annotation Schema API diff --git a/inception/inception-api/pom.xml b/inception/inception-api/pom.xml index 4d26bfd1d7d..27854e211bb 100644 --- a/inception/inception-api/pom.xml +++ b/inception/inception-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-api INCEpTION - Core - API diff --git a/inception/inception-app-webapp/pom.xml b/inception/inception-app-webapp/pom.xml index 30cfd2e8724..a4ef65e0315 100644 --- a/inception/inception-app-webapp/pom.xml +++ b/inception/inception-app-webapp/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT .. diff --git a/inception/inception-boot-loader/pom.xml b/inception/inception-boot-loader/pom.xml index 84377186315..3548d4137d6 100644 --- a/inception/inception-boot-loader/pom.xml +++ b/inception/inception-boot-loader/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-boot-loader INCEpTION - Boot loader diff --git a/inception/inception-bootstrap/pom.xml b/inception/inception-bootstrap/pom.xml index 140ed867558..ab334ff7b4e 100644 --- a/inception/inception-bootstrap/pom.xml +++ b/inception/inception-bootstrap/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-bootstrap diff --git a/inception/inception-brat-editor/pom.xml b/inception/inception-brat-editor/pom.xml index 7817719fd14..ed621721cbd 100644 --- a/inception/inception-brat-editor/pom.xml +++ b/inception/inception-brat-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-brat-editor INCEpTION - Editor - brat diff --git a/inception/inception-build/pom.xml b/inception/inception-build/pom.xml index 09daa2d30b0..de725537617 100644 --- a/inception/inception-build/pom.xml +++ b/inception/inception-build/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-build INCEpTION - Build resources diff --git a/inception/inception-concept-linking/pom.xml b/inception/inception-concept-linking/pom.xml index 782e92c2ac7..27ae5c1d302 100644 --- a/inception/inception-concept-linking/pom.xml +++ b/inception/inception-concept-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-concept-linking INCEpTION - Concept Linking diff --git a/inception/inception-constraints/pom.xml b/inception/inception-constraints/pom.xml index c1e865ef272..3ecc7a34602 100644 --- a/inception/inception-constraints/pom.xml +++ b/inception/inception-constraints/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-constraints INCEpTION - Core - Constraints diff --git a/inception/inception-curation-legacy/pom.xml b/inception/inception-curation-legacy/pom.xml index 0b66e51f660..7b7bb5ab399 100644 --- a/inception/inception-curation-legacy/pom.xml +++ b/inception/inception-curation-legacy/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-curation-legacy INCEpTION - Core - Curation diff --git a/inception/inception-curation/pom.xml b/inception/inception-curation/pom.xml index 147bca250a6..2d555c4ca41 100644 --- a/inception/inception-curation/pom.xml +++ b/inception/inception-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-curation INCEpTION - Curation diff --git a/inception/inception-diag/pom.xml b/inception/inception-diag/pom.xml index 4397c27bdd6..561c8cba07e 100644 --- a/inception/inception-diag/pom.xml +++ b/inception/inception-diag/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-diag INCEpTION - Core - Diagnostics diff --git a/inception/inception-diam-editor/pom.xml b/inception/inception-diam-editor/pom.xml index fa6d785bb16..20c955745f5 100644 --- a/inception/inception-diam-editor/pom.xml +++ b/inception/inception-diam-editor/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-diam-editor INCEpTION - DIAM - Editor diff --git a/inception/inception-diam/pom.xml b/inception/inception-diam/pom.xml index 76c9cd00ad0..fc37b94c880 100644 --- a/inception/inception-diam/pom.xml +++ b/inception/inception-diam/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-diam diff --git a/inception/inception-doc/pom.xml b/inception/inception-doc/pom.xml index 60897dbbab3..6faccc04652 100644 --- a/inception/inception-doc/pom.xml +++ b/inception/inception-doc/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-doc jar diff --git a/inception/inception-docker/pom.xml b/inception/inception-docker/pom.xml index 01495e66e18..fdc4e8fe1d5 100644 --- a/inception/inception-docker/pom.xml +++ b/inception/inception-docker/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT .. inception-docker diff --git a/inception/inception-documents/pom.xml b/inception/inception-documents/pom.xml index c88effa2f32..be2ef9e8a88 100644 --- a/inception/inception-documents/pom.xml +++ b/inception/inception-documents/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-documents INCEpTION - Core - Persistence API diff --git a/inception/inception-example-imls-data-majority/pom.xml b/inception/inception-example-imls-data-majority/pom.xml index f6fad56f3da..38d9fb19a22 100644 --- a/inception/inception-example-imls-data-majority/pom.xml +++ b/inception/inception-example-imls-data-majority/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-plugin-parent - 27.0-SNAPSHOT + 28.0-SNAPSHOT ../inception-plugin-parent inception-example-imls-data-majority diff --git a/inception/inception-export/pom.xml b/inception/inception-export/pom.xml index 4f9bd816376..c9059c469da 100644 --- a/inception/inception-export/pom.xml +++ b/inception/inception-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-export INCEpTION - Core - Export diff --git a/inception/inception-external-editor/pom.xml b/inception/inception-external-editor/pom.xml index 0c0eee83002..f54f7968194 100644 --- a/inception/inception-external-editor/pom.xml +++ b/inception/inception-external-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-external-editor INCEpTION - Editor - External editor diff --git a/inception/inception-external-search-core/pom.xml b/inception/inception-external-search-core/pom.xml index d7e684a216f..bc24b3d9ead 100644 --- a/inception/inception-external-search-core/pom.xml +++ b/inception/inception-external-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-external-search-core INCEpTION - External Search - Core diff --git a/inception/inception-external-search-elastic/pom.xml b/inception/inception-external-search-elastic/pom.xml index 3f77728c986..825f25c84c4 100644 --- a/inception/inception-external-search-elastic/pom.xml +++ b/inception/inception-external-search-elastic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-external-search-elastic INCEpTION - External Search - Elastic Search diff --git a/inception/inception-external-search-opensearch/pom.xml b/inception/inception-external-search-opensearch/pom.xml index fcb5ccdfaf0..f5b11d50dd3 100644 --- a/inception/inception-external-search-opensearch/pom.xml +++ b/inception/inception-external-search-opensearch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-external-search-opensearch INCEpTION - External Search - OpenSearch diff --git a/inception/inception-external-search-pubannotation/pom.xml b/inception/inception-external-search-pubannotation/pom.xml index b9373bfb134..ba6d7971d18 100644 --- a/inception/inception-external-search-pubannotation/pom.xml +++ b/inception/inception-external-search-pubannotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-external-search-pubannotation INCEpTION - External Search - PubAnnotation diff --git a/inception/inception-external-search-solr/pom.xml b/inception/inception-external-search-solr/pom.xml index 822ae31eba8..f7de68322ad 100644 --- a/inception/inception-external-search-solr/pom.xml +++ b/inception/inception-external-search-solr/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-external-search-solr INCEpTION - External Search - Solr diff --git a/inception/inception-feature-lookup/pom.xml b/inception/inception-feature-lookup/pom.xml index 6db293fe73d..f05313ce2e0 100644 --- a/inception/inception-feature-lookup/pom.xml +++ b/inception/inception-feature-lookup/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-feature-lookup INCEpTION - Lookup Feature Support diff --git a/inception/inception-guidelines/pom.xml b/inception/inception-guidelines/pom.xml index c2cf26dcff2..3c0eec4adaa 100644 --- a/inception/inception-guidelines/pom.xml +++ b/inception/inception-guidelines/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-guidelines INCEpTION - Core - Annotation Guidelines diff --git a/inception/inception-html-editor/pom.xml b/inception/inception-html-editor/pom.xml index 3939f4561ef..b438a8f7f41 100644 --- a/inception/inception-html-editor/pom.xml +++ b/inception/inception-html-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-html-editor INCEpTION - Editor - HTML + Annotator JS diff --git a/inception/inception-html-recogito-editor/pom.xml b/inception/inception-html-recogito-editor/pom.xml index 988cd296c73..138eda1be12 100644 --- a/inception/inception-html-recogito-editor/pom.xml +++ b/inception/inception-html-recogito-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-html-recogito-editor INCEpTION - Editor - HTML + Recogito JS (${recogitojs.version}) diff --git a/inception/inception-image/pom.xml b/inception/inception-image/pom.xml index 3dbb04c41d5..22ad21b3ca3 100644 --- a/inception/inception-image/pom.xml +++ b/inception/inception-image/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-image INCEpTION - Image Support diff --git a/inception/inception-imls-elg/pom.xml b/inception/inception-imls-elg/pom.xml index 1a1a708912e..9f2001d3251 100644 --- a/inception/inception-imls-elg/pom.xml +++ b/inception/inception-imls-elg/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-elg diff --git a/inception/inception-imls-external/pom.xml b/inception/inception-imls-external/pom.xml index dfd891a5e0b..11b85e79552 100644 --- a/inception/inception-imls-external/pom.xml +++ b/inception/inception-imls-external/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-external diff --git a/inception/inception-imls-hf/pom.xml b/inception/inception-imls-hf/pom.xml index c8c2aabf6d2..24b88dfad2e 100644 --- a/inception/inception-imls-hf/pom.xml +++ b/inception/inception-imls-hf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-hf diff --git a/inception/inception-imls-lapps/pom.xml b/inception/inception-imls-lapps/pom.xml index 2f2a060d26f..c938c3dd03b 100644 --- a/inception/inception-imls-lapps/pom.xml +++ b/inception/inception-imls-lapps/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-lapps diff --git a/inception/inception-imls-opennlp/pom.xml b/inception/inception-imls-opennlp/pom.xml index 2a1ad7e4bbb..968d5dbd48e 100644 --- a/inception/inception-imls-opennlp/pom.xml +++ b/inception/inception-imls-opennlp/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-opennlp INCEpTION - ML - OpenNLP (v ${opennlp.version}) diff --git a/inception/inception-imls-stringmatch/pom.xml b/inception/inception-imls-stringmatch/pom.xml index bd76d0d3e64..b4407536905 100644 --- a/inception/inception-imls-stringmatch/pom.xml +++ b/inception/inception-imls-stringmatch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-stringmatch INCEpTION - ML - String Matching diff --git a/inception/inception-imls-weblicht/pom.xml b/inception/inception-imls-weblicht/pom.xml index 1569cc4baba..61d25374a73 100644 --- a/inception/inception-imls-weblicht/pom.xml +++ b/inception/inception-imls-weblicht/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-imls-weblicht diff --git a/inception/inception-io-conll/pom.xml b/inception/inception-io-conll/pom.xml index 6111b1c04a0..cec8275a46b 100644 --- a/inception/inception-io-conll/pom.xml +++ b/inception/inception-io-conll/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-conll INCEpTION - IO - CONLL diff --git a/inception/inception-io-html/pom.xml b/inception/inception-io-html/pom.xml index a83e71f0945..8531a3de6c9 100644 --- a/inception/inception-io-html/pom.xml +++ b/inception/inception-io-html/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-html INCEpTION - IO - HTML diff --git a/inception/inception-io-imscwb/pom.xml b/inception/inception-io-imscwb/pom.xml index 1070e6e9468..2d7c988d683 100644 --- a/inception/inception-io-imscwb/pom.xml +++ b/inception/inception-io-imscwb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-imscwb INCEpTION - IO - IMS CWB diff --git a/inception/inception-io-intertext/pom.xml b/inception/inception-io-intertext/pom.xml index e34382d5142..c12ee143007 100644 --- a/inception/inception-io-intertext/pom.xml +++ b/inception/inception-io-intertext/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-intertext INCEpTION - IO - InterText diff --git a/inception/inception-io-json/pom.xml b/inception/inception-io-json/pom.xml index e9071d6bea3..98aa92f9529 100644 --- a/inception/inception-io-json/pom.xml +++ b/inception/inception-io-json/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-json INCEpTION - IO - JSON diff --git a/inception/inception-io-lif/pom.xml b/inception/inception-io-lif/pom.xml index 6c9ab8d5139..ed8e1c2b52a 100644 --- a/inception/inception-io-lif/pom.xml +++ b/inception/inception-io-lif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-lif INCEpTION - IO - LIF (deprecated) diff --git a/inception/inception-io-nif/pom.xml b/inception/inception-io-nif/pom.xml index 3d99192b791..467cff60ad4 100644 --- a/inception/inception-io-nif/pom.xml +++ b/inception/inception-io-nif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-nif INCEpTION - IO - NIF diff --git a/inception/inception-io-perseus/pom.xml b/inception/inception-io-perseus/pom.xml index 9379f8af88b..8c631fbf70c 100644 --- a/inception/inception-io-perseus/pom.xml +++ b/inception/inception-io-perseus/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-perseus INCEpTION - IO - Perseus diff --git a/inception/inception-io-tcf/pom.xml b/inception/inception-io-tcf/pom.xml index cac3fd8d392..742e6b0bb3f 100644 --- a/inception/inception-io-tcf/pom.xml +++ b/inception/inception-io-tcf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-tcf INCEpTION - IO - TCF diff --git a/inception/inception-io-tei/pom.xml b/inception/inception-io-tei/pom.xml index 1e30ca7423e..22e72360093 100644 --- a/inception/inception-io-tei/pom.xml +++ b/inception/inception-io-tei/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-tei INCEpTION - IO - TEI diff --git a/inception/inception-io-text/pom.xml b/inception/inception-io-text/pom.xml index f5a56b3e69e..fb64e742d64 100644 --- a/inception/inception-io-text/pom.xml +++ b/inception/inception-io-text/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-text INCEpTION - IO - Text diff --git a/inception/inception-io-webanno-tsv/pom.xml b/inception/inception-io-webanno-tsv/pom.xml index 8df715154dc..ee9b5065345 100644 --- a/inception/inception-io-webanno-tsv/pom.xml +++ b/inception/inception-io-webanno-tsv/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-webanno-tsv INCEpTION - IO - TSV diff --git a/inception/inception-io-xmi/pom.xml b/inception/inception-io-xmi/pom.xml index fe49ee672fc..84ffafcfec8 100644 --- a/inception/inception-io-xmi/pom.xml +++ b/inception/inception-io-xmi/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-xmi INCEpTION - IO - XMI diff --git a/inception/inception-io-xml/pom.xml b/inception/inception-io-xml/pom.xml index 6f69a15663f..e89f7b59d32 100644 --- a/inception/inception-io-xml/pom.xml +++ b/inception/inception-io-xml/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-io-xml INCEpTION - IO - XML diff --git a/inception/inception-js-api/pom.xml b/inception/inception-js-api/pom.xml index 9e6f5c331db..1ecd371e97e 100644 --- a/inception/inception-js-api/pom.xml +++ b/inception/inception-js-api/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-js-api diff --git a/inception/inception-kb-fact-linking/pom.xml b/inception/inception-kb-fact-linking/pom.xml index 4c4931b7eb9..00d93219fdc 100644 --- a/inception/inception-kb-fact-linking/pom.xml +++ b/inception/inception-kb-fact-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-kb-fact-linking INCEpTION - Knowledge Base - Fact Linking diff --git a/inception/inception-kb/pom.xml b/inception/inception-kb/pom.xml index 996a340a3ff..12aab74afac 100644 --- a/inception/inception-kb/pom.xml +++ b/inception/inception-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-kb INCEpTION - Knowledge Base - Core diff --git a/inception/inception-layer-docmetadata/pom.xml b/inception/inception-layer-docmetadata/pom.xml index 6a144227064..4b2150d4458 100644 --- a/inception/inception-layer-docmetadata/pom.xml +++ b/inception/inception-layer-docmetadata/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-layer-docmetadata INCEpTION - Document Metadata Support diff --git a/inception/inception-log/pom.xml b/inception/inception-log/pom.xml index 1dd49d03c13..1ffe290ff5b 100644 --- a/inception/inception-log/pom.xml +++ b/inception/inception-log/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-log INCEpTION - Log diff --git a/inception/inception-model-export/pom.xml b/inception/inception-model-export/pom.xml index cef30cb6b9b..3701b13f723 100644 --- a/inception/inception-model-export/pom.xml +++ b/inception/inception-model-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-model-export INCEpTION - Core - Export Model diff --git a/inception/inception-model/pom.xml b/inception/inception-model/pom.xml index 6d9269a7994..7910598f668 100644 --- a/inception/inception-model/pom.xml +++ b/inception/inception-model/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-model INCEpTION - Core - Model diff --git a/inception/inception-pdf-editor/pom.xml b/inception/inception-pdf-editor/pom.xml index 4aa972aa9e2..38fa142f613 100644 --- a/inception/inception-pdf-editor/pom.xml +++ b/inception/inception-pdf-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}) inception-pdf-editor diff --git a/inception/inception-pdf-editor2/pom.xml b/inception/inception-pdf-editor2/pom.xml index d90872324f4..737e8609bb7 100644 --- a/inception/inception-pdf-editor2/pom.xml +++ b/inception/inception-pdf-editor2/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}; pdfjs ${pdfjs.version}) inception-pdf-editor2 diff --git a/inception/inception-plugin-api/pom.xml b/inception/inception-plugin-api/pom.xml index a9cadf616c7..ab21a32f6a6 100644 --- a/inception/inception-plugin-api/pom.xml +++ b/inception/inception-plugin-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-plugin-api INCEpTION - Plugin API diff --git a/inception/inception-plugin-manager/pom.xml b/inception/inception-plugin-manager/pom.xml index 49b684a67d5..56d4be30bd9 100644 --- a/inception/inception-plugin-manager/pom.xml +++ b/inception/inception-plugin-manager/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-plugin-manager INCEpTION - Plugin manager diff --git a/inception/inception-plugin-parent/pom.xml b/inception/inception-plugin-parent/pom.xml index 801365859f7..a274b3fe1f0 100644 --- a/inception/inception-plugin-parent/pom.xml +++ b/inception/inception-plugin-parent/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-plugin-parent INCEpTION - Plugin Parent POM diff --git a/inception/inception-preferences/pom.xml b/inception/inception-preferences/pom.xml index 9260d7ee5b9..a6d998dcef1 100644 --- a/inception/inception-preferences/pom.xml +++ b/inception/inception-preferences/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-preferences INCEpTION - Preferences diff --git a/inception/inception-project-export/pom.xml b/inception/inception-project-export/pom.xml index 61159da9b24..b6ef13177b9 100644 --- a/inception/inception-project-export/pom.xml +++ b/inception/inception-project-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project-export INCEpTION - Core - Project export diff --git a/inception/inception-project-initializers-basic/pom.xml b/inception/inception-project-initializers-basic/pom.xml index a03efb4cb4e..33264c65b2c 100644 --- a/inception/inception-project-initializers-basic/pom.xml +++ b/inception/inception-project-initializers-basic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project-initializers-basic INCEpTION - Core - Project initializers - Basic Span / Relation diff --git a/inception/inception-project-initializers-doclabeling/pom.xml b/inception/inception-project-initializers-doclabeling/pom.xml index a993f1375b9..1c8688df914 100644 --- a/inception/inception-project-initializers-doclabeling/pom.xml +++ b/inception/inception-project-initializers-doclabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project-initializers-doclabeling INCEpTION - Core - Project initializers - Document Labeling diff --git a/inception/inception-project-initializers-sentencelabeling/pom.xml b/inception/inception-project-initializers-sentencelabeling/pom.xml index 3294b0c5464..94106ec9f27 100644 --- a/inception/inception-project-initializers-sentencelabeling/pom.xml +++ b/inception/inception-project-initializers-sentencelabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project-initializers-sentencelabeling INCEpTION - Core - Project initializers - Sentence Labeling diff --git a/inception/inception-project-initializers-wikidatalinking/pom.xml b/inception/inception-project-initializers-wikidatalinking/pom.xml index 6857252e375..e4219e35827 100644 --- a/inception/inception-project-initializers-wikidatalinking/pom.xml +++ b/inception/inception-project-initializers-wikidatalinking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project-initializers-wikidatalinking INCEpTION - Core - Project initializers - Entity Linking (Wikidata) diff --git a/inception/inception-project-initializers/pom.xml b/inception/inception-project-initializers/pom.xml index e7bccbf8eb8..1014218430f 100644 --- a/inception/inception-project-initializers/pom.xml +++ b/inception/inception-project-initializers/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project-initializers INCEpTION - Core - Project initializers diff --git a/inception/inception-project/pom.xml b/inception/inception-project/pom.xml index 582abc2d8e8..48332b81d18 100644 --- a/inception/inception-project/pom.xml +++ b/inception/inception-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-project INCEpTION - Core - Project diff --git a/inception/inception-recommendation-api/pom.xml b/inception/inception-recommendation-api/pom.xml index 697d4253793..dac2ebc598b 100644 --- a/inception/inception-recommendation-api/pom.xml +++ b/inception/inception-recommendation-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-recommendation-api INCEpTION - Recommendation - API diff --git a/inception/inception-recommendation/pom.xml b/inception/inception-recommendation/pom.xml index 2254a904d4d..ceb3fab15d1 100644 --- a/inception/inception-recommendation/pom.xml +++ b/inception/inception-recommendation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-recommendation INCEpTION - Recommendation - Core diff --git a/inception/inception-remote/pom.xml b/inception/inception-remote/pom.xml index fc0f7c59e81..0aea64cbba5 100644 --- a/inception/inception-remote/pom.xml +++ b/inception/inception-remote/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-remote INCEpTION - Core - Remote API diff --git a/inception/inception-review-editor/pom.xml b/inception/inception-review-editor/pom.xml index 363dfa702b2..3025d094aef 100644 --- a/inception/inception-review-editor/pom.xml +++ b/inception/inception-review-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT INCEpTION - Editor - Review inception-review-editor diff --git a/inception/inception-scheduling/pom.xml b/inception/inception-scheduling/pom.xml index cbd11b4965f..3fb747b4d01 100644 --- a/inception/inception-scheduling/pom.xml +++ b/inception/inception-scheduling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-scheduling INCEpTION - Scheduling diff --git a/inception/inception-schema/pom.xml b/inception/inception-schema/pom.xml index f3bd61ef8f0..97c879a85c5 100644 --- a/inception/inception-schema/pom.xml +++ b/inception/inception-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-schema INCEpTION - Core - Annotation Schema diff --git a/inception/inception-search-core/pom.xml b/inception/inception-search-core/pom.xml index ed6f84b4899..4515ddc345b 100644 --- a/inception/inception-search-core/pom.xml +++ b/inception/inception-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-search-core INCEpTION - Search - Core diff --git a/inception/inception-search-mtas/pom.xml b/inception/inception-search-mtas/pom.xml index 27acf6a0655..38dbcf682ce 100644 --- a/inception/inception-search-mtas/pom.xml +++ b/inception/inception-search-mtas/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-search-mtas INCEpTION - Search - MTAS diff --git a/inception/inception-security/pom.xml b/inception/inception-security/pom.xml index f9125d63527..a9ce341e8b3 100644 --- a/inception/inception-security/pom.xml +++ b/inception/inception-security/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-security INCEpTION - Core - Security diff --git a/inception/inception-sharing/pom.xml b/inception/inception-sharing/pom.xml index f896e275adc..150c4121dec 100644 --- a/inception/inception-sharing/pom.xml +++ b/inception/inception-sharing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-sharing INCEpTION - Sharing diff --git a/inception/inception-support-standalone/pom.xml b/inception/inception-support-standalone/pom.xml index 7e2a2a567da..afdefd504c0 100644 --- a/inception/inception-support-standalone/pom.xml +++ b/inception/inception-support-standalone/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-support-standalone INCEpTION - Core - Support for standalone mode diff --git a/inception/inception-support/pom.xml b/inception/inception-support/pom.xml index b19d2a3fa0e..242c25ca014 100644 --- a/inception/inception-support/pom.xml +++ b/inception/inception-support/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-support INCEpTION - Support library diff --git a/inception/inception-telemetry/pom.xml b/inception/inception-telemetry/pom.xml index 576fd7a28f4..ab8bddfc178 100644 --- a/inception/inception-telemetry/pom.xml +++ b/inception/inception-telemetry/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-telemetry INCEpTION - Telemetry diff --git a/inception/inception-testing/pom.xml b/inception/inception-testing/pom.xml index 55938eb4187..f5f78ae9fb9 100644 --- a/inception/inception-testing/pom.xml +++ b/inception/inception-testing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-testing INCEpTION - Test Support library diff --git a/inception/inception-tutorial/pom.xml b/inception/inception-tutorial/pom.xml index 609fb346b59..2ae64ceb6f2 100644 --- a/inception/inception-tutorial/pom.xml +++ b/inception/inception-tutorial/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-tutorial INCEpTION - UI - Tutorial diff --git a/inception/inception-ui-agreement/pom.xml b/inception/inception-ui-agreement/pom.xml index 999a058b430..a736f40ebcb 100644 --- a/inception/inception-ui-agreement/pom.xml +++ b/inception/inception-ui-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-agreement INCEpTION - UI - Agreement diff --git a/inception/inception-ui-annotation/pom.xml b/inception/inception-ui-annotation/pom.xml index b271671df76..c66d7b799e7 100644 --- a/inception/inception-ui-annotation/pom.xml +++ b/inception/inception-ui-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-annotation INCEpTION - UI - Annotation diff --git a/inception/inception-ui-core/pom.xml b/inception/inception-ui-core/pom.xml index aa691b10b95..3090aaf8c3e 100644 --- a/inception/inception-ui-core/pom.xml +++ b/inception/inception-ui-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-core INCEpTION - UI - Core diff --git a/inception/inception-ui-curation/pom.xml b/inception/inception-ui-curation/pom.xml index bc085277ec1..1d57a54ec11 100644 --- a/inception/inception-ui-curation/pom.xml +++ b/inception/inception-ui-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-curation INCEpTION - UI - Curation diff --git a/inception/inception-ui-dashboard-activity/pom.xml b/inception/inception-ui-dashboard-activity/pom.xml index df312118ce8..7ccd56b3b95 100644 --- a/inception/inception-ui-dashboard-activity/pom.xml +++ b/inception/inception-ui-dashboard-activity/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-dashboard-activity INCEpTION - Dashboard - Recent activity diff --git a/inception/inception-ui-dashboard/pom.xml b/inception/inception-ui-dashboard/pom.xml index d09e3fdb1d7..379e348486d 100644 --- a/inception/inception-ui-dashboard/pom.xml +++ b/inception/inception-ui-dashboard/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-dashboard INCEpTION - UI - Dashboard diff --git a/inception/inception-ui-external-search/pom.xml b/inception/inception-ui-external-search/pom.xml index 6320997c35f..a6cfcbb4029 100644 --- a/inception/inception-ui-external-search/pom.xml +++ b/inception/inception-ui-external-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-external-search INCEpTION - External Search - UI diff --git a/inception/inception-ui-kb/pom.xml b/inception/inception-ui-kb/pom.xml index 41bd4652947..0a72bbb7143 100644 --- a/inception/inception-ui-kb/pom.xml +++ b/inception/inception-ui-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-kb INCEpTION - Knowledge Base - UI diff --git a/inception/inception-ui-project/pom.xml b/inception/inception-ui-project/pom.xml index d9afa577458..4c54a5fc17d 100644 --- a/inception/inception-ui-project/pom.xml +++ b/inception/inception-ui-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-project INCEpTION - UI - Project diff --git a/inception/inception-ui-search/pom.xml b/inception/inception-ui-search/pom.xml index e18705b9860..21f3bad430e 100644 --- a/inception/inception-ui-search/pom.xml +++ b/inception/inception-ui-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-search INCEpTION - Search - UI diff --git a/inception/inception-ui-tagsets/pom.xml b/inception/inception-ui-tagsets/pom.xml index 63fa93efb10..4a5ba5844b2 100644 --- a/inception/inception-ui-tagsets/pom.xml +++ b/inception/inception-ui-tagsets/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-ui-tagsets INCEpTION - UI - Tagsets diff --git a/inception/inception-versioning/pom.xml b/inception/inception-versioning/pom.xml index d009bce4de9..8d41ea650d3 100644 --- a/inception/inception-versioning/pom.xml +++ b/inception/inception-versioning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-versioning INCEpTION - Versioning diff --git a/inception/inception-websocket/pom.xml b/inception/inception-websocket/pom.xml index a1297422ba9..ff1d248300b 100644 --- a/inception/inception-websocket/pom.xml +++ b/inception/inception-websocket/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-websocket INCEpTION - Websocket diff --git a/inception/inception-workload-dynamic/pom.xml b/inception/inception-workload-dynamic/pom.xml index 4ca5f949768..0246be4cede 100644 --- a/inception/inception-workload-dynamic/pom.xml +++ b/inception/inception-workload-dynamic/pom.xml @@ -19,7 +19,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-workload-dynamic diff --git a/inception/inception-workload-matrix/pom.xml b/inception/inception-workload-matrix/pom.xml index dc021554c07..996ab8a003b 100644 --- a/inception/inception-workload-matrix/pom.xml +++ b/inception/inception-workload-matrix/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-workload-matrix diff --git a/inception/inception-workload-ui/pom.xml b/inception/inception-workload-ui/pom.xml index 1d1f79d7a64..3b115988728 100644 --- a/inception/inception-workload-ui/pom.xml +++ b/inception/inception-workload-ui/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-workload-ui diff --git a/inception/inception-workload/pom.xml b/inception/inception-workload/pom.xml index aea6f25fe5e..b0f2322f541 100644 --- a/inception/inception-workload/pom.xml +++ b/inception/inception-workload/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 28.0-SNAPSHOT 4.0.0 inception-workload diff --git a/inception/pom.xml b/inception/pom.xml index 5371d3cf7ff..c19ee8369c6 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-SNAPSHOT + 28.0-SNAPSHOT inception-app pom @@ -517,212 +517,212 @@ de.tudarmstadt.ukp.inception.app inception-doc - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-agreement - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-agreement - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-annotation - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-project - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-tagsets - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-curation - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-curation - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-search - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-dynamic - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-matrix - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-ui - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-editor - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-core - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-pubannotation - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-elastic - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-opensearch - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-solr - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-external-search - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-dashboard - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-dashboard-activity - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-kb - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-kb-fact-linking - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-html-editor - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-html-recogito-editor - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-pdf-editor - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-pdf-editor2 - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-recommendation - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-recommendation-api - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-review-editor - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-sharing - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-preferences - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-guidelines - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-schema - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-active-learning - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-core - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-kb - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-concept-linking - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-opennlp - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-elg - 27.0-SNAPSHOT + 28.0-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-hf - 27.0-SNAPSHOT + 28.0-SNAPSHOT diff --git a/pom.xml b/pom.xml index 342add70145..4021537fc1e 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-SNAPSHOT + 28.0-SNAPSHOT pom INCEpTION INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management. From 4d0275bf1af85f8fed609d9b595d95c8f0a5703c Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Wed, 1 Mar 2023 07:00:43 +0100 Subject: [PATCH 009/189] #3841 - NPE when trying to join project through invite link - Fix NPE --- .../ukp/inception/ui/core/menubar/MenuBar.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/menubar/MenuBar.java b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/menubar/MenuBar.java index d365ad31709..93b4de8b803 100644 --- a/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/menubar/MenuBar.java +++ b/inception/inception-ui-dashboard/src/main/java/de/tudarmstadt/ukp/inception/ui/core/menubar/MenuBar.java @@ -151,7 +151,13 @@ public PageParameters getPageParameters() private boolean isMenubarVisibleToCurrentUser() { - if (userRepository.isAdministrator(user.getObject()) || !project.isPresent().getObject()) { + // E.g. on the invite page, we do not have a user object, but we would still like to see + // the empty menu bar saying "INCEpTION". + if (!user.isPresent().getObject() || !project.isPresent().getObject()) { + return true; + } + + if (userRepository.isAdministrator(user.getObject())) { return true; } From 910dc57a7d8eed5cb538d2d3642ab72b5c1bce5f Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Fri, 3 Mar 2023 20:56:48 +0100 Subject: [PATCH 010/189] No issue. Demote info message to debug message as it is sometimes misleading users. --- .../tasks/NonTrainableRecommenderActivationTask.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inception/inception-recommendation/src/main/java/de/tudarmstadt/ukp/inception/recommendation/tasks/NonTrainableRecommenderActivationTask.java b/inception/inception-recommendation/src/main/java/de/tudarmstadt/ukp/inception/recommendation/tasks/NonTrainableRecommenderActivationTask.java index a1b8cde4c9b..c79a5dda9b4 100644 --- a/inception/inception-recommendation/src/main/java/de/tudarmstadt/ukp/inception/recommendation/tasks/NonTrainableRecommenderActivationTask.java +++ b/inception/inception-recommendation/src/main/java/de/tudarmstadt/ukp/inception/recommendation/tasks/NonTrainableRecommenderActivationTask.java @@ -167,9 +167,9 @@ private EvaluatedRecommender activateNonTrainableRecommender(User user, Recommen private EvaluatedRecommender skipTrainableRecommender(User user, Recommender recommender) { String recommenderName = recommender.getName(); - log.info("[{}][{}]: Recommender requires training " + "- skipping recommender", + log.debug("[{}][{}]: Recommender requires training - not activating recommender", user.getUsername(), recommenderName); - info("Recommender [%s] requires training - skipping recommender", recommenderName); + info("Recommender [%s] requires training - not activating recommender", recommenderName); return EvaluatedRecommender.makeInactiveWithoutEvaluation(recommender, "Requires training"); } From 4479cd02b63c8e0f8110c6ad3cbe8ca275768038 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sun, 5 Mar 2023 11:17:54 +0100 Subject: [PATCH 011/189] #3846 - PDF editor keyboard shortcuts for unused functionality still active - Disable keyboard shortcuts for unused functionality - Also disable presentation mode because it does not work well with INCEpTION --- .../view/pdfjs/PdfJsViewerPage.java | 6 + .../src/main/ts/pdfjs-web/viewer.css | 2 +- .../src/main/ts/pdfjs-web/viewer.html | 2 +- .../src/main/ts/pdfjs-web/viewer.js | 279 ++++++++++-------- 4 files changed, 160 insertions(+), 129 deletions(-) diff --git a/inception/inception-pdf-editor2/src/main/java/de/tudarmstadt/ukp/inception/pdfeditor2/view/pdfjs/PdfJsViewerPage.java b/inception/inception-pdf-editor2/src/main/java/de/tudarmstadt/ukp/inception/pdfeditor2/view/pdfjs/PdfJsViewerPage.java index 3f0660ccdf0..3528520f668 100644 --- a/inception/inception-pdf-editor2/src/main/java/de/tudarmstadt/ukp/inception/pdfeditor2/view/pdfjs/PdfJsViewerPage.java +++ b/inception/inception-pdf-editor2/src/main/java/de/tudarmstadt/ukp/inception/pdfeditor2/view/pdfjs/PdfJsViewerPage.java @@ -68,6 +68,12 @@ public void renderHead(IHeaderResponse aResponse) // the sidebar automatically opens and causes a re-scaling which leads to a wrong // scroll position! " PDFViewerApplicationOptions.set('sidebarViewOnLoad', 0);", // + // Disable the PDF.js search and instead delegate to the browser search + " delete PDFViewerApplication.supportsIntegratedFind;", // + " PDFViewerApplication.supportsIntegratedFind = true;", // + // Disable the PDF.js printing + " delete PDFViewerApplication.supportsPrinting;", // + " PDFViewerApplication.supportsPrinting = false;", // "});"); aResponse.render(JavaScriptHeaderItem.forScript(script, "initialization")); } diff --git a/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.css b/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.css index cd6c0a42461..275db5c3eb2 100644 --- a/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.css +++ b/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.css @@ -2218,7 +2218,7 @@ a.secondaryToolbarButton[href="#"] { user-select: none; } #thumbnailView { - width: calc(100% - 60px); + width: calc(100% - 1px); padding: 10px 30px 0; } diff --git a/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.html b/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.html index a7de4f32cb0..ed9be822b5a 100644 --- a/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.html +++ b/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.html @@ -241,7 +241,7 @@
- diff --git a/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.js b/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.js index a0d3e464a91..e20711dabe5 100644 --- a/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.js +++ b/inception/inception-pdf-editor2/src/main/ts/pdfjs-web/viewer.js @@ -20,6 +20,31 @@ * JavaScript code in this page */ +/* eslint no-sparse-arrays: 0 */ +/* eslint camelcase: 0 */ +/* eslint quotes: 0 */ +/* eslint no-tabs: 0 */ +/* eslint indent: 0 */ +/* eslint no-extra-parens: 0 */ +/* eslint padded-blocks: 0 */ +/* eslint semi: 0 */ +/* eslint space-before-function-paren: 0 */ +/* eslint no-void: 0 */ +/* eslint no-mixed-operators: 0 */ +/* eslint one-var: 0 */ +/* eslint no-multiple-empty-lines: 0 */ +/* eslint no-case-declarations: 0 */ +/* eslint no-fallthrough: 0 */ +/* eslint quote-props: 0 */ +/* eslint prefer-const: 0 */ +/* eslint eqeqeq: 0 */ +/* eslint no-trailing-spaces: 0 */ +/* eslint no-unsafe-finally: 0 */ +/* eslint no-unused-vars: 0 */ +/* eslint no-var: 0 */ +/* eslint no-lone-blocks: 0 */ +/* eslint wrap-iife: 0 */ + /******/ (() => { // webpackBootstrap /******/ "use strict"; /******/ var __webpack_modules__ = ([ @@ -1880,15 +1905,15 @@ const PDFViewerApplication = { eventBus._on("namedaction", webViewerNamedAction); - eventBus._on("presentationmodechanged", webViewerPresentationModeChanged); + // eventBus._on("presentationmodechanged", webViewerPresentationModeChanged); - eventBus._on("presentationmode", webViewerPresentationMode); + // eventBus._on("presentationmode", webViewerPresentationMode); - eventBus._on("print", webViewerPrint); + // eventBus._on("print", webViewerPrint); - eventBus._on("download", webViewerDownload); + // eventBus._on("download", webViewerDownload); - eventBus._on("save", webViewerSave); + // eventBus._on("save", webViewerSave); eventBus._on("firstpage", webViewerFirstPage); @@ -1908,9 +1933,9 @@ const PDFViewerApplication = { eventBus._on("scalechanged", webViewerScaleChanged); - eventBus._on("rotatecw", webViewerRotateCw); + // eventBus._on("rotatecw", webViewerRotateCw); - eventBus._on("rotateccw", webViewerRotateCcw); + // eventBus._on("rotateccw", webViewerRotateCcw); eventBus._on("optionalcontentconfig", webViewerOptionalContentConfig); @@ -1940,7 +1965,7 @@ const PDFViewerApplication = { eventBus._on("fileinputchange", webViewerFileInputChange); - eventBus._on("openfile", webViewerOpenFile); + // eventBus._on("openfile", webViewerOpenFile); }, bindWindowEvents() { @@ -2833,32 +2858,32 @@ function webViewerKeyDown(evt) { } } - if (cmd === 1 || cmd === 8) { - switch (evt.keyCode) { - case 83: - eventBus.dispatch("download", { - source: window - }); - handled = true; - break; + // if (cmd === 1 || cmd === 8) { + // switch (evt.keyCode) { + // case 83: + // eventBus.dispatch("download", { + // source: window + // }); + // handled = true; + // break; - case 79: - { - eventBus.dispatch("openfile", { - source: window - }); - handled = true; - } - break; - } - } + // case 79: + // { + // eventBus.dispatch("openfile", { + // source: window + // }); + // handled = true; + // } + // break; + // } + // } if (cmd === 3 || cmd === 10) { switch (evt.keyCode) { - case 80: - PDFViewerApplication.requestPresentationMode(); - handled = true; - break; + // case 80: + // PDFViewerApplication.requestPresentationMode(); + // handled = true; + // break; case 71: PDFViewerApplication.appConfig.toolbar.pageNumber.select(); @@ -2890,103 +2915,103 @@ function webViewerKeyDown(evt) { turnOnlyIfPageFit = false; switch (evt.keyCode) { - case 38: - case 33: - if (pdfViewer.isVerticalScrollbarEnabled) { - turnOnlyIfPageFit = true; - } - - turnPage = -1; - break; - - case 8: - if (!isViewerInPresentationMode) { - turnOnlyIfPageFit = true; - } - - turnPage = -1; - break; - - case 37: - if (pdfViewer.isHorizontalScrollbarEnabled) { - turnOnlyIfPageFit = true; - } - - case 75: - case 80: - turnPage = -1; - break; - - case 27: - if (PDFViewerApplication.secondaryToolbar.isOpen) { - PDFViewerApplication.secondaryToolbar.close(); - handled = true; - } - - if (!PDFViewerApplication.supportsIntegratedFind && PDFViewerApplication.findBar.opened) { - PDFViewerApplication.findBar.close(); - handled = true; - } - - break; - - case 40: - case 34: - if (pdfViewer.isVerticalScrollbarEnabled) { - turnOnlyIfPageFit = true; - } - - turnPage = 1; - break; - - case 13: - case 32: - if (!isViewerInPresentationMode) { - turnOnlyIfPageFit = true; - } - - turnPage = 1; - break; - - case 39: - if (pdfViewer.isHorizontalScrollbarEnabled) { - turnOnlyIfPageFit = true; - } - - case 74: - case 78: - turnPage = 1; - break; - - case 36: - if (isViewerInPresentationMode || PDFViewerApplication.page > 1) { - PDFViewerApplication.page = 1; - handled = true; - ensureViewerFocused = true; - } - - break; - - case 35: - if (isViewerInPresentationMode || PDFViewerApplication.page < PDFViewerApplication.pagesCount) { - PDFViewerApplication.page = PDFViewerApplication.pagesCount; - handled = true; - ensureViewerFocused = true; - } - - break; - - case 83: - PDFViewerApplication.pdfCursorTools.switchTool(_pdf_cursor_tools.CursorTool.SELECT); - break; - - case 72: - PDFViewerApplication.pdfCursorTools.switchTool(_pdf_cursor_tools.CursorTool.HAND); - break; - - case 82: - PDFViewerApplication.rotatePages(90); - break; + // case 38: + // case 33: + // if (pdfViewer.isVerticalScrollbarEnabled) { + // turnOnlyIfPageFit = true; + // } + + // turnPage = -1; + // break; + + // case 8: + // if (!isViewerInPresentationMode) { + // turnOnlyIfPageFit = true; + // } + + // turnPage = -1; + // break; + + // case 37: + // if (pdfViewer.isHorizontalScrollbarEnabled) { + // turnOnlyIfPageFit = true; + // } + + // case 75: + // case 80: + // turnPage = -1; + // break; + + // case 27: + // if (PDFViewerApplication.secondaryToolbar.isOpen) { + // PDFViewerApplication.secondaryToolbar.close(); + // handled = true; + // } + + // if (!PDFViewerApplication.supportsIntegratedFind && PDFViewerApplication.findBar.opened) { + // PDFViewerApplication.findBar.close(); + // handled = true; + // } + + // break; + + // case 40: + // case 34: + // if (pdfViewer.isVerticalScrollbarEnabled) { + // turnOnlyIfPageFit = true; + // } + + // turnPage = 1; + // break; + + // case 13: + // case 32: + // if (!isViewerInPresentationMode) { + // turnOnlyIfPageFit = true; + // } + + // turnPage = 1; + // break; + + // case 39: + // if (pdfViewer.isHorizontalScrollbarEnabled) { + // turnOnlyIfPageFit = true; + // } + + // case 74: + // case 78: + // turnPage = 1; + // break; + + // case 36: + // if (isViewerInPresentationMode || PDFViewerApplication.page > 1) { + // PDFViewerApplication.page = 1; + // handled = true; + // ensureViewerFocused = true; + // } + + // break; + + // case 35: + // if (isViewerInPresentationMode || PDFViewerApplication.page < PDFViewerApplication.pagesCount) { + // PDFViewerApplication.page = PDFViewerApplication.pagesCount; + // handled = true; + // ensureViewerFocused = true; + // } + + // break; + + // case 83: + // PDFViewerApplication.pdfCursorTools.switchTool(_pdf_cursor_tools.CursorTool.SELECT); + // break; + + // case 72: + // PDFViewerApplication.pdfCursorTools.switchTool(_pdf_cursor_tools.CursorTool.HAND); + // break; + + // case 82: + // PDFViewerApplication.rotatePages(90); + // break; case 115: PDFViewerApplication.pdfSidebar.toggle(); From e799a0d6251f419e60d2379ff30d23ba383f807a Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sun, 5 Mar 2023 11:05:42 +0100 Subject: [PATCH 012/189] #3844 - Improve scroll-target highlighting in PDF editor - Highlight the entire target section after a jump - Use a pulsing highlight --- .../src/main/ts/src/PdfAnnotationEditor.ts | 16 +++++---- .../src/main/ts/src/pdfanno/pdfanno.css | 17 +++++++-- .../src/main/ts/src/pdfanno/pdfanno.ts | 36 ++++++++++--------- 3 files changed, 45 insertions(+), 24 deletions(-) diff --git a/inception/inception-pdf-editor2/src/main/ts/src/PdfAnnotationEditor.ts b/inception/inception-pdf-editor2/src/main/ts/src/PdfAnnotationEditor.ts index 652e3bdef6a..3fdbac6b4e8 100644 --- a/inception/inception-pdf-editor2/src/main/ts/src/PdfAnnotationEditor.ts +++ b/inception/inception-pdf-editor2/src/main/ts/src/PdfAnnotationEditor.ts @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import type { AnnotationEditor, DiamAjax } from '@inception-project/inception-js-api' +import type { AnnotationEditor, DiamAjax, Offsets } from '@inception-project/inception-js-api' import './PdfAnnotationEditor.css' import { initPdfAnno, getAnnotations as doLoadAnnotations, scrollTo } from './pdfanno/pdfanno' import AbstractAnnotation from './pdfanno/core/src/annotation/abstract' @@ -42,15 +42,17 @@ export class PdfAnnotationEditor implements AnnotationEditor { doLoadAnnotations() } - scrollTo (args: { offset: number; position: string }): void { - console.log(`SCROLLING! ${args.offset} ${args.position}`) - scrollTo(args.offset, args.position) + scrollTo (args: { offset: number, position?: string, pingRanges?: Offsets[] }): void { + // console.log(`SCROLLING! ${args.offset} ${args.position}`) + scrollTo(args) } onAnnotationSelected (ev: Event) { if (ev instanceof CustomEvent) { const ann = ev.detail as AbstractAnnotation - this.ajax.selectAnnotation(ann.vid) + if (ann.vid) { + this.ajax.selectAnnotation(ann.vid) + } } } @@ -64,7 +66,9 @@ export class PdfAnnotationEditor implements AnnotationEditor { onDoubleClickAnnotation (ev: Event) { if (ev instanceof CustomEvent) { const ann = ev.detail as AbstractAnnotation - this.ajax.triggerExtensionAction(ann.vid) + if (ann.vid) { + this.ajax.triggerExtensionAction(ann.vid) + } } } diff --git a/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.css b/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.css index a8306fd3ea3..d5c86ac7dc9 100644 --- a/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.css +++ b/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.css @@ -124,7 +124,20 @@ stroke-dasharray: 5; } +@keyframes ping-fade-animation { + 0% { + background: rgba(255, 165, 0, 0); + } + + 50% { + background: rgba(255, 165, 0, 1); + } + + 100% { + background: rgba(255, 165, 0, 0); + } +} .ping { - background: orange; - animation-fill-mode: forwards; + background: rgba(255, 165, 0, 0); + animation: ping-fade-animation 0.3s ease-in-out .2s 3 normal forwards; } diff --git a/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.ts b/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.ts index 9dcb385714f..625069b129a 100644 --- a/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.ts +++ b/inception/inception-pdf-editor2/src/main/ts/src/pdfanno/pdfanno.ts @@ -214,14 +214,16 @@ function renderAnnotations () { dispatchWindowEvent('annotationrendered') } -export function scrollTo (offset: number, position: string): void { - const page = textLayer.findPageForTextOffset(offset)?.index +export function scrollTo (args: { offset: number, position?: string, pingRanges?: Offsets[] }): void { + const page = textLayer.findPageForTextOffset(args.offset)?.index if (!page) { - console.error(`No page found for offset: ${offset}`) + console.error(`No page found for offset: ${args.offset}`) return } - const rectangles = mapToDocumentCoordinates(getGlyphsInRange([offset, offset + 1]).map(g => g.bbox)) + const pingRange: Offsets = args.pingRanges && args.pingRanges.length > 0 ? args.pingRanges[0] : [args.offset, args.offset + 1] + + const rectangles = mapToDocumentCoordinates(getGlyphsInRange(pingRange).map(g => g.bbox)) const markerLayer = document.getElementById('markerLayer') if (!markerLayer) { console.error('No marker layer found.') @@ -229,26 +231,28 @@ export function scrollTo (offset: number, position: string): void { } if (!rectangles?.length) { - console.warn(`No glyphs found for offset: ${offset} - scrolling only to page`) + console.warn(`No glyphs found for ping range: ${pingRange} - scrolling only to page`) document.querySelector(`.page[data-page-number="${page}"]`)?.scrollIntoView() return } markerLayer.querySelectorAll('.ping').forEach((ping) => ping.remove()) - let base: HTMLElement = document.createElement('div') - base.classList.add('anno-span', 'ping') - base.style.zIndex = '10' - const child = createRect(rectangles[0]) - child.classList.add('ping') - base.appendChild(child) + let ping: HTMLElement = document.createElement('div') + ping.classList.add('anno-span', 'ping') + ping.style.zIndex = '10' + rectangles.forEach(rect => { + const child = createRect(rect) + child.classList.add('ping') + child.animate([{ opacity: 0.75 }, { opacity: 0 }], { duration: 5000, iterations: 1 }) + ping.appendChild(child) + }) const viewport = globalThis.PDFViewerApplication.pdfViewer.getPageView(0).viewport - base = transform(markerLayer, base, viewport) - markerLayer.appendChild(base) - child.scrollIntoView({ behavior: 'auto', block: 'center', inline: 'center' }) - child.animate([{ opacity: 0.75, width: child.style.width }, { opacity: 0, width: '50px' }], { duration: 5000, iterations: 1 }) - setTimeout(() => base.remove(), 5000) // Need to defer so scrolling can complete + ping = transform(markerLayer, ping, viewport) + markerLayer.appendChild(ping) + ping.firstElementChild?.scrollIntoView({ behavior: 'auto', block: 'center', inline: 'center' }) + setTimeout(() => ping.remove(), 2000) // Need to defer so scrolling can complete } export function getAnnotations () { From 682ddc9788d4fab4214be0a8b3078b160c76b720 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sun, 5 Mar 2023 17:31:27 +0100 Subject: [PATCH 013/189] #3802 - Remove hot-fix after upgrade to UIMA 3.4.1 or higher - Remove hot-fix --- .../api/annotation/util/WebAnnoCasUtil.java | 3 - .../uima/cas/impl/FixedBinaryCasSerDes.java | 478 ------------------ 2 files changed, 481 deletions(-) delete mode 100644 inception/inception-support/src/main/java/org/apache/uima/cas/impl/FixedBinaryCasSerDes.java diff --git a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/util/WebAnnoCasUtil.java b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/util/WebAnnoCasUtil.java index 4f4c797a625..f572f813681 100644 --- a/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/util/WebAnnoCasUtil.java +++ b/inception/inception-api-annotation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/api/annotation/util/WebAnnoCasUtil.java @@ -45,7 +45,6 @@ import org.apache.uima.cas.Type; import org.apache.uima.cas.impl.CASCompleteSerializer; import org.apache.uima.cas.impl.CASImpl; -import org.apache.uima.cas.impl.FixedBinaryCasSerDes; import org.apache.uima.cas.text.AnnotationFS; import org.apache.uima.cas.text.AnnotationIndex; import org.apache.uima.fit.util.CasUtil; @@ -73,7 +72,6 @@ public class WebAnnoCasUtil public static CAS createCas(TypeSystemDescription aTSD) throws ResourceInitializationException { CAS cas = CasCreationUtils.createCas(aTSD, null, null); - FixedBinaryCasSerDes.inject(cas); if (ENFORCE_CAS_THREAD_LOCK) { cas = (CAS) Proxy.newProxyInstance(cas.getClass().getClassLoader(), @@ -100,7 +98,6 @@ public static CAS createCas() throws ResourceInitializationException public static CAS createCasCopy(CAS aOriginal) throws UIMAException { CAS copy = CasCreationUtils.createCas((TypeSystemDescription) null, null, null); - FixedBinaryCasSerDes.inject(copy); CASCompleteSerializer serializer = serializeCASComplete((CASImpl) getRealCas(aOriginal)); deserializeCASComplete(serializer, (CASImpl) getRealCas(copy)); return copy; diff --git a/inception/inception-support/src/main/java/org/apache/uima/cas/impl/FixedBinaryCasSerDes.java b/inception/inception-support/src/main/java/org/apache/uima/cas/impl/FixedBinaryCasSerDes.java deleted file mode 100644 index d39a5538538..00000000000 --- a/inception/inception-support/src/main/java/org/apache/uima/cas/impl/FixedBinaryCasSerDes.java +++ /dev/null @@ -1,478 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. 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. - */ -package org.apache.uima.cas.impl; - -import java.lang.reflect.Field; -import java.lang.reflect.Method; -import java.util.ArrayList; -import java.util.List; -import java.util.function.Consumer; - -import org.apache.commons.lang3.reflect.FieldUtils; -import org.apache.commons.lang3.reflect.MethodUtils; -import org.apache.uima.UimaSerializable; -import org.apache.uima.cas.CAS; -import org.apache.uima.cas.CASRuntimeException; -import org.apache.uima.cas.impl.SlotKinds.SlotKind; -import org.apache.uima.internal.util.Int2ObjHashMap; -import org.apache.uima.internal.util.Misc; -import org.apache.uima.jcas.cas.BooleanArray; -import org.apache.uima.jcas.cas.ByteArray; -import org.apache.uima.jcas.cas.DoubleArray; -import org.apache.uima.jcas.cas.FSArray; -import org.apache.uima.jcas.cas.FloatArray; -import org.apache.uima.jcas.cas.IntegerArray; -import org.apache.uima.jcas.cas.LongArray; -import org.apache.uima.jcas.cas.ShortArray; -import org.apache.uima.jcas.cas.Sofa; -import org.apache.uima.jcas.cas.StringArray; -import org.apache.uima.jcas.cas.TOP; -import org.apache.uima.jcas.tcas.Annotation; - -/** - * Workaround UIMA bug while UIMA 3.4.1 has not yet been released. - * - * @see "https://github.com/inception-project/inception/issues/3799" - * @see "https://github.com/apache/uima-uimaj/issues/304" - */ -public class FixedBinaryCasSerDes - extends BinaryCasSerDes -{ - private static final boolean SOFA_IN_NORMAL_ORDER = false; - private static final int arrayLengthFeatOffset = 1; - private static final int arrayContentOffset = 2; - - private static Field baseCasField = FieldUtils.getDeclaredField(BinaryCasSerDes.class, - "baseCas", true); - private static Field tsiField = FieldUtils.getDeclaredField(BinaryCasSerDes.class, "tsi", true); - private static Method updateStringFeatureMethod = MethodUtils.getMatchingMethod( - BinaryCasSerDes.class, "updateStringFeature", TOP.class, FeatureImpl.class, - String.class, List.class); - private static Method getSofaFromAnnotBaseMethod = MethodUtils.getMatchingMethod( - BinaryCasSerDes.class, "getSofaFromAnnotBase", int.class, StringHeap.class, - Int2ObjHashMap.class, CommonSerDesSequential.class); - private static Method heapFeatMethod = MethodUtils.getMatchingMethod(BinaryCasSerDes.class, - "heapFeat", int.class, FeatureImpl.class); - private static Method makeSofaFromHeapMethod = MethodUtils.getMatchingMethod( - BinaryCasSerDes.class, "makeSofaFromHeap", int.class, StringHeap.class, - CommonSerDesSequential.class, boolean.class); - private static Method setFeatOrDeferMethod = MethodUtils.getMatchingMethod( - BinaryCasSerDes.class, "setFeatOrDefer", int.class, FeatureImpl.class, List.class, - Consumer.class, Int2ObjHashMap.class); - - static { - updateStringFeatureMethod.setAccessible(true); - getSofaFromAnnotBaseMethod.setAccessible(true); - heapFeatMethod.setAccessible(true); - makeSofaFromHeapMethod.setAccessible(true); - setFeatOrDeferMethod.setAccessible(true); - } - - public static void inject(CAS aCas) - { - CASImpl casImpl = (CASImpl) aCas; - CASImpl baseCas = casImpl.getBaseCAS(); - try { - FieldUtils.writeDeclaredField(casImpl.svd, "bcsd", new FixedBinaryCasSerDes(baseCas), - true); - } - catch (IllegalAccessException e) { - throw new RuntimeException(e); - } - } - - public FixedBinaryCasSerDes(CASImpl aBaseCAS) - { - super(aBaseCAS); - } - - @Override - void reinit(int[] heapMetadata, int[] heapArray, String[] stringTable, int[] fsIndex, - byte[] byteHeapArray, short[] shortHeapArray, long[] longHeapArray) - { - CASImpl baseCas = getBaseCas(); - - CommonSerDesSequential csds = new CommonSerDesSequential(baseCas); // for non Delta case, - // not - // held on to - // compare with compress form 4, which does cas.getCsds() or cas.newCsds() which saves it in - // cas.svd - csds.setup(null, 1); - heap = new Heap(); - byteHeap = new ByteHeap(); - shortHeap = new ShortHeap(); - longHeap = new LongHeap(); - stringHeap = new StringHeap(); - - createStringTableFromArray(stringTable); - - heap.reinit(heapMetadata, heapArray); - if (byteHeapArray != null) { - byteHeap.reinit(byteHeapArray); - } - if (shortHeapArray != null) { - shortHeap.reinit(shortHeapArray); - } - if (longHeapArray != null) { - longHeap.reinit(longHeapArray); - } - - createFSsFromHeaps(false, 1, csds); // false means not delta - - reinitIndexedFSs(fsIndex, false, i -> csds.addr2fs.get(i)); - } - - private void createFSsFromHeaps(boolean isDelta, int startPos, CommonSerDesSequential csds) - { - CASImpl baseCas = getBaseCas(); - - final int heapsz = heap.getCellsUsed(); - final Int2ObjHashMap addr2fs = csds.addr2fs; - TypeSystemImpl tsi = baseCas.getTypeSystemImpl(); - setTsi(tsi); - TOP fs; - TypeImpl type; - CASImpl initialView = baseCas.getInitialView(); // creates if needed - - List fixups4forwardFsRefs = new ArrayList<>(); - List fixups4UimaSerialization = new ArrayList<>(); - - for (int heapIndex = startPos; heapIndex < heapsz; heapIndex += getFsSpaceReq(fs, type)) { - int typecode = heap.heap[heapIndex]; - // if (isBeforeV3 && typecode > TypeSystemConstants.lastBuiltinV2TypeCode) { - // typecode = typecode + TypeSystemConstants.numberOfNewBuiltInsSinceV2; - // } - type = tsi.getTypeForCode(heap.heap[heapIndex]); - if (type == null) { - throw new CASRuntimeException(CASRuntimeException.deserialized_type_not_found, - heap.heap[heapIndex]); - } - if (type.isArray()) { - final int len = heap.heap[heapIndex + arrayLengthFeatOffset]; - - fs = baseCas.createArray(type, len); - csds.addFS(fs, heapIndex); - - if (len > 0) { - final int bhi = heap.heap[heapIndex + arrayContentOffset]; - final int hhi = heapIndex + arrayContentOffset; - - switch (type.getComponentSlotKind()) { - - case Slot_BooleanRef: { - boolean[] ba = ((BooleanArray) fs)._getTheArray(); - for (int ai = 0; ai < len; ai++) { - ba[ai] = byteHeap.heap[bhi + ai] == (byte) 1; - } - break; - } - - case Slot_ByteRef: - System.arraycopy(byteHeap.heap, bhi, ((ByteArray) fs)._getTheArray(), 0, - len); - break; - - case Slot_ShortRef: - System.arraycopy(shortHeap.heap, bhi, ((ShortArray) fs)._getTheArray(), 0, - len); - break; - - case Slot_LongRef: - System.arraycopy(longHeap.heap, bhi, ((LongArray) fs)._getTheArray(), 0, - len); - break; - - case Slot_DoubleRef: { - double[] da = ((DoubleArray) fs)._getTheArray(); - for (int ai = 0; ai < len; ai++) { - da[ai] = CASImpl.long2double(longHeap.heap[bhi + ai]); - } - break; - } - - case Slot_Int: - System.arraycopy(heap.heap, hhi, ((IntegerArray) fs)._getTheArray(), 0, - len); - break; - - case Slot_Float: { - float[] fa = ((FloatArray) fs)._getTheArray(); - for (int ai = 0; ai < len; ai++) { - fa[ai] = CASImpl.int2float(heap.heap[hhi + ai]); - } - break; - } - - case Slot_StrRef: { - String[] sa = ((StringArray) fs)._getTheArray(); - for (int ai = 0; ai < len; ai++) { - sa[ai] = stringHeap.getStringForCode(heap.heap[hhi + ai]); - } - break; - } - - case Slot_HeapRef: { - TOP[] fsa = ((FSArray) fs)._getTheArray(); - for (int ai = 0; ai < len; ai++) { - int a = heap.heap[hhi + ai]; - if (a == 0) { - continue; - } - TOP item = addr2fs.get(a); - if (item != null) { - fsa[ai] = item; - } - else { - final int aiSaved = ai; - final int addrSaved = a; - fixups4forwardFsRefs.add(() -> { - fsa[aiSaved] = addr2fs.get(addrSaved); - }); - } - } - break; - } - - default: - Misc.internalError(); - - } // end of switch - } - } - else { // end of arrays - // start of normal non-array - CASImpl view = null; - boolean isSofa = false; - boolean documentAnnotationPreviouslyIndexed = false; - if (type.isAnnotationBaseType()) { - Sofa sofa = _getSofaFromAnnotBase(heapIndex, stringHeap, addr2fs, csds); // creates - // sofa - // if - // needed - // and - // exists - // (forward - // ref - // case) - view = (sofa == null) ? baseCas.getInitialView() : baseCas.getView(sofa); - if (type == tsi.docType) { - Annotation documentAnnotationPrevious = view - .getDocumentAnnotationNoCreate(); - if (documentAnnotationPrevious == null) { - // document annotation not present - fs = view.createDocumentAnnotationNoRemoveNoIndex(0); // create but - // don't index - view.set_deserialized_doc_annot_not_indexed((Annotation) fs); // for use - // by - // other - // code - // that - // sets - // length, - // if - // this is - // not - // indexed - // documentAnnotationPreviouslyIndex == false, preset above - } - else { - fs = documentAnnotationPrevious; - // remove from Corruptable indexes, because we'll be updating it. - view.removeFromCorruptableIndexAnyView(fs, view.getAddbackSingle()); - documentAnnotationPreviouslyIndexed = true; - } - } - else { - fs = view.createFS(type); - if (fs instanceof UimaSerializable) { - final UimaSerializable ufs = (UimaSerializable) fs; - fixups4UimaSerialization.add(() -> ufs._init_from_cas_data()); - } - } - } - else if (type == tsi.sofaType) { - fs = _makeSofaFromHeap(heapIndex, stringHeap, csds, SOFA_IN_NORMAL_ORDER); // creates - // Sofa - // if - // not - // already - // created - // due - // to - // annotationbase - // code - // above - isSofa = true; - } - else { - fs = initialView.createFS(type); - if (fs instanceof UimaSerializable) { - final UimaSerializable ufs = (UimaSerializable) fs; - fixups4UimaSerialization.add(() -> ufs._init_from_cas_data()); - } - } - if (!isSofa) { // if it was a sofa, other code added or pended it - csds.addFS(fs, heapIndex); - } - - for (final FeatureImpl feat : type.getFeatureImpls()) { - SlotKind slotKind = feat.getSlotKind(); - switch (slotKind) { - case Slot_Boolean: - case Slot_Byte: - case Slot_Short: - case Slot_Int: - case Slot_Float: - if (!isSofa || feat != tsi.sofaNum) { - fs._setIntLikeValueNcNj(slotKind, feat, _heapFeat(heapIndex, feat)); - } - break; - - case Slot_LongRef: - fs._setLongValueNcNj(feat, longHeap.heap[_heapFeat(heapIndex, feat)]); - break; - case Slot_DoubleRef: - fs._setDoubleValueNcNj(feat, - CASImpl.long2double(longHeap.heap[_heapFeat(heapIndex, feat)])); - break; - case Slot_StrRef: { - String s = stringHeap.getStringForCode(_heapFeat(heapIndex, feat)); - if (_updateStringFeature(fs, feat, s, fixups4forwardFsRefs)) { - fs._setStringValueNcNj(feat, s); - } - break; - } - - case Slot_HeapRef: { - final TOP finalFs = fs; - if (feat == tsi.annotBaseSofaFeat) { - break; // already set - } - _setFeatOrDefer(heapIndex, feat, fixups4forwardFsRefs, item -> { - if (feat == tsi.sofaArray) { - ((Sofa) finalFs).setLocalSofaData(item); - } - else { - finalFs._setFeatureValueNcNj(feat, item); - } - }, addr2fs); - break; - } - - default: - Misc.internalError(); - } // end of switch - } // end of for-loop-over-all-features - - if (type == tsi.docType && documentAnnotationPreviouslyIndexed) { - view.addbackSingle(fs); - } - } // end of non-array, normal fs - } // end of loop over all fs in main array - - for (Runnable r : fixups4forwardFsRefs) { - r.run(); - } - - for (Runnable r : fixups4UimaSerialization) { - r.run(); - } - } - - private void _setFeatOrDefer(int aHeapIndex, FeatureImpl aFeat, - List aFixups4forwardFsRefs, Consumer aSetter, - Int2ObjHashMap aAddr2fs) - { - try { - setFeatOrDeferMethod.invoke(this, aHeapIndex, aFeat, aFixups4forwardFsRefs, aSetter, - aAddr2fs); - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - private boolean _updateStringFeature(TOP aFs, FeatureImpl aFeat, String aS, - List aFixups4forwardFsRefs) - { - try { - return (boolean) updateStringFeatureMethod.invoke(this, aFs, aFeat, aS, - aFixups4forwardFsRefs); - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - private int _heapFeat(int aHeapIndex, FeatureImpl aFeat) - { - try { - return (int) heapFeatMethod.invoke(this, aHeapIndex, aFeat); - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - private TOP _makeSofaFromHeap(int aHeapIndex, StringHeap aStringHeap, - CommonSerDesSequential aCsds, boolean aSofaInNormalOrder) - { - try { - return (TOP) makeSofaFromHeapMethod.invoke(this, aHeapIndex, aStringHeap, aCsds, - aSofaInNormalOrder); - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - private Sofa _getSofaFromAnnotBase(int annotBaseAddr, StringHeap stringHeap2, - Int2ObjHashMap addr2fs, CommonSerDesSequential csds) - { - try { - return (Sofa) getSofaFromAnnotBaseMethod.invoke(this, annotBaseAddr, stringHeap2, - addr2fs, csds); - } - catch (Exception e) { - throw new RuntimeException(e); - } - } - - private void setTsi(TypeSystemImpl aTsi) - { - try { - FieldUtils.writeField(tsiField, this, aTsi, true); - } - catch (IllegalAccessException e) { - throw new RuntimeException(e); - } - } - - private CASImpl getBaseCas() - { - CASImpl baseCas; - try { - baseCas = (CASImpl) FieldUtils.readField(baseCasField, this, true); - } - catch (IllegalAccessException e) { - throw new RuntimeException(e); - } - return baseCas; - } -} From e1961d9f83ea529c56ed9adce76b0d810c94cbe8 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sun, 5 Mar 2023 22:18:59 +0100 Subject: [PATCH 014/189] #283 - Resize span - Avoid displaying resize handles in brat editor on synthetic annotations - Fix bug that used the wrong layer adapter to perform the resize operation --- .../src/main/ts/src/annotator_ui/ResizeManager.ts | 3 ++- .../diam/editor/actions/MoveSpanAnnotationHandler.java | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/inception/inception-brat-editor/src/main/ts/src/annotator_ui/ResizeManager.ts b/inception/inception-brat-editor/src/main/ts/src/annotator_ui/ResizeManager.ts index cf8d46c8556..547bc42077f 100644 --- a/inception/inception-brat-editor/src/main/ts/src/annotator_ui/ResizeManager.ts +++ b/inception/inception-brat-editor/src/main/ts/src/annotator_ui/ResizeManager.ts @@ -72,7 +72,8 @@ export class ResizeManager { } const vid = event.target.getAttribute('data-span-id') - if (vid) this.show(vid) + + if (vid && !(String(vid).indexOf(':') >= 0)) this.show(vid) } show (id: VID): void { diff --git a/inception/inception-diam/src/main/java/de/tudarmstadt/ukp/inception/diam/editor/actions/MoveSpanAnnotationHandler.java b/inception/inception-diam/src/main/java/de/tudarmstadt/ukp/inception/diam/editor/actions/MoveSpanAnnotationHandler.java index 3686b0e7573..e8f505e4a28 100644 --- a/inception/inception-diam/src/main/java/de/tudarmstadt/ukp/inception/diam/editor/actions/MoveSpanAnnotationHandler.java +++ b/inception/inception-diam/src/main/java/de/tudarmstadt/ukp/inception/diam/editor/actions/MoveSpanAnnotationHandler.java @@ -84,11 +84,11 @@ private void moveSpan(AjaxRequestTarget aTarget, CAS aCas, VID aVid, Range aRang { AnnotatorState state = getAnnotatorState(); - SpanAdapter adapter = (SpanAdapter) annotationService - .getAdapter(state.getSelectedAnnotationLayer()); - AnnotationFS annoFs = ICasUtil.selectAnnotationByAddr(aCas, aVid.getId()); + SpanAdapter adapter = (SpanAdapter) annotationService.findAdapter(state.getProject(), + annoFs); + adapter.move(state.getDocument(), state.getUser().getUsername(), aCas, annoFs, aRange.getBegin(), aRange.getEnd()); From 297b31c12b27bb48c4a1c7d063379173819e52c5 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Mon, 6 Mar 2023 18:22:33 +0100 Subject: [PATCH 015/189] Issue #3571: Update dependencies - uima-json-io 0.4.0 -> 0.5.0 --- inception/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inception/pom.xml b/inception/pom.xml index 5371d3cf7ff..2da0ec395a2 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -72,7 +72,7 @@ 2.3.0 3.4.1 3.4.0 - 0.4.0 + 0.5.0 2.0.27 From bf06c75b76c7104399fc8f0d52e62a2a212b0653 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Mon, 6 Mar 2023 18:44:05 +0100 Subject: [PATCH 016/189] #3831 - Better support a direct-access workflow - Fix access check so that curators can actually view the curation document (and other annotator's documents) --- .../inception/documents/DocumentAccessImpl.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/inception/inception-documents/src/main/java/de/tudarmstadt/ukp/inception/documents/DocumentAccessImpl.java b/inception/inception-documents/src/main/java/de/tudarmstadt/ukp/inception/documents/DocumentAccessImpl.java index 8a75c6efbd7..047d115b8df 100644 --- a/inception/inception-documents/src/main/java/de/tudarmstadt/ukp/inception/documents/DocumentAccessImpl.java +++ b/inception/inception-documents/src/main/java/de/tudarmstadt/ukp/inception/documents/DocumentAccessImpl.java @@ -19,7 +19,6 @@ import static de.tudarmstadt.ukp.clarin.webanno.model.PermissionLevel.CURATOR; import static de.tudarmstadt.ukp.clarin.webanno.model.PermissionLevel.MANAGER; -import static de.tudarmstadt.ukp.clarin.webanno.support.WebAnnoConst.CURATION_USER; import static org.apache.commons.collections4.CollectionUtils.containsAny; import java.util.List; @@ -91,15 +90,17 @@ public boolean canViewAnnotationDocument(String aUser, String aProjectId, long a return false; } - // Annotators can see their own annotations and manager/curators can see annotations of - // all users - if (!aUser.equals(aAnnotator) && !permissionLevels.contains(MANAGER) - && !(CURATION_USER.equals(aUser) - && containsAny(permissionLevels, MANAGER, CURATOR))) { + // Managers and curators can see anything + if (containsAny(permissionLevels, MANAGER, CURATOR)) { + return true; + } + + // Annotators can only see their own documents + if (!aUser.equals(aAnnotator)) { return false; } - // Blocked documents cannot be viewed + // Annotators cannot view blocked documents SourceDocument doc = documentService.getSourceDocument(project.getId(), aDocumentId); if (documentService.existsAnnotationDocument(doc, aAnnotator)) { AnnotationDocument aDoc = documentService.getAnnotationDocument(doc, aAnnotator); From 84f69e8b48d9ff3ac3700cac69ca864b926c9dd0 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 7 Mar 2023 12:37:06 +0100 Subject: [PATCH 017/189] No issue: Try harder excluding mocha test output from rat because Windows builds complain about it --- inception/pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inception/pom.xml b/inception/pom.xml index 20f4efaf184..dcda84a74d2 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -2827,7 +2827,7 @@ true - + .mvn/jvm.config .oracle_jre_usage/*.timestamp .factorypath @@ -3211,6 +3211,7 @@ src/main/ts/*.json src/main/ts_template/*.json src/main/ts/node_modules/**/* + **/mocha-test-report.xml From c9bb50a04bbb33ee3d0dbd603b795836353d55c8 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 7 Mar 2023 12:48:16 +0100 Subject: [PATCH 018/189] [maven-release-plugin] prepare release inception-27.0 --- inception/inception-active-learning/pom.xml | 2 +- inception/inception-agreement/pom.xml | 2 +- .../inception-annotation-storage/pom.xml | 2 +- inception/inception-api-annotation/pom.xml | 2 +- inception/inception-api-editor/pom.xml | 2 +- inception/inception-api-formats/pom.xml | 2 +- inception/inception-api-render/pom.xml | 2 +- inception/inception-api-schema/pom.xml | 2 +- inception/inception-api/pom.xml | 2 +- inception/inception-app-webapp/pom.xml | 2 +- inception/inception-boot-loader/pom.xml | 2 +- inception/inception-bootstrap/pom.xml | 2 +- inception/inception-brat-editor/pom.xml | 2 +- inception/inception-build/pom.xml | 2 +- inception/inception-concept-linking/pom.xml | 2 +- inception/inception-constraints/pom.xml | 2 +- inception/inception-curation-legacy/pom.xml | 2 +- inception/inception-curation/pom.xml | 2 +- inception/inception-diag/pom.xml | 2 +- inception/inception-diam-editor/pom.xml | 2 +- inception/inception-diam/pom.xml | 2 +- inception/inception-doc/pom.xml | 2 +- inception/inception-docker/pom.xml | 2 +- inception/inception-documents/pom.xml | 2 +- .../pom.xml | 2 +- inception/inception-export/pom.xml | 2 +- inception/inception-external-editor/pom.xml | 2 +- .../inception-external-search-core/pom.xml | 2 +- .../inception-external-search-elastic/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-external-search-solr/pom.xml | 2 +- inception/inception-feature-lookup/pom.xml | 2 +- inception/inception-guidelines/pom.xml | 2 +- inception/inception-html-editor/pom.xml | 2 +- .../inception-html-recogito-editor/pom.xml | 2 +- inception/inception-image/pom.xml | 2 +- inception/inception-imls-elg/pom.xml | 2 +- inception/inception-imls-external/pom.xml | 2 +- inception/inception-imls-hf/pom.xml | 2 +- inception/inception-imls-lapps/pom.xml | 2 +- inception/inception-imls-opennlp/pom.xml | 2 +- inception/inception-imls-stringmatch/pom.xml | 2 +- inception/inception-imls-weblicht/pom.xml | 2 +- inception/inception-io-conll/pom.xml | 2 +- inception/inception-io-html/pom.xml | 2 +- inception/inception-io-imscwb/pom.xml | 2 +- inception/inception-io-intertext/pom.xml | 2 +- inception/inception-io-json/pom.xml | 2 +- inception/inception-io-lif/pom.xml | 2 +- inception/inception-io-nif/pom.xml | 2 +- inception/inception-io-perseus/pom.xml | 2 +- inception/inception-io-tcf/pom.xml | 2 +- inception/inception-io-tei/pom.xml | 2 +- inception/inception-io-text/pom.xml | 2 +- inception/inception-io-webanno-tsv/pom.xml | 2 +- inception/inception-io-xmi/pom.xml | 2 +- inception/inception-io-xml/pom.xml | 2 +- inception/inception-js-api/pom.xml | 2 +- inception/inception-kb-fact-linking/pom.xml | 2 +- inception/inception-kb/pom.xml | 2 +- inception/inception-layer-docmetadata/pom.xml | 2 +- inception/inception-log/pom.xml | 2 +- inception/inception-model-export/pom.xml | 2 +- inception/inception-model/pom.xml | 2 +- inception/inception-pdf-editor/pom.xml | 2 +- inception/inception-pdf-editor2/pom.xml | 2 +- inception/inception-plugin-api/pom.xml | 2 +- inception/inception-plugin-manager/pom.xml | 2 +- inception/inception-plugin-parent/pom.xml | 2 +- inception/inception-preferences/pom.xml | 2 +- inception/inception-project-export/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-project-initializers/pom.xml | 2 +- inception/inception-project/pom.xml | 2 +- .../inception-recommendation-api/pom.xml | 2 +- inception/inception-recommendation/pom.xml | 2 +- inception/inception-remote/pom.xml | 2 +- inception/inception-review-editor/pom.xml | 2 +- inception/inception-scheduling/pom.xml | 2 +- inception/inception-schema/pom.xml | 2 +- inception/inception-search-core/pom.xml | 2 +- inception/inception-search-mtas/pom.xml | 2 +- inception/inception-security/pom.xml | 2 +- inception/inception-sharing/pom.xml | 2 +- .../inception-support-standalone/pom.xml | 2 +- inception/inception-support/pom.xml | 2 +- inception/inception-telemetry/pom.xml | 2 +- inception/inception-testing/pom.xml | 2 +- inception/inception-tutorial/pom.xml | 2 +- inception/inception-ui-agreement/pom.xml | 2 +- inception/inception-ui-annotation/pom.xml | 2 +- inception/inception-ui-core/pom.xml | 2 +- inception/inception-ui-curation/pom.xml | 2 +- .../inception-ui-dashboard-activity/pom.xml | 2 +- inception/inception-ui-dashboard/pom.xml | 2 +- .../inception-ui-external-search/pom.xml | 2 +- inception/inception-ui-kb/pom.xml | 2 +- inception/inception-ui-project/pom.xml | 2 +- inception/inception-ui-search/pom.xml | 2 +- inception/inception-ui-tagsets/pom.xml | 2 +- inception/inception-versioning/pom.xml | 2 +- inception/inception-websocket/pom.xml | 2 +- inception/inception-workload-dynamic/pom.xml | 2 +- inception/inception-workload-matrix/pom.xml | 2 +- inception/inception-workload-ui/pom.xml | 2 +- inception/inception-workload/pom.xml | 2 +- inception/pom.xml | 214 +++++++++--------- pom.xml | 4 +- 112 files changed, 219 insertions(+), 219 deletions(-) diff --git a/inception/inception-active-learning/pom.xml b/inception/inception-active-learning/pom.xml index 7909d448328..52ced15cf66 100644 --- a/inception/inception-active-learning/pom.xml +++ b/inception/inception-active-learning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 .. inception-active-learning diff --git a/inception/inception-agreement/pom.xml b/inception/inception-agreement/pom.xml index 485da6c2098..1b4eb1261bb 100644 --- a/inception/inception-agreement/pom.xml +++ b/inception/inception-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-agreement INCEpTION - Core - Agreement diff --git a/inception/inception-annotation-storage/pom.xml b/inception/inception-annotation-storage/pom.xml index 104fa8b88b6..aeeab285f01 100644 --- a/inception/inception-annotation-storage/pom.xml +++ b/inception/inception-annotation-storage/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-annotation-storage INCEpTION - Core - Annotation Storage diff --git a/inception/inception-api-annotation/pom.xml b/inception/inception-api-annotation/pom.xml index d7759afe81b..768aa2c8357 100644 --- a/inception/inception-api-annotation/pom.xml +++ b/inception/inception-api-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-api-annotation INCEpTION - Core - Annotation API diff --git a/inception/inception-api-editor/pom.xml b/inception/inception-api-editor/pom.xml index 693a41899d1..ab026d8fcdb 100644 --- a/inception/inception-api-editor/pom.xml +++ b/inception/inception-api-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-api-editor INCEpTION - Core - Annotation editor API diff --git a/inception/inception-api-formats/pom.xml b/inception/inception-api-formats/pom.xml index cbf96d1e800..9d1a5d804ad 100644 --- a/inception/inception-api-formats/pom.xml +++ b/inception/inception-api-formats/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-api-formats INCEpTION - Core - Formats API diff --git a/inception/inception-api-render/pom.xml b/inception/inception-api-render/pom.xml index e493ce3940e..fb8596090e1 100644 --- a/inception/inception-api-render/pom.xml +++ b/inception/inception-api-render/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-api-render INCEpTION - Core - Annotation rendering API diff --git a/inception/inception-api-schema/pom.xml b/inception/inception-api-schema/pom.xml index 382d455b6fb..3c177a6aebf 100644 --- a/inception/inception-api-schema/pom.xml +++ b/inception/inception-api-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-api-schema INCEpTION - Core - Annotation Schema API diff --git a/inception/inception-api/pom.xml b/inception/inception-api/pom.xml index 4d26bfd1d7d..c1b08b59f01 100644 --- a/inception/inception-api/pom.xml +++ b/inception/inception-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-api INCEpTION - Core - API diff --git a/inception/inception-app-webapp/pom.xml b/inception/inception-app-webapp/pom.xml index 30cfd2e8724..d82e413a474 100644 --- a/inception/inception-app-webapp/pom.xml +++ b/inception/inception-app-webapp/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 .. diff --git a/inception/inception-boot-loader/pom.xml b/inception/inception-boot-loader/pom.xml index 84377186315..01318506569 100644 --- a/inception/inception-boot-loader/pom.xml +++ b/inception/inception-boot-loader/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-boot-loader INCEpTION - Boot loader diff --git a/inception/inception-bootstrap/pom.xml b/inception/inception-bootstrap/pom.xml index 140ed867558..8ce5ab8a44e 100644 --- a/inception/inception-bootstrap/pom.xml +++ b/inception/inception-bootstrap/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-bootstrap diff --git a/inception/inception-brat-editor/pom.xml b/inception/inception-brat-editor/pom.xml index 7817719fd14..251377d8597 100644 --- a/inception/inception-brat-editor/pom.xml +++ b/inception/inception-brat-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-brat-editor INCEpTION - Editor - brat diff --git a/inception/inception-build/pom.xml b/inception/inception-build/pom.xml index 09daa2d30b0..9fcece4208e 100644 --- a/inception/inception-build/pom.xml +++ b/inception/inception-build/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-build INCEpTION - Build resources diff --git a/inception/inception-concept-linking/pom.xml b/inception/inception-concept-linking/pom.xml index 782e92c2ac7..db9489f5641 100644 --- a/inception/inception-concept-linking/pom.xml +++ b/inception/inception-concept-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-concept-linking INCEpTION - Concept Linking diff --git a/inception/inception-constraints/pom.xml b/inception/inception-constraints/pom.xml index c1e865ef272..b0f3c4ddc4e 100644 --- a/inception/inception-constraints/pom.xml +++ b/inception/inception-constraints/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-constraints INCEpTION - Core - Constraints diff --git a/inception/inception-curation-legacy/pom.xml b/inception/inception-curation-legacy/pom.xml index 0b66e51f660..de433daa782 100644 --- a/inception/inception-curation-legacy/pom.xml +++ b/inception/inception-curation-legacy/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-curation-legacy INCEpTION - Core - Curation diff --git a/inception/inception-curation/pom.xml b/inception/inception-curation/pom.xml index 147bca250a6..70b2420eaf3 100644 --- a/inception/inception-curation/pom.xml +++ b/inception/inception-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-curation INCEpTION - Curation diff --git a/inception/inception-diag/pom.xml b/inception/inception-diag/pom.xml index 4397c27bdd6..7a1ebd5ba53 100644 --- a/inception/inception-diag/pom.xml +++ b/inception/inception-diag/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-diag INCEpTION - Core - Diagnostics diff --git a/inception/inception-diam-editor/pom.xml b/inception/inception-diam-editor/pom.xml index fa6d785bb16..0fd3b5608c3 100644 --- a/inception/inception-diam-editor/pom.xml +++ b/inception/inception-diam-editor/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-diam-editor INCEpTION - DIAM - Editor diff --git a/inception/inception-diam/pom.xml b/inception/inception-diam/pom.xml index 76c9cd00ad0..b9ecd094ec9 100644 --- a/inception/inception-diam/pom.xml +++ b/inception/inception-diam/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-diam diff --git a/inception/inception-doc/pom.xml b/inception/inception-doc/pom.xml index 60897dbbab3..127ea98a6ad 100644 --- a/inception/inception-doc/pom.xml +++ b/inception/inception-doc/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-doc jar diff --git a/inception/inception-docker/pom.xml b/inception/inception-docker/pom.xml index 01495e66e18..e4446fcb20b 100644 --- a/inception/inception-docker/pom.xml +++ b/inception/inception-docker/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 .. inception-docker diff --git a/inception/inception-documents/pom.xml b/inception/inception-documents/pom.xml index c88effa2f32..bccc208a795 100644 --- a/inception/inception-documents/pom.xml +++ b/inception/inception-documents/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-documents INCEpTION - Core - Persistence API diff --git a/inception/inception-example-imls-data-majority/pom.xml b/inception/inception-example-imls-data-majority/pom.xml index f6fad56f3da..694eeb120d1 100644 --- a/inception/inception-example-imls-data-majority/pom.xml +++ b/inception/inception-example-imls-data-majority/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-plugin-parent - 27.0-SNAPSHOT + 27.0 ../inception-plugin-parent inception-example-imls-data-majority diff --git a/inception/inception-export/pom.xml b/inception/inception-export/pom.xml index 4f9bd816376..eaa8d0121d5 100644 --- a/inception/inception-export/pom.xml +++ b/inception/inception-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-export INCEpTION - Core - Export diff --git a/inception/inception-external-editor/pom.xml b/inception/inception-external-editor/pom.xml index 0c0eee83002..14f2489971d 100644 --- a/inception/inception-external-editor/pom.xml +++ b/inception/inception-external-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-external-editor INCEpTION - Editor - External editor diff --git a/inception/inception-external-search-core/pom.xml b/inception/inception-external-search-core/pom.xml index d7e684a216f..83d3039b72f 100644 --- a/inception/inception-external-search-core/pom.xml +++ b/inception/inception-external-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-external-search-core INCEpTION - External Search - Core diff --git a/inception/inception-external-search-elastic/pom.xml b/inception/inception-external-search-elastic/pom.xml index 3f77728c986..57bc7259c92 100644 --- a/inception/inception-external-search-elastic/pom.xml +++ b/inception/inception-external-search-elastic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-external-search-elastic INCEpTION - External Search - Elastic Search diff --git a/inception/inception-external-search-opensearch/pom.xml b/inception/inception-external-search-opensearch/pom.xml index fcb5ccdfaf0..0ec8b10eba5 100644 --- a/inception/inception-external-search-opensearch/pom.xml +++ b/inception/inception-external-search-opensearch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-external-search-opensearch INCEpTION - External Search - OpenSearch diff --git a/inception/inception-external-search-pubannotation/pom.xml b/inception/inception-external-search-pubannotation/pom.xml index b9373bfb134..30abcef76bf 100644 --- a/inception/inception-external-search-pubannotation/pom.xml +++ b/inception/inception-external-search-pubannotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-external-search-pubannotation INCEpTION - External Search - PubAnnotation diff --git a/inception/inception-external-search-solr/pom.xml b/inception/inception-external-search-solr/pom.xml index 822ae31eba8..070d194ad65 100644 --- a/inception/inception-external-search-solr/pom.xml +++ b/inception/inception-external-search-solr/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-external-search-solr INCEpTION - External Search - Solr diff --git a/inception/inception-feature-lookup/pom.xml b/inception/inception-feature-lookup/pom.xml index 6db293fe73d..6cdeb76786d 100644 --- a/inception/inception-feature-lookup/pom.xml +++ b/inception/inception-feature-lookup/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-feature-lookup INCEpTION - Lookup Feature Support diff --git a/inception/inception-guidelines/pom.xml b/inception/inception-guidelines/pom.xml index c2cf26dcff2..e9e1eddd903 100644 --- a/inception/inception-guidelines/pom.xml +++ b/inception/inception-guidelines/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-guidelines INCEpTION - Core - Annotation Guidelines diff --git a/inception/inception-html-editor/pom.xml b/inception/inception-html-editor/pom.xml index 3939f4561ef..d62a6d82de5 100644 --- a/inception/inception-html-editor/pom.xml +++ b/inception/inception-html-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-html-editor INCEpTION - Editor - HTML + Annotator JS diff --git a/inception/inception-html-recogito-editor/pom.xml b/inception/inception-html-recogito-editor/pom.xml index 988cd296c73..b0d5f8647d7 100644 --- a/inception/inception-html-recogito-editor/pom.xml +++ b/inception/inception-html-recogito-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-html-recogito-editor INCEpTION - Editor - HTML + Recogito JS (${recogitojs.version}) diff --git a/inception/inception-image/pom.xml b/inception/inception-image/pom.xml index 3dbb04c41d5..1675ed4ecbd 100644 --- a/inception/inception-image/pom.xml +++ b/inception/inception-image/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-image INCEpTION - Image Support diff --git a/inception/inception-imls-elg/pom.xml b/inception/inception-imls-elg/pom.xml index 1a1a708912e..5a9d9202575 100644 --- a/inception/inception-imls-elg/pom.xml +++ b/inception/inception-imls-elg/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-elg diff --git a/inception/inception-imls-external/pom.xml b/inception/inception-imls-external/pom.xml index dfd891a5e0b..3d8417ce363 100644 --- a/inception/inception-imls-external/pom.xml +++ b/inception/inception-imls-external/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-external diff --git a/inception/inception-imls-hf/pom.xml b/inception/inception-imls-hf/pom.xml index c8c2aabf6d2..2105b7da516 100644 --- a/inception/inception-imls-hf/pom.xml +++ b/inception/inception-imls-hf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-hf diff --git a/inception/inception-imls-lapps/pom.xml b/inception/inception-imls-lapps/pom.xml index 2f2a060d26f..a44885b70c0 100644 --- a/inception/inception-imls-lapps/pom.xml +++ b/inception/inception-imls-lapps/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-lapps diff --git a/inception/inception-imls-opennlp/pom.xml b/inception/inception-imls-opennlp/pom.xml index 2a1ad7e4bbb..02008e43423 100644 --- a/inception/inception-imls-opennlp/pom.xml +++ b/inception/inception-imls-opennlp/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-opennlp INCEpTION - ML - OpenNLP (v ${opennlp.version}) diff --git a/inception/inception-imls-stringmatch/pom.xml b/inception/inception-imls-stringmatch/pom.xml index bd76d0d3e64..43d4a980580 100644 --- a/inception/inception-imls-stringmatch/pom.xml +++ b/inception/inception-imls-stringmatch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-stringmatch INCEpTION - ML - String Matching diff --git a/inception/inception-imls-weblicht/pom.xml b/inception/inception-imls-weblicht/pom.xml index 1569cc4baba..c719e566cc6 100644 --- a/inception/inception-imls-weblicht/pom.xml +++ b/inception/inception-imls-weblicht/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-imls-weblicht diff --git a/inception/inception-io-conll/pom.xml b/inception/inception-io-conll/pom.xml index 6111b1c04a0..248ebeab185 100644 --- a/inception/inception-io-conll/pom.xml +++ b/inception/inception-io-conll/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-conll INCEpTION - IO - CONLL diff --git a/inception/inception-io-html/pom.xml b/inception/inception-io-html/pom.xml index a83e71f0945..e051669d0e7 100644 --- a/inception/inception-io-html/pom.xml +++ b/inception/inception-io-html/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-html INCEpTION - IO - HTML diff --git a/inception/inception-io-imscwb/pom.xml b/inception/inception-io-imscwb/pom.xml index 1070e6e9468..03e958b3d06 100644 --- a/inception/inception-io-imscwb/pom.xml +++ b/inception/inception-io-imscwb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-imscwb INCEpTION - IO - IMS CWB diff --git a/inception/inception-io-intertext/pom.xml b/inception/inception-io-intertext/pom.xml index e34382d5142..6da08d9288d 100644 --- a/inception/inception-io-intertext/pom.xml +++ b/inception/inception-io-intertext/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-intertext INCEpTION - IO - InterText diff --git a/inception/inception-io-json/pom.xml b/inception/inception-io-json/pom.xml index e9071d6bea3..b13d69faa46 100644 --- a/inception/inception-io-json/pom.xml +++ b/inception/inception-io-json/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-json INCEpTION - IO - JSON diff --git a/inception/inception-io-lif/pom.xml b/inception/inception-io-lif/pom.xml index 6c9ab8d5139..4207f139c09 100644 --- a/inception/inception-io-lif/pom.xml +++ b/inception/inception-io-lif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-lif INCEpTION - IO - LIF (deprecated) diff --git a/inception/inception-io-nif/pom.xml b/inception/inception-io-nif/pom.xml index 3d99192b791..54a563a8728 100644 --- a/inception/inception-io-nif/pom.xml +++ b/inception/inception-io-nif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-nif INCEpTION - IO - NIF diff --git a/inception/inception-io-perseus/pom.xml b/inception/inception-io-perseus/pom.xml index 9379f8af88b..863309d0398 100644 --- a/inception/inception-io-perseus/pom.xml +++ b/inception/inception-io-perseus/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-perseus INCEpTION - IO - Perseus diff --git a/inception/inception-io-tcf/pom.xml b/inception/inception-io-tcf/pom.xml index cac3fd8d392..28fa828c47d 100644 --- a/inception/inception-io-tcf/pom.xml +++ b/inception/inception-io-tcf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-tcf INCEpTION - IO - TCF diff --git a/inception/inception-io-tei/pom.xml b/inception/inception-io-tei/pom.xml index 1e30ca7423e..106b8f403c4 100644 --- a/inception/inception-io-tei/pom.xml +++ b/inception/inception-io-tei/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-tei INCEpTION - IO - TEI diff --git a/inception/inception-io-text/pom.xml b/inception/inception-io-text/pom.xml index f5a56b3e69e..c0fe331ceb4 100644 --- a/inception/inception-io-text/pom.xml +++ b/inception/inception-io-text/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-text INCEpTION - IO - Text diff --git a/inception/inception-io-webanno-tsv/pom.xml b/inception/inception-io-webanno-tsv/pom.xml index 8df715154dc..8f66ee11656 100644 --- a/inception/inception-io-webanno-tsv/pom.xml +++ b/inception/inception-io-webanno-tsv/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-webanno-tsv INCEpTION - IO - TSV diff --git a/inception/inception-io-xmi/pom.xml b/inception/inception-io-xmi/pom.xml index fe49ee672fc..4f52ca817bf 100644 --- a/inception/inception-io-xmi/pom.xml +++ b/inception/inception-io-xmi/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-xmi INCEpTION - IO - XMI diff --git a/inception/inception-io-xml/pom.xml b/inception/inception-io-xml/pom.xml index 6f69a15663f..04d61abda4a 100644 --- a/inception/inception-io-xml/pom.xml +++ b/inception/inception-io-xml/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-io-xml INCEpTION - IO - XML diff --git a/inception/inception-js-api/pom.xml b/inception/inception-js-api/pom.xml index 9e6f5c331db..36e8000e4f9 100644 --- a/inception/inception-js-api/pom.xml +++ b/inception/inception-js-api/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-js-api diff --git a/inception/inception-kb-fact-linking/pom.xml b/inception/inception-kb-fact-linking/pom.xml index 4c4931b7eb9..cbc32e97456 100644 --- a/inception/inception-kb-fact-linking/pom.xml +++ b/inception/inception-kb-fact-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-kb-fact-linking INCEpTION - Knowledge Base - Fact Linking diff --git a/inception/inception-kb/pom.xml b/inception/inception-kb/pom.xml index 996a340a3ff..2bc66ff3906 100644 --- a/inception/inception-kb/pom.xml +++ b/inception/inception-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-kb INCEpTION - Knowledge Base - Core diff --git a/inception/inception-layer-docmetadata/pom.xml b/inception/inception-layer-docmetadata/pom.xml index 6a144227064..32ff686a6e2 100644 --- a/inception/inception-layer-docmetadata/pom.xml +++ b/inception/inception-layer-docmetadata/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-layer-docmetadata INCEpTION - Document Metadata Support diff --git a/inception/inception-log/pom.xml b/inception/inception-log/pom.xml index 1dd49d03c13..ee54e2fd625 100644 --- a/inception/inception-log/pom.xml +++ b/inception/inception-log/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-log INCEpTION - Log diff --git a/inception/inception-model-export/pom.xml b/inception/inception-model-export/pom.xml index cef30cb6b9b..cc88be6aa1d 100644 --- a/inception/inception-model-export/pom.xml +++ b/inception/inception-model-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-model-export INCEpTION - Core - Export Model diff --git a/inception/inception-model/pom.xml b/inception/inception-model/pom.xml index 6d9269a7994..3f9837658e9 100644 --- a/inception/inception-model/pom.xml +++ b/inception/inception-model/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-model INCEpTION - Core - Model diff --git a/inception/inception-pdf-editor/pom.xml b/inception/inception-pdf-editor/pom.xml index 4aa972aa9e2..d9fa30b2a89 100644 --- a/inception/inception-pdf-editor/pom.xml +++ b/inception/inception-pdf-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}) inception-pdf-editor diff --git a/inception/inception-pdf-editor2/pom.xml b/inception/inception-pdf-editor2/pom.xml index d90872324f4..d90578a3b9a 100644 --- a/inception/inception-pdf-editor2/pom.xml +++ b/inception/inception-pdf-editor2/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}; pdfjs ${pdfjs.version}) inception-pdf-editor2 diff --git a/inception/inception-plugin-api/pom.xml b/inception/inception-plugin-api/pom.xml index a9cadf616c7..0275709a31b 100644 --- a/inception/inception-plugin-api/pom.xml +++ b/inception/inception-plugin-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-plugin-api INCEpTION - Plugin API diff --git a/inception/inception-plugin-manager/pom.xml b/inception/inception-plugin-manager/pom.xml index 49b684a67d5..2e4b08802ac 100644 --- a/inception/inception-plugin-manager/pom.xml +++ b/inception/inception-plugin-manager/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-plugin-manager INCEpTION - Plugin manager diff --git a/inception/inception-plugin-parent/pom.xml b/inception/inception-plugin-parent/pom.xml index 801365859f7..aa48879c495 100644 --- a/inception/inception-plugin-parent/pom.xml +++ b/inception/inception-plugin-parent/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-plugin-parent INCEpTION - Plugin Parent POM diff --git a/inception/inception-preferences/pom.xml b/inception/inception-preferences/pom.xml index 9260d7ee5b9..d412e79ecdf 100644 --- a/inception/inception-preferences/pom.xml +++ b/inception/inception-preferences/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-preferences INCEpTION - Preferences diff --git a/inception/inception-project-export/pom.xml b/inception/inception-project-export/pom.xml index 61159da9b24..209b6d81f9b 100644 --- a/inception/inception-project-export/pom.xml +++ b/inception/inception-project-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project-export INCEpTION - Core - Project export diff --git a/inception/inception-project-initializers-basic/pom.xml b/inception/inception-project-initializers-basic/pom.xml index a03efb4cb4e..e37852ebc80 100644 --- a/inception/inception-project-initializers-basic/pom.xml +++ b/inception/inception-project-initializers-basic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project-initializers-basic INCEpTION - Core - Project initializers - Basic Span / Relation diff --git a/inception/inception-project-initializers-doclabeling/pom.xml b/inception/inception-project-initializers-doclabeling/pom.xml index a993f1375b9..c53621c772c 100644 --- a/inception/inception-project-initializers-doclabeling/pom.xml +++ b/inception/inception-project-initializers-doclabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project-initializers-doclabeling INCEpTION - Core - Project initializers - Document Labeling diff --git a/inception/inception-project-initializers-sentencelabeling/pom.xml b/inception/inception-project-initializers-sentencelabeling/pom.xml index 3294b0c5464..0d13afb22a8 100644 --- a/inception/inception-project-initializers-sentencelabeling/pom.xml +++ b/inception/inception-project-initializers-sentencelabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project-initializers-sentencelabeling INCEpTION - Core - Project initializers - Sentence Labeling diff --git a/inception/inception-project-initializers-wikidatalinking/pom.xml b/inception/inception-project-initializers-wikidatalinking/pom.xml index 6857252e375..cd453298c29 100644 --- a/inception/inception-project-initializers-wikidatalinking/pom.xml +++ b/inception/inception-project-initializers-wikidatalinking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project-initializers-wikidatalinking INCEpTION - Core - Project initializers - Entity Linking (Wikidata) diff --git a/inception/inception-project-initializers/pom.xml b/inception/inception-project-initializers/pom.xml index e7bccbf8eb8..7d6977565ac 100644 --- a/inception/inception-project-initializers/pom.xml +++ b/inception/inception-project-initializers/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project-initializers INCEpTION - Core - Project initializers diff --git a/inception/inception-project/pom.xml b/inception/inception-project/pom.xml index 582abc2d8e8..fa5f1400a48 100644 --- a/inception/inception-project/pom.xml +++ b/inception/inception-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-project INCEpTION - Core - Project diff --git a/inception/inception-recommendation-api/pom.xml b/inception/inception-recommendation-api/pom.xml index 697d4253793..203fb356e1a 100644 --- a/inception/inception-recommendation-api/pom.xml +++ b/inception/inception-recommendation-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-recommendation-api INCEpTION - Recommendation - API diff --git a/inception/inception-recommendation/pom.xml b/inception/inception-recommendation/pom.xml index 2254a904d4d..b08536edb06 100644 --- a/inception/inception-recommendation/pom.xml +++ b/inception/inception-recommendation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-recommendation INCEpTION - Recommendation - Core diff --git a/inception/inception-remote/pom.xml b/inception/inception-remote/pom.xml index fc0f7c59e81..f1edaf8df2d 100644 --- a/inception/inception-remote/pom.xml +++ b/inception/inception-remote/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-remote INCEpTION - Core - Remote API diff --git a/inception/inception-review-editor/pom.xml b/inception/inception-review-editor/pom.xml index 363dfa702b2..d4f29231595 100644 --- a/inception/inception-review-editor/pom.xml +++ b/inception/inception-review-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 INCEpTION - Editor - Review inception-review-editor diff --git a/inception/inception-scheduling/pom.xml b/inception/inception-scheduling/pom.xml index cbd11b4965f..e6a9fc2d8c5 100644 --- a/inception/inception-scheduling/pom.xml +++ b/inception/inception-scheduling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-scheduling INCEpTION - Scheduling diff --git a/inception/inception-schema/pom.xml b/inception/inception-schema/pom.xml index f3bd61ef8f0..7f667e514b7 100644 --- a/inception/inception-schema/pom.xml +++ b/inception/inception-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-schema INCEpTION - Core - Annotation Schema diff --git a/inception/inception-search-core/pom.xml b/inception/inception-search-core/pom.xml index ed6f84b4899..ed5c23a1a16 100644 --- a/inception/inception-search-core/pom.xml +++ b/inception/inception-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-search-core INCEpTION - Search - Core diff --git a/inception/inception-search-mtas/pom.xml b/inception/inception-search-mtas/pom.xml index 27acf6a0655..5bb2e25918e 100644 --- a/inception/inception-search-mtas/pom.xml +++ b/inception/inception-search-mtas/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-search-mtas INCEpTION - Search - MTAS diff --git a/inception/inception-security/pom.xml b/inception/inception-security/pom.xml index f9125d63527..e3a9c235e71 100644 --- a/inception/inception-security/pom.xml +++ b/inception/inception-security/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-security INCEpTION - Core - Security diff --git a/inception/inception-sharing/pom.xml b/inception/inception-sharing/pom.xml index f896e275adc..37a7b0edbe7 100644 --- a/inception/inception-sharing/pom.xml +++ b/inception/inception-sharing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-sharing INCEpTION - Sharing diff --git a/inception/inception-support-standalone/pom.xml b/inception/inception-support-standalone/pom.xml index 7e2a2a567da..b49b9569e7e 100644 --- a/inception/inception-support-standalone/pom.xml +++ b/inception/inception-support-standalone/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-support-standalone INCEpTION - Core - Support for standalone mode diff --git a/inception/inception-support/pom.xml b/inception/inception-support/pom.xml index b19d2a3fa0e..c5db409673c 100644 --- a/inception/inception-support/pom.xml +++ b/inception/inception-support/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-support INCEpTION - Support library diff --git a/inception/inception-telemetry/pom.xml b/inception/inception-telemetry/pom.xml index 576fd7a28f4..65d686c88ea 100644 --- a/inception/inception-telemetry/pom.xml +++ b/inception/inception-telemetry/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-telemetry INCEpTION - Telemetry diff --git a/inception/inception-testing/pom.xml b/inception/inception-testing/pom.xml index 55938eb4187..3d6df4296f8 100644 --- a/inception/inception-testing/pom.xml +++ b/inception/inception-testing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-testing INCEpTION - Test Support library diff --git a/inception/inception-tutorial/pom.xml b/inception/inception-tutorial/pom.xml index 609fb346b59..b382d61ac0d 100644 --- a/inception/inception-tutorial/pom.xml +++ b/inception/inception-tutorial/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-tutorial INCEpTION - UI - Tutorial diff --git a/inception/inception-ui-agreement/pom.xml b/inception/inception-ui-agreement/pom.xml index 999a058b430..b60da688fa7 100644 --- a/inception/inception-ui-agreement/pom.xml +++ b/inception/inception-ui-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-agreement INCEpTION - UI - Agreement diff --git a/inception/inception-ui-annotation/pom.xml b/inception/inception-ui-annotation/pom.xml index b271671df76..59349150777 100644 --- a/inception/inception-ui-annotation/pom.xml +++ b/inception/inception-ui-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-annotation INCEpTION - UI - Annotation diff --git a/inception/inception-ui-core/pom.xml b/inception/inception-ui-core/pom.xml index aa691b10b95..1f6ba1f97d8 100644 --- a/inception/inception-ui-core/pom.xml +++ b/inception/inception-ui-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-core INCEpTION - UI - Core diff --git a/inception/inception-ui-curation/pom.xml b/inception/inception-ui-curation/pom.xml index bc085277ec1..24f2e801427 100644 --- a/inception/inception-ui-curation/pom.xml +++ b/inception/inception-ui-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-curation INCEpTION - UI - Curation diff --git a/inception/inception-ui-dashboard-activity/pom.xml b/inception/inception-ui-dashboard-activity/pom.xml index df312118ce8..4e010e8c5d1 100644 --- a/inception/inception-ui-dashboard-activity/pom.xml +++ b/inception/inception-ui-dashboard-activity/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-dashboard-activity INCEpTION - Dashboard - Recent activity diff --git a/inception/inception-ui-dashboard/pom.xml b/inception/inception-ui-dashboard/pom.xml index d09e3fdb1d7..27f4e008cbf 100644 --- a/inception/inception-ui-dashboard/pom.xml +++ b/inception/inception-ui-dashboard/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-dashboard INCEpTION - UI - Dashboard diff --git a/inception/inception-ui-external-search/pom.xml b/inception/inception-ui-external-search/pom.xml index 6320997c35f..28f7a083c75 100644 --- a/inception/inception-ui-external-search/pom.xml +++ b/inception/inception-ui-external-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-external-search INCEpTION - External Search - UI diff --git a/inception/inception-ui-kb/pom.xml b/inception/inception-ui-kb/pom.xml index 41bd4652947..85b9e6dc423 100644 --- a/inception/inception-ui-kb/pom.xml +++ b/inception/inception-ui-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-kb INCEpTION - Knowledge Base - UI diff --git a/inception/inception-ui-project/pom.xml b/inception/inception-ui-project/pom.xml index d9afa577458..941de00453d 100644 --- a/inception/inception-ui-project/pom.xml +++ b/inception/inception-ui-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-project INCEpTION - UI - Project diff --git a/inception/inception-ui-search/pom.xml b/inception/inception-ui-search/pom.xml index e18705b9860..8018c230c4f 100644 --- a/inception/inception-ui-search/pom.xml +++ b/inception/inception-ui-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-search INCEpTION - Search - UI diff --git a/inception/inception-ui-tagsets/pom.xml b/inception/inception-ui-tagsets/pom.xml index 63fa93efb10..47094eb6a39 100644 --- a/inception/inception-ui-tagsets/pom.xml +++ b/inception/inception-ui-tagsets/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-ui-tagsets INCEpTION - UI - Tagsets diff --git a/inception/inception-versioning/pom.xml b/inception/inception-versioning/pom.xml index d009bce4de9..92184ca8213 100644 --- a/inception/inception-versioning/pom.xml +++ b/inception/inception-versioning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-versioning INCEpTION - Versioning diff --git a/inception/inception-websocket/pom.xml b/inception/inception-websocket/pom.xml index a1297422ba9..e5f3ead2f91 100644 --- a/inception/inception-websocket/pom.xml +++ b/inception/inception-websocket/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0-SNAPSHOT + 27.0 inception-websocket INCEpTION - Websocket diff --git a/inception/inception-workload-dynamic/pom.xml b/inception/inception-workload-dynamic/pom.xml index 4ca5f949768..4602634c669 100644 --- a/inception/inception-workload-dynamic/pom.xml +++ b/inception/inception-workload-dynamic/pom.xml @@ -19,7 +19,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-workload-dynamic diff --git a/inception/inception-workload-matrix/pom.xml b/inception/inception-workload-matrix/pom.xml index dc021554c07..2a60b7f0407 100644 --- a/inception/inception-workload-matrix/pom.xml +++ b/inception/inception-workload-matrix/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-workload-matrix diff --git a/inception/inception-workload-ui/pom.xml b/inception/inception-workload-ui/pom.xml index 1d1f79d7a64..85a0ccccbbc 100644 --- a/inception/inception-workload-ui/pom.xml +++ b/inception/inception-workload-ui/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-workload-ui diff --git a/inception/inception-workload/pom.xml b/inception/inception-workload/pom.xml index aea6f25fe5e..f92980d9d92 100644 --- a/inception/inception-workload/pom.xml +++ b/inception/inception-workload/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0-SNAPSHOT + 27.0 4.0.0 inception-workload diff --git a/inception/pom.xml b/inception/pom.xml index 2da0ec395a2..c2b15f1b3b6 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-SNAPSHOT + 27.0 inception-app pom @@ -45,7 +45,7 @@ scm:git:https://github.com/inception-project/inception.git scm:git:https://github.com/inception-project/inception.git https://github.com/inception-project/inception - HEAD + inception-27.0 @@ -517,212 +517,212 @@ de.tudarmstadt.ukp.inception.app inception-doc - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-agreement - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-agreement - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-annotation - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-project - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-tagsets - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-curation - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-curation - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-search - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-workload - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-workload-dynamic - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-workload-matrix - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-workload-ui - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-external-editor - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-external-search-core - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-external-search-pubannotation - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-external-search-elastic - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-external-search-opensearch - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-external-search-solr - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-external-search - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-dashboard - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-dashboard-activity - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-kb - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-kb-fact-linking - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-html-editor - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-html-recogito-editor - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-pdf-editor - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-pdf-editor2 - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-recommendation - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-recommendation-api - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-review-editor - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-sharing - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-preferences - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-guidelines - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-schema - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-active-learning - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-core - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-ui-kb - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-concept-linking - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-imls-opennlp - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-imls-elg - 27.0-SNAPSHOT + 27.0 de.tudarmstadt.ukp.inception.app inception-imls-hf - 27.0-SNAPSHOT + 27.0 diff --git a/pom.xml b/pom.xml index 342add70145..50739539900 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0-SNAPSHOT + 27.0 pom INCEpTION INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management. @@ -50,7 +50,7 @@ scm:git:https://github.com/inception-project/inception.git scm:git:https://github.com/inception-project/inception.git https://github.com/inception-project/inception - HEAD + inception-27.0 From 25ce3525c9a3817bb9fa1f108c9b0719c4d4ca75 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 7 Mar 2023 12:48:22 +0100 Subject: [PATCH 019/189] [maven-release-plugin] prepare for next development iteration --- inception/inception-active-learning/pom.xml | 2 +- inception/inception-agreement/pom.xml | 2 +- .../inception-annotation-storage/pom.xml | 2 +- inception/inception-api-annotation/pom.xml | 2 +- inception/inception-api-editor/pom.xml | 2 +- inception/inception-api-formats/pom.xml | 2 +- inception/inception-api-render/pom.xml | 2 +- inception/inception-api-schema/pom.xml | 2 +- inception/inception-api/pom.xml | 2 +- inception/inception-app-webapp/pom.xml | 2 +- inception/inception-boot-loader/pom.xml | 2 +- inception/inception-bootstrap/pom.xml | 2 +- inception/inception-brat-editor/pom.xml | 2 +- inception/inception-build/pom.xml | 2 +- inception/inception-concept-linking/pom.xml | 2 +- inception/inception-constraints/pom.xml | 2 +- inception/inception-curation-legacy/pom.xml | 2 +- inception/inception-curation/pom.xml | 2 +- inception/inception-diag/pom.xml | 2 +- inception/inception-diam-editor/pom.xml | 2 +- inception/inception-diam/pom.xml | 2 +- inception/inception-doc/pom.xml | 2 +- inception/inception-docker/pom.xml | 2 +- inception/inception-documents/pom.xml | 2 +- .../pom.xml | 2 +- inception/inception-export/pom.xml | 2 +- inception/inception-external-editor/pom.xml | 2 +- .../inception-external-search-core/pom.xml | 2 +- .../inception-external-search-elastic/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-external-search-solr/pom.xml | 2 +- inception/inception-feature-lookup/pom.xml | 2 +- inception/inception-guidelines/pom.xml | 2 +- inception/inception-html-editor/pom.xml | 2 +- .../inception-html-recogito-editor/pom.xml | 2 +- inception/inception-image/pom.xml | 2 +- inception/inception-imls-elg/pom.xml | 2 +- inception/inception-imls-external/pom.xml | 2 +- inception/inception-imls-hf/pom.xml | 2 +- inception/inception-imls-lapps/pom.xml | 2 +- inception/inception-imls-opennlp/pom.xml | 2 +- inception/inception-imls-stringmatch/pom.xml | 2 +- inception/inception-imls-weblicht/pom.xml | 2 +- inception/inception-io-conll/pom.xml | 2 +- inception/inception-io-html/pom.xml | 2 +- inception/inception-io-imscwb/pom.xml | 2 +- inception/inception-io-intertext/pom.xml | 2 +- inception/inception-io-json/pom.xml | 2 +- inception/inception-io-lif/pom.xml | 2 +- inception/inception-io-nif/pom.xml | 2 +- inception/inception-io-perseus/pom.xml | 2 +- inception/inception-io-tcf/pom.xml | 2 +- inception/inception-io-tei/pom.xml | 2 +- inception/inception-io-text/pom.xml | 2 +- inception/inception-io-webanno-tsv/pom.xml | 2 +- inception/inception-io-xmi/pom.xml | 2 +- inception/inception-io-xml/pom.xml | 2 +- inception/inception-js-api/pom.xml | 2 +- inception/inception-kb-fact-linking/pom.xml | 2 +- inception/inception-kb/pom.xml | 2 +- inception/inception-layer-docmetadata/pom.xml | 2 +- inception/inception-log/pom.xml | 2 +- inception/inception-model-export/pom.xml | 2 +- inception/inception-model/pom.xml | 2 +- inception/inception-pdf-editor/pom.xml | 2 +- inception/inception-pdf-editor2/pom.xml | 2 +- inception/inception-plugin-api/pom.xml | 2 +- inception/inception-plugin-manager/pom.xml | 2 +- inception/inception-plugin-parent/pom.xml | 2 +- inception/inception-preferences/pom.xml | 2 +- inception/inception-project-export/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../inception-project-initializers/pom.xml | 2 +- inception/inception-project/pom.xml | 2 +- .../inception-recommendation-api/pom.xml | 2 +- inception/inception-recommendation/pom.xml | 2 +- inception/inception-remote/pom.xml | 2 +- inception/inception-review-editor/pom.xml | 2 +- inception/inception-scheduling/pom.xml | 2 +- inception/inception-schema/pom.xml | 2 +- inception/inception-search-core/pom.xml | 2 +- inception/inception-search-mtas/pom.xml | 2 +- inception/inception-security/pom.xml | 2 +- inception/inception-sharing/pom.xml | 2 +- .../inception-support-standalone/pom.xml | 2 +- inception/inception-support/pom.xml | 2 +- inception/inception-telemetry/pom.xml | 2 +- inception/inception-testing/pom.xml | 2 +- inception/inception-tutorial/pom.xml | 2 +- inception/inception-ui-agreement/pom.xml | 2 +- inception/inception-ui-annotation/pom.xml | 2 +- inception/inception-ui-core/pom.xml | 2 +- inception/inception-ui-curation/pom.xml | 2 +- .../inception-ui-dashboard-activity/pom.xml | 2 +- inception/inception-ui-dashboard/pom.xml | 2 +- .../inception-ui-external-search/pom.xml | 2 +- inception/inception-ui-kb/pom.xml | 2 +- inception/inception-ui-project/pom.xml | 2 +- inception/inception-ui-search/pom.xml | 2 +- inception/inception-ui-tagsets/pom.xml | 2 +- inception/inception-versioning/pom.xml | 2 +- inception/inception-websocket/pom.xml | 2 +- inception/inception-workload-dynamic/pom.xml | 2 +- inception/inception-workload-matrix/pom.xml | 2 +- inception/inception-workload-ui/pom.xml | 2 +- inception/inception-workload/pom.xml | 2 +- inception/pom.xml | 214 +++++++++--------- pom.xml | 4 +- 112 files changed, 219 insertions(+), 219 deletions(-) diff --git a/inception/inception-active-learning/pom.xml b/inception/inception-active-learning/pom.xml index 52ced15cf66..66e54a84a1e 100644 --- a/inception/inception-active-learning/pom.xml +++ b/inception/inception-active-learning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT .. inception-active-learning diff --git a/inception/inception-agreement/pom.xml b/inception/inception-agreement/pom.xml index 1b4eb1261bb..5e78047c6eb 100644 --- a/inception/inception-agreement/pom.xml +++ b/inception/inception-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-agreement INCEpTION - Core - Agreement diff --git a/inception/inception-annotation-storage/pom.xml b/inception/inception-annotation-storage/pom.xml index aeeab285f01..3f8fdaa94d4 100644 --- a/inception/inception-annotation-storage/pom.xml +++ b/inception/inception-annotation-storage/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-annotation-storage INCEpTION - Core - Annotation Storage diff --git a/inception/inception-api-annotation/pom.xml b/inception/inception-api-annotation/pom.xml index 768aa2c8357..eb9589b896c 100644 --- a/inception/inception-api-annotation/pom.xml +++ b/inception/inception-api-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-api-annotation INCEpTION - Core - Annotation API diff --git a/inception/inception-api-editor/pom.xml b/inception/inception-api-editor/pom.xml index ab026d8fcdb..3097f4385d6 100644 --- a/inception/inception-api-editor/pom.xml +++ b/inception/inception-api-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-api-editor INCEpTION - Core - Annotation editor API diff --git a/inception/inception-api-formats/pom.xml b/inception/inception-api-formats/pom.xml index 9d1a5d804ad..390e867f7f8 100644 --- a/inception/inception-api-formats/pom.xml +++ b/inception/inception-api-formats/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-api-formats INCEpTION - Core - Formats API diff --git a/inception/inception-api-render/pom.xml b/inception/inception-api-render/pom.xml index fb8596090e1..7976ed7f496 100644 --- a/inception/inception-api-render/pom.xml +++ b/inception/inception-api-render/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-api-render INCEpTION - Core - Annotation rendering API diff --git a/inception/inception-api-schema/pom.xml b/inception/inception-api-schema/pom.xml index 3c177a6aebf..4af0b45883a 100644 --- a/inception/inception-api-schema/pom.xml +++ b/inception/inception-api-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-api-schema INCEpTION - Core - Annotation Schema API diff --git a/inception/inception-api/pom.xml b/inception/inception-api/pom.xml index c1b08b59f01..347f0dfb7b7 100644 --- a/inception/inception-api/pom.xml +++ b/inception/inception-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-api INCEpTION - Core - API diff --git a/inception/inception-app-webapp/pom.xml b/inception/inception-app-webapp/pom.xml index d82e413a474..26005415126 100644 --- a/inception/inception-app-webapp/pom.xml +++ b/inception/inception-app-webapp/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT .. diff --git a/inception/inception-boot-loader/pom.xml b/inception/inception-boot-loader/pom.xml index 01318506569..b7e9ffb25ab 100644 --- a/inception/inception-boot-loader/pom.xml +++ b/inception/inception-boot-loader/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-boot-loader INCEpTION - Boot loader diff --git a/inception/inception-bootstrap/pom.xml b/inception/inception-bootstrap/pom.xml index 8ce5ab8a44e..1ffb589243f 100644 --- a/inception/inception-bootstrap/pom.xml +++ b/inception/inception-bootstrap/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-bootstrap diff --git a/inception/inception-brat-editor/pom.xml b/inception/inception-brat-editor/pom.xml index 251377d8597..6ca3f78c7fa 100644 --- a/inception/inception-brat-editor/pom.xml +++ b/inception/inception-brat-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-brat-editor INCEpTION - Editor - brat diff --git a/inception/inception-build/pom.xml b/inception/inception-build/pom.xml index 9fcece4208e..6d01c43916f 100644 --- a/inception/inception-build/pom.xml +++ b/inception/inception-build/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-build INCEpTION - Build resources diff --git a/inception/inception-concept-linking/pom.xml b/inception/inception-concept-linking/pom.xml index db9489f5641..0cc79fda871 100644 --- a/inception/inception-concept-linking/pom.xml +++ b/inception/inception-concept-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-concept-linking INCEpTION - Concept Linking diff --git a/inception/inception-constraints/pom.xml b/inception/inception-constraints/pom.xml index b0f3c4ddc4e..37c9ec122f0 100644 --- a/inception/inception-constraints/pom.xml +++ b/inception/inception-constraints/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-constraints INCEpTION - Core - Constraints diff --git a/inception/inception-curation-legacy/pom.xml b/inception/inception-curation-legacy/pom.xml index de433daa782..bc3e44e387c 100644 --- a/inception/inception-curation-legacy/pom.xml +++ b/inception/inception-curation-legacy/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-curation-legacy INCEpTION - Core - Curation diff --git a/inception/inception-curation/pom.xml b/inception/inception-curation/pom.xml index 70b2420eaf3..64bc5f3d546 100644 --- a/inception/inception-curation/pom.xml +++ b/inception/inception-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-curation INCEpTION - Curation diff --git a/inception/inception-diag/pom.xml b/inception/inception-diag/pom.xml index 7a1ebd5ba53..6b89a78391c 100644 --- a/inception/inception-diag/pom.xml +++ b/inception/inception-diag/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-diag INCEpTION - Core - Diagnostics diff --git a/inception/inception-diam-editor/pom.xml b/inception/inception-diam-editor/pom.xml index 0fd3b5608c3..a2185e102d1 100644 --- a/inception/inception-diam-editor/pom.xml +++ b/inception/inception-diam-editor/pom.xml @@ -21,7 +21,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-diam-editor INCEpTION - DIAM - Editor diff --git a/inception/inception-diam/pom.xml b/inception/inception-diam/pom.xml index b9ecd094ec9..04dd7680f7c 100644 --- a/inception/inception-diam/pom.xml +++ b/inception/inception-diam/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-diam diff --git a/inception/inception-doc/pom.xml b/inception/inception-doc/pom.xml index 127ea98a6ad..b44750b0e98 100644 --- a/inception/inception-doc/pom.xml +++ b/inception/inception-doc/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-doc jar diff --git a/inception/inception-docker/pom.xml b/inception/inception-docker/pom.xml index e4446fcb20b..125dd96b77c 100644 --- a/inception/inception-docker/pom.xml +++ b/inception/inception-docker/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT .. inception-docker diff --git a/inception/inception-documents/pom.xml b/inception/inception-documents/pom.xml index bccc208a795..da9106d9a44 100644 --- a/inception/inception-documents/pom.xml +++ b/inception/inception-documents/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-documents INCEpTION - Core - Persistence API diff --git a/inception/inception-example-imls-data-majority/pom.xml b/inception/inception-example-imls-data-majority/pom.xml index 694eeb120d1..7d1848525ef 100644 --- a/inception/inception-example-imls-data-majority/pom.xml +++ b/inception/inception-example-imls-data-majority/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-plugin-parent - 27.0 + 27.1-SNAPSHOT ../inception-plugin-parent inception-example-imls-data-majority diff --git a/inception/inception-export/pom.xml b/inception/inception-export/pom.xml index eaa8d0121d5..bfc1c2ae7de 100644 --- a/inception/inception-export/pom.xml +++ b/inception/inception-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-export INCEpTION - Core - Export diff --git a/inception/inception-external-editor/pom.xml b/inception/inception-external-editor/pom.xml index 14f2489971d..ec17aed696d 100644 --- a/inception/inception-external-editor/pom.xml +++ b/inception/inception-external-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-external-editor INCEpTION - Editor - External editor diff --git a/inception/inception-external-search-core/pom.xml b/inception/inception-external-search-core/pom.xml index 83d3039b72f..00c40720941 100644 --- a/inception/inception-external-search-core/pom.xml +++ b/inception/inception-external-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-external-search-core INCEpTION - External Search - Core diff --git a/inception/inception-external-search-elastic/pom.xml b/inception/inception-external-search-elastic/pom.xml index 57bc7259c92..7f517d222cd 100644 --- a/inception/inception-external-search-elastic/pom.xml +++ b/inception/inception-external-search-elastic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-external-search-elastic INCEpTION - External Search - Elastic Search diff --git a/inception/inception-external-search-opensearch/pom.xml b/inception/inception-external-search-opensearch/pom.xml index 0ec8b10eba5..d98510f3105 100644 --- a/inception/inception-external-search-opensearch/pom.xml +++ b/inception/inception-external-search-opensearch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-external-search-opensearch INCEpTION - External Search - OpenSearch diff --git a/inception/inception-external-search-pubannotation/pom.xml b/inception/inception-external-search-pubannotation/pom.xml index 30abcef76bf..96ddcfb83c7 100644 --- a/inception/inception-external-search-pubannotation/pom.xml +++ b/inception/inception-external-search-pubannotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-external-search-pubannotation INCEpTION - External Search - PubAnnotation diff --git a/inception/inception-external-search-solr/pom.xml b/inception/inception-external-search-solr/pom.xml index 070d194ad65..8536a88b06d 100644 --- a/inception/inception-external-search-solr/pom.xml +++ b/inception/inception-external-search-solr/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-external-search-solr INCEpTION - External Search - Solr diff --git a/inception/inception-feature-lookup/pom.xml b/inception/inception-feature-lookup/pom.xml index 6cdeb76786d..708b241e055 100644 --- a/inception/inception-feature-lookup/pom.xml +++ b/inception/inception-feature-lookup/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-feature-lookup INCEpTION - Lookup Feature Support diff --git a/inception/inception-guidelines/pom.xml b/inception/inception-guidelines/pom.xml index e9e1eddd903..677449b6666 100644 --- a/inception/inception-guidelines/pom.xml +++ b/inception/inception-guidelines/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-guidelines INCEpTION - Core - Annotation Guidelines diff --git a/inception/inception-html-editor/pom.xml b/inception/inception-html-editor/pom.xml index d62a6d82de5..0655cf4c825 100644 --- a/inception/inception-html-editor/pom.xml +++ b/inception/inception-html-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-html-editor INCEpTION - Editor - HTML + Annotator JS diff --git a/inception/inception-html-recogito-editor/pom.xml b/inception/inception-html-recogito-editor/pom.xml index b0d5f8647d7..4c001eb6481 100644 --- a/inception/inception-html-recogito-editor/pom.xml +++ b/inception/inception-html-recogito-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-html-recogito-editor INCEpTION - Editor - HTML + Recogito JS (${recogitojs.version}) diff --git a/inception/inception-image/pom.xml b/inception/inception-image/pom.xml index 1675ed4ecbd..5d9bbd8ee98 100644 --- a/inception/inception-image/pom.xml +++ b/inception/inception-image/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-image INCEpTION - Image Support diff --git a/inception/inception-imls-elg/pom.xml b/inception/inception-imls-elg/pom.xml index 5a9d9202575..e7214c28d5b 100644 --- a/inception/inception-imls-elg/pom.xml +++ b/inception/inception-imls-elg/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-elg diff --git a/inception/inception-imls-external/pom.xml b/inception/inception-imls-external/pom.xml index 3d8417ce363..10e3effe15e 100644 --- a/inception/inception-imls-external/pom.xml +++ b/inception/inception-imls-external/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-external diff --git a/inception/inception-imls-hf/pom.xml b/inception/inception-imls-hf/pom.xml index 2105b7da516..b2f5183513c 100644 --- a/inception/inception-imls-hf/pom.xml +++ b/inception/inception-imls-hf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-hf diff --git a/inception/inception-imls-lapps/pom.xml b/inception/inception-imls-lapps/pom.xml index a44885b70c0..05a5d21bd6c 100644 --- a/inception/inception-imls-lapps/pom.xml +++ b/inception/inception-imls-lapps/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-lapps diff --git a/inception/inception-imls-opennlp/pom.xml b/inception/inception-imls-opennlp/pom.xml index 02008e43423..ecc9bf2473b 100644 --- a/inception/inception-imls-opennlp/pom.xml +++ b/inception/inception-imls-opennlp/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-opennlp INCEpTION - ML - OpenNLP (v ${opennlp.version}) diff --git a/inception/inception-imls-stringmatch/pom.xml b/inception/inception-imls-stringmatch/pom.xml index 43d4a980580..90390e10de3 100644 --- a/inception/inception-imls-stringmatch/pom.xml +++ b/inception/inception-imls-stringmatch/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-stringmatch INCEpTION - ML - String Matching diff --git a/inception/inception-imls-weblicht/pom.xml b/inception/inception-imls-weblicht/pom.xml index c719e566cc6..3dae513061f 100644 --- a/inception/inception-imls-weblicht/pom.xml +++ b/inception/inception-imls-weblicht/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-imls-weblicht diff --git a/inception/inception-io-conll/pom.xml b/inception/inception-io-conll/pom.xml index 248ebeab185..d6c5c0b661c 100644 --- a/inception/inception-io-conll/pom.xml +++ b/inception/inception-io-conll/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-conll INCEpTION - IO - CONLL diff --git a/inception/inception-io-html/pom.xml b/inception/inception-io-html/pom.xml index e051669d0e7..0c66ab57435 100644 --- a/inception/inception-io-html/pom.xml +++ b/inception/inception-io-html/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-html INCEpTION - IO - HTML diff --git a/inception/inception-io-imscwb/pom.xml b/inception/inception-io-imscwb/pom.xml index 03e958b3d06..185030b17f1 100644 --- a/inception/inception-io-imscwb/pom.xml +++ b/inception/inception-io-imscwb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-imscwb INCEpTION - IO - IMS CWB diff --git a/inception/inception-io-intertext/pom.xml b/inception/inception-io-intertext/pom.xml index 6da08d9288d..30b39298f6f 100644 --- a/inception/inception-io-intertext/pom.xml +++ b/inception/inception-io-intertext/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-intertext INCEpTION - IO - InterText diff --git a/inception/inception-io-json/pom.xml b/inception/inception-io-json/pom.xml index b13d69faa46..5e82e257d0f 100644 --- a/inception/inception-io-json/pom.xml +++ b/inception/inception-io-json/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-json INCEpTION - IO - JSON diff --git a/inception/inception-io-lif/pom.xml b/inception/inception-io-lif/pom.xml index 4207f139c09..ad828d18b00 100644 --- a/inception/inception-io-lif/pom.xml +++ b/inception/inception-io-lif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-lif INCEpTION - IO - LIF (deprecated) diff --git a/inception/inception-io-nif/pom.xml b/inception/inception-io-nif/pom.xml index 54a563a8728..8e49af58744 100644 --- a/inception/inception-io-nif/pom.xml +++ b/inception/inception-io-nif/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-nif INCEpTION - IO - NIF diff --git a/inception/inception-io-perseus/pom.xml b/inception/inception-io-perseus/pom.xml index 863309d0398..5346fed187f 100644 --- a/inception/inception-io-perseus/pom.xml +++ b/inception/inception-io-perseus/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-perseus INCEpTION - IO - Perseus diff --git a/inception/inception-io-tcf/pom.xml b/inception/inception-io-tcf/pom.xml index 28fa828c47d..ed9f5a142f4 100644 --- a/inception/inception-io-tcf/pom.xml +++ b/inception/inception-io-tcf/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-tcf INCEpTION - IO - TCF diff --git a/inception/inception-io-tei/pom.xml b/inception/inception-io-tei/pom.xml index 106b8f403c4..935fa624b17 100644 --- a/inception/inception-io-tei/pom.xml +++ b/inception/inception-io-tei/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-tei INCEpTION - IO - TEI diff --git a/inception/inception-io-text/pom.xml b/inception/inception-io-text/pom.xml index c0fe331ceb4..a526670fc2d 100644 --- a/inception/inception-io-text/pom.xml +++ b/inception/inception-io-text/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-text INCEpTION - IO - Text diff --git a/inception/inception-io-webanno-tsv/pom.xml b/inception/inception-io-webanno-tsv/pom.xml index 8f66ee11656..17bca7a13e0 100644 --- a/inception/inception-io-webanno-tsv/pom.xml +++ b/inception/inception-io-webanno-tsv/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-webanno-tsv INCEpTION - IO - TSV diff --git a/inception/inception-io-xmi/pom.xml b/inception/inception-io-xmi/pom.xml index 4f52ca817bf..5a706a5353d 100644 --- a/inception/inception-io-xmi/pom.xml +++ b/inception/inception-io-xmi/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-xmi INCEpTION - IO - XMI diff --git a/inception/inception-io-xml/pom.xml b/inception/inception-io-xml/pom.xml index 04d61abda4a..34c6d40a9c6 100644 --- a/inception/inception-io-xml/pom.xml +++ b/inception/inception-io-xml/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-io-xml INCEpTION - IO - XML diff --git a/inception/inception-js-api/pom.xml b/inception/inception-js-api/pom.xml index 36e8000e4f9..3cafcad09d5 100644 --- a/inception/inception-js-api/pom.xml +++ b/inception/inception-js-api/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-js-api diff --git a/inception/inception-kb-fact-linking/pom.xml b/inception/inception-kb-fact-linking/pom.xml index cbc32e97456..a45d3311266 100644 --- a/inception/inception-kb-fact-linking/pom.xml +++ b/inception/inception-kb-fact-linking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-kb-fact-linking INCEpTION - Knowledge Base - Fact Linking diff --git a/inception/inception-kb/pom.xml b/inception/inception-kb/pom.xml index 2bc66ff3906..1e77920d690 100644 --- a/inception/inception-kb/pom.xml +++ b/inception/inception-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-kb INCEpTION - Knowledge Base - Core diff --git a/inception/inception-layer-docmetadata/pom.xml b/inception/inception-layer-docmetadata/pom.xml index 32ff686a6e2..8431a19c6d9 100644 --- a/inception/inception-layer-docmetadata/pom.xml +++ b/inception/inception-layer-docmetadata/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-layer-docmetadata INCEpTION - Document Metadata Support diff --git a/inception/inception-log/pom.xml b/inception/inception-log/pom.xml index ee54e2fd625..29f29a006b8 100644 --- a/inception/inception-log/pom.xml +++ b/inception/inception-log/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-log INCEpTION - Log diff --git a/inception/inception-model-export/pom.xml b/inception/inception-model-export/pom.xml index cc88be6aa1d..03a01b7e62f 100644 --- a/inception/inception-model-export/pom.xml +++ b/inception/inception-model-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-model-export INCEpTION - Core - Export Model diff --git a/inception/inception-model/pom.xml b/inception/inception-model/pom.xml index 3f9837658e9..8c9dfefeb53 100644 --- a/inception/inception-model/pom.xml +++ b/inception/inception-model/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-model INCEpTION - Core - Model diff --git a/inception/inception-pdf-editor/pom.xml b/inception/inception-pdf-editor/pom.xml index d9fa30b2a89..065af0118c1 100644 --- a/inception/inception-pdf-editor/pom.xml +++ b/inception/inception-pdf-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}) inception-pdf-editor diff --git a/inception/inception-pdf-editor2/pom.xml b/inception/inception-pdf-editor2/pom.xml index d90578a3b9a..fc086363542 100644 --- a/inception/inception-pdf-editor2/pom.xml +++ b/inception/inception-pdf-editor2/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT INCEpTION - Editor - PDF (pdfbox ${pdfbox.version}; pdfjs ${pdfjs.version}) inception-pdf-editor2 diff --git a/inception/inception-plugin-api/pom.xml b/inception/inception-plugin-api/pom.xml index 0275709a31b..bbeddb73131 100644 --- a/inception/inception-plugin-api/pom.xml +++ b/inception/inception-plugin-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-plugin-api INCEpTION - Plugin API diff --git a/inception/inception-plugin-manager/pom.xml b/inception/inception-plugin-manager/pom.xml index 2e4b08802ac..771a8f7c4ac 100644 --- a/inception/inception-plugin-manager/pom.xml +++ b/inception/inception-plugin-manager/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-plugin-manager INCEpTION - Plugin manager diff --git a/inception/inception-plugin-parent/pom.xml b/inception/inception-plugin-parent/pom.xml index aa48879c495..4ad109581a5 100644 --- a/inception/inception-plugin-parent/pom.xml +++ b/inception/inception-plugin-parent/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-plugin-parent INCEpTION - Plugin Parent POM diff --git a/inception/inception-preferences/pom.xml b/inception/inception-preferences/pom.xml index d412e79ecdf..faafd859519 100644 --- a/inception/inception-preferences/pom.xml +++ b/inception/inception-preferences/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-preferences INCEpTION - Preferences diff --git a/inception/inception-project-export/pom.xml b/inception/inception-project-export/pom.xml index 209b6d81f9b..34c376ce153 100644 --- a/inception/inception-project-export/pom.xml +++ b/inception/inception-project-export/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project-export INCEpTION - Core - Project export diff --git a/inception/inception-project-initializers-basic/pom.xml b/inception/inception-project-initializers-basic/pom.xml index e37852ebc80..ba0fe2fe14d 100644 --- a/inception/inception-project-initializers-basic/pom.xml +++ b/inception/inception-project-initializers-basic/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project-initializers-basic INCEpTION - Core - Project initializers - Basic Span / Relation diff --git a/inception/inception-project-initializers-doclabeling/pom.xml b/inception/inception-project-initializers-doclabeling/pom.xml index c53621c772c..958d8a964b2 100644 --- a/inception/inception-project-initializers-doclabeling/pom.xml +++ b/inception/inception-project-initializers-doclabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project-initializers-doclabeling INCEpTION - Core - Project initializers - Document Labeling diff --git a/inception/inception-project-initializers-sentencelabeling/pom.xml b/inception/inception-project-initializers-sentencelabeling/pom.xml index 0d13afb22a8..f6e9d8751f9 100644 --- a/inception/inception-project-initializers-sentencelabeling/pom.xml +++ b/inception/inception-project-initializers-sentencelabeling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project-initializers-sentencelabeling INCEpTION - Core - Project initializers - Sentence Labeling diff --git a/inception/inception-project-initializers-wikidatalinking/pom.xml b/inception/inception-project-initializers-wikidatalinking/pom.xml index cd453298c29..d9d179fb328 100644 --- a/inception/inception-project-initializers-wikidatalinking/pom.xml +++ b/inception/inception-project-initializers-wikidatalinking/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project-initializers-wikidatalinking INCEpTION - Core - Project initializers - Entity Linking (Wikidata) diff --git a/inception/inception-project-initializers/pom.xml b/inception/inception-project-initializers/pom.xml index 7d6977565ac..e14930f3c18 100644 --- a/inception/inception-project-initializers/pom.xml +++ b/inception/inception-project-initializers/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project-initializers INCEpTION - Core - Project initializers diff --git a/inception/inception-project/pom.xml b/inception/inception-project/pom.xml index fa5f1400a48..1e1dfc6d1af 100644 --- a/inception/inception-project/pom.xml +++ b/inception/inception-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-project INCEpTION - Core - Project diff --git a/inception/inception-recommendation-api/pom.xml b/inception/inception-recommendation-api/pom.xml index 203fb356e1a..1c3fc0fe8e0 100644 --- a/inception/inception-recommendation-api/pom.xml +++ b/inception/inception-recommendation-api/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-recommendation-api INCEpTION - Recommendation - API diff --git a/inception/inception-recommendation/pom.xml b/inception/inception-recommendation/pom.xml index b08536edb06..96414805043 100644 --- a/inception/inception-recommendation/pom.xml +++ b/inception/inception-recommendation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-recommendation INCEpTION - Recommendation - Core diff --git a/inception/inception-remote/pom.xml b/inception/inception-remote/pom.xml index f1edaf8df2d..553399b24dc 100644 --- a/inception/inception-remote/pom.xml +++ b/inception/inception-remote/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-remote INCEpTION - Core - Remote API diff --git a/inception/inception-review-editor/pom.xml b/inception/inception-review-editor/pom.xml index d4f29231595..3a7055e9dc2 100644 --- a/inception/inception-review-editor/pom.xml +++ b/inception/inception-review-editor/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT INCEpTION - Editor - Review inception-review-editor diff --git a/inception/inception-scheduling/pom.xml b/inception/inception-scheduling/pom.xml index e6a9fc2d8c5..611fd36e156 100644 --- a/inception/inception-scheduling/pom.xml +++ b/inception/inception-scheduling/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-scheduling INCEpTION - Scheduling diff --git a/inception/inception-schema/pom.xml b/inception/inception-schema/pom.xml index 7f667e514b7..0bfce233f09 100644 --- a/inception/inception-schema/pom.xml +++ b/inception/inception-schema/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-schema INCEpTION - Core - Annotation Schema diff --git a/inception/inception-search-core/pom.xml b/inception/inception-search-core/pom.xml index ed5c23a1a16..4cf185e342d 100644 --- a/inception/inception-search-core/pom.xml +++ b/inception/inception-search-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-search-core INCEpTION - Search - Core diff --git a/inception/inception-search-mtas/pom.xml b/inception/inception-search-mtas/pom.xml index 5bb2e25918e..77fe0754c38 100644 --- a/inception/inception-search-mtas/pom.xml +++ b/inception/inception-search-mtas/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-search-mtas INCEpTION - Search - MTAS diff --git a/inception/inception-security/pom.xml b/inception/inception-security/pom.xml index e3a9c235e71..77896d75e55 100644 --- a/inception/inception-security/pom.xml +++ b/inception/inception-security/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-security INCEpTION - Core - Security diff --git a/inception/inception-sharing/pom.xml b/inception/inception-sharing/pom.xml index 37a7b0edbe7..6120cc21de5 100644 --- a/inception/inception-sharing/pom.xml +++ b/inception/inception-sharing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-sharing INCEpTION - Sharing diff --git a/inception/inception-support-standalone/pom.xml b/inception/inception-support-standalone/pom.xml index b49b9569e7e..bf5878f8cfb 100644 --- a/inception/inception-support-standalone/pom.xml +++ b/inception/inception-support-standalone/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-support-standalone INCEpTION - Core - Support for standalone mode diff --git a/inception/inception-support/pom.xml b/inception/inception-support/pom.xml index c5db409673c..e4cbdc69a9e 100644 --- a/inception/inception-support/pom.xml +++ b/inception/inception-support/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-support INCEpTION - Support library diff --git a/inception/inception-telemetry/pom.xml b/inception/inception-telemetry/pom.xml index 65d686c88ea..07fe621a80b 100644 --- a/inception/inception-telemetry/pom.xml +++ b/inception/inception-telemetry/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-telemetry INCEpTION - Telemetry diff --git a/inception/inception-testing/pom.xml b/inception/inception-testing/pom.xml index 3d6df4296f8..a3981937586 100644 --- a/inception/inception-testing/pom.xml +++ b/inception/inception-testing/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-testing INCEpTION - Test Support library diff --git a/inception/inception-tutorial/pom.xml b/inception/inception-tutorial/pom.xml index b382d61ac0d..39f91159792 100644 --- a/inception/inception-tutorial/pom.xml +++ b/inception/inception-tutorial/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-tutorial INCEpTION - UI - Tutorial diff --git a/inception/inception-ui-agreement/pom.xml b/inception/inception-ui-agreement/pom.xml index b60da688fa7..26e01a9917f 100644 --- a/inception/inception-ui-agreement/pom.xml +++ b/inception/inception-ui-agreement/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-agreement INCEpTION - UI - Agreement diff --git a/inception/inception-ui-annotation/pom.xml b/inception/inception-ui-annotation/pom.xml index 59349150777..7c14e0c69ff 100644 --- a/inception/inception-ui-annotation/pom.xml +++ b/inception/inception-ui-annotation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-annotation INCEpTION - UI - Annotation diff --git a/inception/inception-ui-core/pom.xml b/inception/inception-ui-core/pom.xml index 1f6ba1f97d8..12235c11f7d 100644 --- a/inception/inception-ui-core/pom.xml +++ b/inception/inception-ui-core/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-core INCEpTION - UI - Core diff --git a/inception/inception-ui-curation/pom.xml b/inception/inception-ui-curation/pom.xml index 24f2e801427..e27b7f40347 100644 --- a/inception/inception-ui-curation/pom.xml +++ b/inception/inception-ui-curation/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-curation INCEpTION - UI - Curation diff --git a/inception/inception-ui-dashboard-activity/pom.xml b/inception/inception-ui-dashboard-activity/pom.xml index 4e010e8c5d1..d29cb030194 100644 --- a/inception/inception-ui-dashboard-activity/pom.xml +++ b/inception/inception-ui-dashboard-activity/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-dashboard-activity INCEpTION - Dashboard - Recent activity diff --git a/inception/inception-ui-dashboard/pom.xml b/inception/inception-ui-dashboard/pom.xml index 27f4e008cbf..0cd9930adac 100644 --- a/inception/inception-ui-dashboard/pom.xml +++ b/inception/inception-ui-dashboard/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-dashboard INCEpTION - UI - Dashboard diff --git a/inception/inception-ui-external-search/pom.xml b/inception/inception-ui-external-search/pom.xml index 28f7a083c75..3eb48eab43d 100644 --- a/inception/inception-ui-external-search/pom.xml +++ b/inception/inception-ui-external-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-external-search INCEpTION - External Search - UI diff --git a/inception/inception-ui-kb/pom.xml b/inception/inception-ui-kb/pom.xml index 85b9e6dc423..99e92ce8c60 100644 --- a/inception/inception-ui-kb/pom.xml +++ b/inception/inception-ui-kb/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-kb INCEpTION - Knowledge Base - UI diff --git a/inception/inception-ui-project/pom.xml b/inception/inception-ui-project/pom.xml index 941de00453d..645c4f2ff57 100644 --- a/inception/inception-ui-project/pom.xml +++ b/inception/inception-ui-project/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-project INCEpTION - UI - Project diff --git a/inception/inception-ui-search/pom.xml b/inception/inception-ui-search/pom.xml index 8018c230c4f..4c9685b038e 100644 --- a/inception/inception-ui-search/pom.xml +++ b/inception/inception-ui-search/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-search INCEpTION - Search - UI diff --git a/inception/inception-ui-tagsets/pom.xml b/inception/inception-ui-tagsets/pom.xml index 47094eb6a39..86dfff7e24b 100644 --- a/inception/inception-ui-tagsets/pom.xml +++ b/inception/inception-ui-tagsets/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-ui-tagsets INCEpTION - UI - Tagsets diff --git a/inception/inception-versioning/pom.xml b/inception/inception-versioning/pom.xml index 92184ca8213..d6cc4c9b8a9 100644 --- a/inception/inception-versioning/pom.xml +++ b/inception/inception-versioning/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-versioning INCEpTION - Versioning diff --git a/inception/inception-websocket/pom.xml b/inception/inception-websocket/pom.xml index e5f3ead2f91..146106210e5 100644 --- a/inception/inception-websocket/pom.xml +++ b/inception/inception-websocket/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception-app - 27.0 + 27.1-SNAPSHOT inception-websocket INCEpTION - Websocket diff --git a/inception/inception-workload-dynamic/pom.xml b/inception/inception-workload-dynamic/pom.xml index 4602634c669..dcd76e44e67 100644 --- a/inception/inception-workload-dynamic/pom.xml +++ b/inception/inception-workload-dynamic/pom.xml @@ -19,7 +19,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-workload-dynamic diff --git a/inception/inception-workload-matrix/pom.xml b/inception/inception-workload-matrix/pom.xml index 2a60b7f0407..6d7877192ab 100644 --- a/inception/inception-workload-matrix/pom.xml +++ b/inception/inception-workload-matrix/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-workload-matrix diff --git a/inception/inception-workload-ui/pom.xml b/inception/inception-workload-ui/pom.xml index 85a0ccccbbc..8fd7d24141c 100644 --- a/inception/inception-workload-ui/pom.xml +++ b/inception/inception-workload-ui/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-workload-ui diff --git a/inception/inception-workload/pom.xml b/inception/inception-workload/pom.xml index f92980d9d92..ebcbb9d5fe3 100644 --- a/inception/inception-workload/pom.xml +++ b/inception/inception-workload/pom.xml @@ -20,7 +20,7 @@ inception-app de.tudarmstadt.ukp.inception.app - 27.0 + 27.1-SNAPSHOT 4.0.0 inception-workload diff --git a/inception/pom.xml b/inception/pom.xml index c2b15f1b3b6..d792892d4bd 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -20,7 +20,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0 + 27.1-SNAPSHOT inception-app pom @@ -45,7 +45,7 @@ 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-27.0 + HEAD @@ -517,212 +517,212 @@ de.tudarmstadt.ukp.inception.app inception-doc - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-agreement - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-agreement - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-annotation - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-project - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-tagsets - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-curation - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-curation - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-search - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-dynamic - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-matrix - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-workload-ui - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-editor - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-core - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-pubannotation - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-elastic - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-opensearch - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-external-search-solr - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-external-search - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-dashboard - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-dashboard-activity - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-kb - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-kb-fact-linking - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-html-editor - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-html-recogito-editor - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-pdf-editor - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-pdf-editor2 - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-recommendation - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-recommendation-api - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-review-editor - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-sharing - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-preferences - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-guidelines - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-schema - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-active-learning - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-core - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-ui-kb - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-concept-linking - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-opennlp - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-elg - 27.0 + 27.1-SNAPSHOT de.tudarmstadt.ukp.inception.app inception-imls-hf - 27.0 + 27.1-SNAPSHOT diff --git a/pom.xml b/pom.xml index 50739539900..4ac3f663ce0 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ de.tudarmstadt.ukp.inception.app inception - 27.0 + 27.1-SNAPSHOT pom INCEpTION INCEpTION provides a semantic annotation platform offering intelligent annotation assistance and knowledge management. @@ -50,7 +50,7 @@ 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-27.0 + HEAD From 260d2abeb9b5c78ead68a4fe383d7c124f69110c Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 7 Mar 2023 18:47:28 +0100 Subject: [PATCH 020/189] No issue: Try fixing build on Windows. --- .../inception-project-export/src/main/ts_template/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inception/inception-project-export/src/main/ts_template/package.json b/inception/inception-project-export/src/main/ts_template/package.json index 388ebc629af..10b7fe6d456 100644 --- a/inception/inception-project-export/src/main/ts_template/package.json +++ b/inception/inception-project-export/src/main/ts_template/package.json @@ -6,7 +6,7 @@ "homepage": "https://github.com/inception-project/inception#readme", "scripts": { "build": "node build.mjs", - "test": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'" + "test": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"" }, "repository": { "type": "git", From 4d0ca3e29b0a4bc0ada9bb6943383648c8d64f35 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 7 Mar 2023 20:13:47 +0100 Subject: [PATCH 021/189] No issue: Try fixing build on Windows. --- .../inception-brat-editor/src/main/ts_template/package.json | 2 +- .../inception-diam-editor/src/main/ts_template/package.json | 2 +- inception/inception-diam/src/main/ts_template/package.json | 2 +- inception/inception-js-api/src/main/ts_template/package.json | 2 +- .../inception-recommendation/src/main/ts_template/package.json | 2 +- .../src/main/ts_template/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/inception/inception-brat-editor/src/main/ts_template/package.json b/inception/inception-brat-editor/src/main/ts_template/package.json index 401727e2bc6..22e83d5e3cc 100644 --- a/inception/inception-brat-editor/src/main/ts_template/package.json +++ b/inception/inception-brat-editor/src/main/ts_template/package.json @@ -5,7 +5,7 @@ "license": "(MIT AND Apache-2.0)", "scripts": { "build": "node build.mjs", - "test": "mocha -r esbuild-runner-plugins/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'" + "test": "mocha -r esbuild-runner-plugins/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"" }, "repository": { "type": "git", diff --git a/inception/inception-diam-editor/src/main/ts_template/package.json b/inception/inception-diam-editor/src/main/ts_template/package.json index 95271b81d63..391882d010d 100644 --- a/inception/inception-diam-editor/src/main/ts_template/package.json +++ b/inception/inception-diam-editor/src/main/ts_template/package.json @@ -7,7 +7,7 @@ "scripts": { "build": "node build.mjs", "test": "", - "test-off": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'" + "test-off": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"" }, "repository": { "type": "git", diff --git a/inception/inception-diam/src/main/ts_template/package.json b/inception/inception-diam/src/main/ts_template/package.json index 6e544191553..c3b1fed0a05 100644 --- a/inception/inception-diam/src/main/ts_template/package.json +++ b/inception/inception-diam/src/main/ts_template/package.json @@ -10,7 +10,7 @@ }, "scripts": { "build": "node build.mjs", - "test": "mocha -r esbuild-runner-plugins/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'" + "test": "mocha -r esbuild-runner-plugins/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"" }, "dependencies": { "@inception-project/inception-js-api": "${semver}", diff --git a/inception/inception-js-api/src/main/ts_template/package.json b/inception/inception-js-api/src/main/ts_template/package.json index 2ad4dea8f98..61be672bf58 100644 --- a/inception/inception-js-api/src/main/ts_template/package.json +++ b/inception/inception-js-api/src/main/ts_template/package.json @@ -10,7 +10,7 @@ }, "scripts": { "build": "node build.mjs", - "test": "mocha -r esbuild-runner-plugins/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'", + "test": "mocha -r esbuild-runner-plugins/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"", "test-dev": "ts-mocha test/**/*.ts" }, "dependencies": { diff --git a/inception/inception-recommendation/src/main/ts_template/package.json b/inception/inception-recommendation/src/main/ts_template/package.json index c525ea76081..9274f003d30 100644 --- a/inception/inception-recommendation/src/main/ts_template/package.json +++ b/inception/inception-recommendation/src/main/ts_template/package.json @@ -6,7 +6,7 @@ "homepage": "https://github.com/inception-project/inception#readme", "scripts": { "build": "node build.mjs", - "test": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'" + "test": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"" }, "repository": { "type": "git", diff --git a/inception/inception-ui-dashboard-activity/src/main/ts_template/package.json b/inception/inception-ui-dashboard-activity/src/main/ts_template/package.json index 7ce148daeb1..e135f176263 100644 --- a/inception/inception-ui-dashboard-activity/src/main/ts_template/package.json +++ b/inception/inception-ui-dashboard-activity/src/main/ts_template/package.json @@ -5,7 +5,7 @@ "license": "Apache-2.0", "scripts": { "build": "node build.mjs", - "test": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register './test/**/*.test.ts' --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile='../../../target/surefire-reports/mocha-test-report.xml'" + "test": "mocha -r esbuild-runner-plugins/register -r jsdom-global/register \"./test/**/*.test.ts\" --extension ts --reporter mocha-junit-reporter --reporter-options mochaFile=\"../../../target/surefire-reports/mocha-test-report.xml\"" }, "repository": { "type": "git", From dc524574a14947475303e0e870c6a3856e18490e Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Wed, 8 Mar 2023 08:11:52 +0100 Subject: [PATCH 022/189] #3852 - Improve ability to use custom CSS - Add semantic CSS classes to footer items --- .../ukp/clarin/webanno/telemetry/ui/TelemetryFooterPanel.html | 2 +- .../ukp/clarin/webanno/ui/core/footer/VersionFooterPanel.html | 2 +- .../ukp/clarin/webanno/ui/core/footer/WarningsFooterPanel.html | 2 +- .../ukp/inception/ui/core/about/AboutFooterPanel.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inception/inception-telemetry/src/main/java/de/tudarmstadt/ukp/clarin/webanno/telemetry/ui/TelemetryFooterPanel.html b/inception/inception-telemetry/src/main/java/de/tudarmstadt/ukp/clarin/webanno/telemetry/ui/TelemetryFooterPanel.html index 9b60f7dd8bd..ec7b5c5702d 100644 --- a/inception/inception-telemetry/src/main/java/de/tudarmstadt/ukp/clarin/webanno/telemetry/ui/TelemetryFooterPanel.html +++ b/inception/inception-telemetry/src/main/java/de/tudarmstadt/ukp/clarin/webanno/telemetry/ui/TelemetryFooterPanel.html @@ -19,7 +19,7 @@ -
+ diff --git a/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/VersionFooterPanel.html b/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/VersionFooterPanel.html index adc1f9f526d..110e502c796 100644 --- a/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/VersionFooterPanel.html +++ b/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/VersionFooterPanel.html @@ -19,7 +19,7 @@ - + Technische Universität Darmstadt -- Computer Science Department -- -- diff --git a/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/WarningsFooterPanel.html b/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/WarningsFooterPanel.html index 121052193c4..04fb1ada14f 100644 --- a/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/WarningsFooterPanel.html +++ b/inception/inception-ui-core/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/core/footer/WarningsFooterPanel.html @@ -20,7 +20,7 @@ -
+ diff --git a/inception/inception-support/src/main/java/de/tudarmstadt/ukp/clarin/webanno/support/dialog/ChallengeResponseDialogContentPanel_ImplBase.java b/inception/inception-support/src/main/java/de/tudarmstadt/ukp/clarin/webanno/support/dialog/ChallengeResponseDialogContentPanel_ImplBase.java index f528efc6ae2..9b4235bb91f 100644 --- a/inception/inception-support/src/main/java/de/tudarmstadt/ukp/clarin/webanno/support/dialog/ChallengeResponseDialogContentPanel_ImplBase.java +++ b/inception/inception-support/src/main/java/de/tudarmstadt/ukp/clarin/webanno/support/dialog/ChallengeResponseDialogContentPanel_ImplBase.java @@ -45,6 +45,7 @@ public abstract class ChallengeResponseDialogContentPanel_ImplBase private Label title; private Label expectedResponse; private TextField responseField; + private LambdaAjaxButton confirm; private LambdaAjaxLink cancel; private ResourceModel titleModel; @@ -75,11 +76,21 @@ public ChallengeResponseDialogContentPanel_ImplBase(String aId, ResourceModel aT cancel.setOutputMarkupId(true); queue(new Label("feedback")); - queue(new LambdaAjaxButton<>("confirm", this::onConfirmInternal)); + queue(confirm = new LambdaAjaxButton<>("confirm", this::onConfirmInternal)); queue(new LambdaAjaxLink("closeDialog", this::onCancelInternal)); queue(title, expectedResponse, responseField, cancel, form); } + public LambdaAjaxButton getConfirmButton() + { + return confirm; + } + + public TextField getResponseField() + { + return responseField; + } + @Deprecated public void onShow(AjaxRequestTarget aTarget) { @@ -168,7 +179,7 @@ public void setCancelAction(AjaxCallback aCancelAction) cancelAction = aCancelAction; } - private class State + protected class State implements Serializable { private static final long serialVersionUID = 4483229579553569947L; diff --git a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.html b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.html new file mode 100644 index 00000000000..26e4600a65e --- /dev/null +++ b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.html @@ -0,0 +1,41 @@ + + + + +

+ +

+
+

+ +

+

+ +

+
+
+

+ +

+
    +
  • +
+
+
+ diff --git a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.java b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.java new file mode 100644 index 00000000000..689b2918bad --- /dev/null +++ b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Technische Universität Darmstadt under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The Technische Universität Darmstadt + * licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package de.tudarmstadt.ukp.clarin.webanno.ui.project.layers; + +import static de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaBehavior.visibleWhen; +import static de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaBehavior.visibleWhenNot; + +import java.util.ArrayList; +import java.util.List; + +import org.apache.wicket.markup.html.basic.Label; +import org.apache.wicket.markup.html.list.ListItem; +import org.apache.wicket.markup.html.list.ListView; +import org.apache.wicket.model.IModel; +import org.apache.wicket.model.LoadableDetachableModel; +import org.apache.wicket.model.ResourceModel; +import org.apache.wicket.spring.injection.annot.SpringBean; + +import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationLayer; +import de.tudarmstadt.ukp.clarin.webanno.support.dialog.ChallengeResponseDialogContentPanel_ImplBase; +import de.tudarmstadt.ukp.inception.schema.AnnotationSchemaService; + +public class DeleteLayerConfirmationDialogContentPanel + extends ChallengeResponseDialogContentPanel_ImplBase +{ + private static final long serialVersionUID = -943392917974988048L; + + private @SpringBean AnnotationSchemaService annotationService; + + public DeleteLayerConfirmationDialogContentPanel(String aId, IModel aIModel) + { + super(aId, new ResourceModel("title")); + setDefaultModel(aIModel); + setExpectedResponseModel(getModel().map(AnnotationLayer::getName)); + + var blockers = LoadableDetachableModel.of(this::getDeletionBlockers); + + queue(new Label("message", new ResourceModel("message")) + .add(visibleWhen(blockers.map(List::isEmpty)))); + queue(new Label("challenge", new ResourceModel("challenge")) + .add(visibleWhen(blockers.map(List::isEmpty)))); + + var blockersList = new ListView("blockers", blockers) + { + private static final long serialVersionUID = -5477856044773755778L; + + @Override + protected void populateItem(ListItem aItem) + { + aItem.queue(new Label("blocker", aItem.getModelObject())); + } + }; + blockersList.add(visibleWhenNot(blockers.map(List::isEmpty))); + queue(blockersList); + + getConfirmButton().add(visibleWhen(blockers.map(List::isEmpty))); + getResponseField().add(visibleWhen(blockers.map(List::isEmpty))); + } + + @SuppressWarnings("unchecked") + public IModel getModel() + { + return (IModel) getDefaultModel(); + } + + private List getDeletionBlockers() + { + var blockers = new ArrayList(); + + for (var relLayer : annotationService.listAttachedRelationLayers(getModel().getObject())) { + blockers.add("Relation layer: " + relLayer.getUiName()); + } + + for (var linkFeature : annotationService.listAttachedLinkFeatures(getModel().getObject())) { + blockers.add("Link feature: " + linkFeature.getUiName() + " (on span layer " + + linkFeature.getLayer().getUiName() + ")"); + } + + return blockers; + } +} diff --git a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.properties b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.properties new file mode 100755 index 00000000000..45a86e4fd2f --- /dev/null +++ b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/DeleteLayerConfirmationDialogContentPanel.properties @@ -0,0 +1,22 @@ +# Licensed to the Technische Universitt Darmstadt under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The Technische Universitt Darmstadt +# licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +title=Delete layer +message=Are you sure you want to irrevocably delete the selected layer from the project? +challenge=To complete the action, please enter the layer name into the input field below. +explanation=This action will delete the layer and all associated annotations.
\ + This action cannot be reverted. +blockerExplanation=This layer is currently being used by a relation layer and/or link features. \ + Before deleting this layer, you need to first delete the layers/features listed below. diff --git a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/LayerDetailForm.java b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/LayerDetailForm.java index 0a9fdbd0c5c..25fae40b510 100644 --- a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/LayerDetailForm.java +++ b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/LayerDetailForm.java @@ -28,6 +28,7 @@ import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; +import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; @@ -36,6 +37,7 @@ import org.apache.wicket.Component; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior; +import org.apache.wicket.extensions.ajax.markup.html.modal.ModalDialog; import org.apache.wicket.feedback.IFeedback; import org.apache.wicket.markup.html.WebMarkupContainer; import org.apache.wicket.markup.html.basic.Label; @@ -49,7 +51,6 @@ import org.apache.wicket.model.CompoundPropertyModel; import org.apache.wicket.model.IModel; import org.apache.wicket.model.LoadableDetachableModel; -import org.apache.wicket.model.ResourceModel; import org.apache.wicket.spring.injection.annot.SpringBean; import org.apache.wicket.util.resource.IResourceStream; @@ -58,7 +59,7 @@ import de.tudarmstadt.ukp.clarin.webanno.api.event.LayerConfigurationChangedEvent; import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationLayer; import de.tudarmstadt.ukp.clarin.webanno.model.Project; -import de.tudarmstadt.ukp.clarin.webanno.support.dialog.ChallengeResponseDialog; +import de.tudarmstadt.ukp.clarin.webanno.support.bootstrap.BootstrapModalDialog; import de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaAjaxButton; import de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaAjaxLink; import de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaModelAdapter; @@ -102,7 +103,7 @@ public class LayerDetailForm private FeatureDetailForm featureDetailForm; private WebMarkupContainer traitsContainer; - private final ChallengeResponseDialog confirmationDialog; + private ModalDialog confirmationDialog; public LayerDetailForm(String id, IModel aSelectedLayer, FeatureSelectionForm aFeatureSelectionForm, FeatureDetailForm aFeatureDetailForm) @@ -198,13 +199,11 @@ protected void onUpdate(AjaxRequestTarget aTarget) // override onSubmit in its nested form and store the traits before // we clear the currently selected feature. add(new LambdaAjaxButton("save", this::actionSave).triggerAfterSubmit()); - add(new LambdaAjaxButton("delete", this::actionDelete).add(enabledWhen( - () -> !isNull(getModelObject().getId()) && isLayerDeletable(getModelObject())))); + add(new LambdaAjaxButton("delete", this::actionDelete) // + .add(enabledWhen(() -> !isNull(getModelObject().getId())))); add(new LambdaAjaxLink("cancel", this::actionCancel)); - confirmationDialog = new ChallengeResponseDialog("confirmationDialog"); - confirmationDialog.setTitleModel(new ResourceModel("DeleteLayerDialog.title")); - add(confirmationDialog); + queue(confirmationDialog = new BootstrapModalDialog("confirmationDialog").trapFocus()); } private String getEffectiveAttachTypeName() @@ -298,26 +297,24 @@ private boolean isLayerDeletable(AnnotationLayer aLayer) private void actionDelete(AjaxRequestTarget aTarget, Form aForm) { - confirmationDialog.setMessageModel(new ResourceModel("DeleteLayerDialog.text")); - confirmationDialog.setExpectedResponseModel(getModel().map(AnnotationLayer::getName)); + var dialogContent = new DeleteLayerConfirmationDialogContentPanel(ModalDialog.CONTENT_ID, + getModel()); - confirmationDialog.setConfirmAction((_target) -> { - annotationService.removeLayer(getModelObject()); + dialogContent.setConfirmAction((_target) -> actionDeleteLayerConfirmed(_target)); - Project project = getModelObject().getProject(); - - setModelObject(null); - - documentService.upgradeAllAnnotationDocuments(project); - - // Trigger LayerConfigurationChangedEvent - applicationEventPublisherHolder.get() - .publishEvent(new LayerConfigurationChangedEvent(this, project)); - - _target.add(getPage()); - }); + confirmationDialog.open(dialogContent, aTarget); + } - confirmationDialog.show(aTarget); + private void actionDeleteLayerConfirmed(AjaxRequestTarget _target) throws IOException + { + annotationService.removeLayer(getModelObject()); + Project project = getModelObject().getProject(); + setModelObject(null); + documentService.upgradeAllAnnotationDocuments(project); + // Trigger LayerConfigurationChangedEvent + applicationEventPublisherHolder.get() + .publishEvent(new LayerConfigurationChangedEvent(this, project)); + _target.add(getPage()); } private void actionSave(AjaxRequestTarget aTarget, Form aForm) diff --git a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/ProjectLayersPanel.properties b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/ProjectLayersPanel.properties index 912ccc6146e..bde8c8f9656 100755 --- a/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/ProjectLayersPanel.properties +++ b/inception/inception-ui-project/src/main/java/de/tudarmstadt/ukp/clarin/webanno/ui/project/layers/ProjectLayersPanel.properties @@ -51,8 +51,5 @@ OverlapMode.STACKING_ONLY=Stacking only OverlapMode.OVERLAP_ONLY=Overlap only OverlapMode.ANY_OVERLAP=Any -DeleteLayerDialog.title=Confirmation -DeleteLayerDialog.text=Are you sure you want to permanently delete the layer?

This action triggers a forced upgrade of all annotation documents to the modified type system. All users who are have currently opened documents from this project in the editor will be forced to reload the document before they can continue to work. Not reloading the document may lead to undefined situations.

Depending on the number of documents and annotators in this project, completing the deletion of the layer and upgrading all the annotations may take a while. To complete the action, please enter the layer name into the input field below. - DeleteFeatureDialog.title=Confirmation DeleteFeatureDialog.text=Are you sure you want to permanently delete the feature?

This action triggers a forced upgrade of all annotation documents to the modified type system. All users who are have currently opened documents from this project in the editor will be forced to reload the document before they can continue to work. Not reloading the document may lead to undefined situations.

Depending on the number of documents and annotators in this project, completing the deletion of the feature and upgrading all the annotations may take a while. To complete the action, please enter the feature name into the input field below. From 4bec7072a5980f99afc68716849dae7bf0c25498 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 11 Mar 2023 16:18:42 +0100 Subject: [PATCH 028/189] #3865 - Option to hide the reset button on the annotation page - Added the new option --- .../MatrixWorkflowActionBarItemGroup.java | 14 +++++++++++--- .../matrix/trait/MatrixWorkloadTraits.java | 12 ++++++++++++ .../matrix/trait/MatrixWorkloadTraitsEditor.html | 10 ++++++++++ .../matrix/trait/MatrixWorkloadTraitsEditor.java | 2 ++ .../trait/MatrixWorkloadTraitsEditor.properties | 1 + 5 files changed, 36 insertions(+), 3 deletions(-) diff --git a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/annotation/MatrixWorkflowActionBarItemGroup.java b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/annotation/MatrixWorkflowActionBarItemGroup.java index ee00e721879..ee71ef0c1f2 100644 --- a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/annotation/MatrixWorkflowActionBarItemGroup.java +++ b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/annotation/MatrixWorkflowActionBarItemGroup.java @@ -25,6 +25,7 @@ import static de.tudarmstadt.ukp.clarin.webanno.model.SourceDocumentState.CURATION_IN_PROGRESS; import static de.tudarmstadt.ukp.clarin.webanno.support.WebAnnoConst.CURATION_USER; import static de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaBehavior.enabledWhen; +import static de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaBehavior.visibleWhen; import java.io.IOException; @@ -58,6 +59,7 @@ import de.tudarmstadt.ukp.clarin.webanno.support.bootstrap.BootstrapModalDialog; import de.tudarmstadt.ukp.clarin.webanno.support.dialog.ChallengeResponseDialog; import de.tudarmstadt.ukp.clarin.webanno.support.lambda.LambdaAjaxLink; +import de.tudarmstadt.ukp.inception.preferences.PreferencesService; import de.tudarmstadt.ukp.inception.rendering.editorstate.AnnotatorState; import de.tudarmstadt.ukp.inception.schema.adapter.AnnotationException; import de.tudarmstadt.ukp.inception.workload.matrix.MatrixWorkloadExtension; @@ -74,11 +76,13 @@ public class MatrixWorkflowActionBarItemGroup private @SpringBean UserDao userRepository; private @SpringBean WorkloadManagementService workloadManagementService; private @SpringBean MatrixWorkloadExtension matrixWorkloadExtension; + private @SpringBean PreferencesService preferencesService; private final AnnotationPageBase page; protected ModalDialog finishDocumentDialog; private final ChallengeResponseDialog resetDocumentDialog; private final LambdaAjaxLink resetDocumentLink; + private final IModel traits; public MatrixWorkflowActionBarItemGroup(String aId, AnnotationPageBase aPage) { @@ -86,6 +90,10 @@ public MatrixWorkflowActionBarItemGroup(String aId, AnnotationPageBase aPage) page = aPage; + traits = LoadableDetachableModel.of(() -> matrixWorkloadExtension + .readTraits(workloadManagementService.loadOrCreateWorkloadManagerConfiguration( + page.getModelObject().getProject()))); + finishDocumentDialog = new BootstrapModalDialog("finishDocumentDialog"); finishDocumentDialog.setContent(new FinishDocumentDialogContent(ModalDialog.CONTENT_ID, Model.of(new FinishDocumentDialogModel()), @@ -105,6 +113,8 @@ public MatrixWorkflowActionBarItemGroup(String aId, AnnotationPageBase aPage) add(resetDocumentLink = new LambdaAjaxLink("showResetDocumentDialog", resetDocumentDialog::show)); resetDocumentLink.add(enabledWhen(() -> page.isEditable())); + resetDocumentLink.add(visibleWhen( + traits.map(MatrixWorkloadTraits::isDocumentResetAllowed).orElse(false))); } private LambdaAjaxLink createToggleDocumentStateLink(String aId) @@ -138,9 +148,7 @@ private boolean isReopenableByUser() return true; } - MatrixWorkloadTraits traits = matrixWorkloadExtension.readTraits(workloadManagementService - .loadOrCreateWorkloadManagerConfiguration(page.getModelObject().getProject())); - return traits.isReopenableByAnnotator(); + return traits.getObject().isReopenableByAnnotator(); } protected AnnotationPageBase getAnnotationPage() diff --git a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraits.java b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraits.java index e84e17c03b9..ebe348a942f 100644 --- a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraits.java +++ b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraits.java @@ -34,6 +34,8 @@ public class MatrixWorkloadTraits private boolean randomDocumentAccessAllowed = true; + private boolean documentResetAllowed = true; + public boolean isReopenableByAnnotator() { return reopenableByAnnotator; @@ -53,4 +55,14 @@ public void setRandomDocumentAccessAllowed(boolean aRandomDocumentAccessAllowed) { randomDocumentAccessAllowed = aRandomDocumentAccessAllowed; } + + public boolean isDocumentResetAllowed() + { + return documentResetAllowed; + } + + public void setDocumentResetAllowed(boolean aDocumentResetAllowed) + { + documentResetAllowed = aDocumentResetAllowed; + } } diff --git a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.html b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.html index 49a713531dc..212e21f6e28 100644 --- a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.html +++ b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.html @@ -39,6 +39,16 @@
+
+
+
+ + +
+
+
\ No newline at end of file diff --git a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.java b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.java index 5fe6798fc18..414680e57fc 100644 --- a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.java +++ b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.java @@ -65,6 +65,8 @@ protected void onInitialize() randomDocumentAccessAllowed.setOutputMarkupId(true); queue(randomDocumentAccessAllowed); + queue(new CheckBox("documentResetAllowed").setOutputMarkupId(true)); + CheckBox reopenableByAnnotator = new CheckBox(MID_REOPENABLE_BY_ANNOTATOR); reopenableByAnnotator.setOutputMarkupId(true); queue(reopenableByAnnotator); diff --git a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.properties b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.properties index e21e3e0ae46..c379e66bcc7 100644 --- a/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.properties +++ b/inception/inception-workload-matrix/src/main/java/de/tudarmstadt/ukp/inception/workload/matrix/trait/MatrixWorkloadTraitsEditor.properties @@ -15,3 +15,4 @@ # limitations under the License. reopenableByAnnotator=Allow annotators to re-open a document randomDocumentAccessAllowed=Allow annotators to freely navigate between documents +documentResetAllowed=Allow resetting the document to its original state From f27db4691a860fe9a2758059aa903ec924876bc9 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 11 Mar 2023 17:00:15 +0100 Subject: [PATCH 029/189] #3865 - Option to hide the reset button on the annotation page - Fix dependencies --- inception/inception-workload-matrix/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inception/inception-workload-matrix/pom.xml b/inception/inception-workload-matrix/pom.xml index 6d7877192ab..2c3228c03c7 100644 --- a/inception/inception-workload-matrix/pom.xml +++ b/inception/inception-workload-matrix/pom.xml @@ -70,6 +70,10 @@ de.tudarmstadt.ukp.inception.app inception-curation + + de.tudarmstadt.ukp.inception.app + inception-preferences + org.apache.commons From 0862982d94a59d55760c3297aed0f611c435f804 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Sat, 11 Mar 2023 17:32:56 +0100 Subject: [PATCH 030/189] #3869 - Suggestions should be shown below annotations in annotation sidebar - Add toggle to change whether suggestions should be shown above or below annotations (default below) --- .../main/ts/src/AnnotationsByLabelList.svelte | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte index f10883eea13..7fce82e302d 100644 --- a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte +++ b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte @@ -35,6 +35,7 @@ let groupedAnnotations: Record; let sortedLabels: string[]; let sortByScore: boolean = true; + let recommendationsFirst: boolean = false; $: sortedLabels = uniqueLabels(data); $: { @@ -57,7 +58,7 @@ const aIsRec = a.vid.toString().startsWith("rec:") const bIsRec = b.vid.toString().startsWith("rec:") if (sortByScore && aIsRec && !bIsRec) { - return -1; + return recommendationsFirst ? -1 : 1; } if (a instanceof Span && b instanceof Span) { @@ -99,19 +100,31 @@ {:else} -
+
-
+
+ + +
{#if sortedLabels || sortedLabels?.length} From 6368d4307750f0d4780e3dcc65ede43b4d71494f Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 14 Mar 2023 07:44:19 +0100 Subject: [PATCH 031/189] #3871 - Remove automatic border color in image sidebar - Remove automatic image border coloring code --- inception/inception-image/pom.xml | 33 ------- .../inception/image/sidebar/ImageSidebar.java | 92 ------------------- inception/pom.xml | 17 ---- 3 files changed, 142 deletions(-) diff --git a/inception/inception-image/pom.xml b/inception/inception-image/pom.xml index 5d9bbd8ee98..478df8f7831 100644 --- a/inception/inception-image/pom.xml +++ b/inception/inception-image/pom.xml @@ -104,10 +104,6 @@ com.googlecode.wicket-jquery-ui wicket-kendo-ui - - de.agilecoders.wicket.webjars - wicket-webjars - de.agilecoders.wicket wicket-bootstrap-core @@ -116,34 +112,5 @@ de.agilecoders.wicket wicket-bootstrap-extensions - - - org.webjars.npm - color-thief - - - org.webjars.npm - canvas - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - - org.webjars.npm:color-thief - org.webjars.npm:canvas - - - - - - \ No newline at end of file diff --git a/inception/inception-image/src/main/java/de/tudarmstadt/ukp/inception/image/sidebar/ImageSidebar.java b/inception/inception-image/src/main/java/de/tudarmstadt/ukp/inception/image/sidebar/ImageSidebar.java index d5e632526ce..3b3ccf51fef 100644 --- a/inception/inception-image/src/main/java/de/tudarmstadt/ukp/inception/image/sidebar/ImageSidebar.java +++ b/inception/inception-image/src/main/java/de/tudarmstadt/ukp/inception/image/sidebar/ImageSidebar.java @@ -37,9 +37,6 @@ import org.apache.uima.fit.util.FSUtil; import org.apache.wicket.Component; import org.apache.wicket.ajax.AjaxRequestTarget; -import org.apache.wicket.markup.head.IHeaderResponse; -import org.apache.wicket.markup.head.JavaScriptHeaderItem; -import org.apache.wicket.markup.head.OnDomReadyHeaderItem; import org.apache.wicket.markup.html.WebMarkupContainer; import org.apache.wicket.markup.html.image.ExternalImage; import org.apache.wicket.markup.html.link.ExternalLink; @@ -52,7 +49,6 @@ import org.slf4j.LoggerFactory; import org.wicketstuff.event.annotation.OnEvent; -import de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference; import de.tudarmstadt.ukp.clarin.webanno.api.CasProvider; import de.tudarmstadt.ukp.clarin.webanno.api.DocumentService; import de.tudarmstadt.ukp.clarin.webanno.model.AnnotationFeature; @@ -114,93 +110,6 @@ protected void populateItem(ListItem item) mainContainer.add(images); } - @Override - public void renderHead(IHeaderResponse aResponse) - { - super.renderHead(aResponse); - - aResponse.render(JavaScriptHeaderItem.forReference( - new WebjarsJavaScriptResourceReference("color-thief/current/js/color-thief.js"))); - aResponse.render(OnDomReadyHeaderItem.forScript(colorScript())); - } - - private String colorScript() - { - // @formatter:off - return String.join("\n", - "function getColorCache() {", - " var cacheHolder = window;", - " if (!cacheHolder.hasOwnProperty('colorCache')) {", - " console.debug('Initializing color cache');", - " cacheHolder.colorCache = {};", - " }", - " return cacheHolder.colorCache;", - "}", - "", - "function updateImageBackground(img) {", - " if (!$(img).attr('crossorigin')) return;", - " if (typeof img.naturalWidth != 'undefined' && img.naturalWidth == 0) return;", - " try {", - " var color = getColorCache()[img.src];", - " if (color === undefined) {", - " var dominantColor = colorThief.getColor(img);", - " var r = dominantColor[0];", - " var b = dominantColor[1];", - " var g = dominantColor[2];", - " // http://alienryderflex.com/hsp.html", - " var hsp = Math.sqrt(0.299*r*r + 0.587*g*g + 0.114*b*b);", - " color = hsp > 127 ? 'black' : 'white';", - " getColorCache()[img.src] = color;", - " }", - " $(img).css('background-color', color);", - " }", - " catch (err) {", - " console.error('Cannot determine image background color for ' + img.src, err)", - " $('canvas').remove();", - " }", - "}", - "", - "function fallbackToNonCors(img) {", - " $(img).removeAttr('crossorigin');", - " var x = img.src;", - " img.src = '';", - " img.src = x;", - " var warning = `", - "
", - " ", - " ", - " ", - "
", - " `", - " $(warning).insertAfter(img);", - "}", - "var startTime = new Date().getTime();", - "var colorThief = new ColorThief();", - "$('#" + getMarkupId() + " .img-thumbnail').each((index, img) => {", - // Make sure image data is actually available before trying to fetch it to calculate - // the background color - " if (img.complete) {", - // Check if the image has been properly loaded and if not try without CORS - " if (typeof img.naturalWidth != 'undefined' && img.naturalWidth == 0) {", - " fallbackToNonCors(img);", - " }", - " else {", - " updateImageBackground(img);", - " }", - " }", - " else {", - " img.addEventListener('load', () => updateImageBackground(img));", - // If the image cannot be loaded it may be due to CORS - so try without - " img.addEventListener('error', () => fallbackToNonCors(img));", - " }", - "});", - "console.debug('Calculating image border color took ' + ", - " (new Date().getTime() - startTime) + 'ms');"); - // @formatter:on - } - private List listImageUrls() { AnnotatorState state = getModelObject(); @@ -260,7 +169,6 @@ private List listImageUrls() public void onRenderRequested(RenderRequestedEvent aEvent) { aEvent.getRequestHandler().add(mainContainer); - aEvent.getRequestHandler().appendJavaScript(colorScript()); } public void actionJumpTo(AjaxRequestTarget aTarget, ImageHandle aHandle) diff --git a/inception/pom.xml b/inception/pom.xml index d792892d4bd..d198b706390 100644 --- a/inception/pom.xml +++ b/inception/pom.xml @@ -2118,23 +2118,6 @@ kinetic 5.2.0 - - org.webjars.npm - color-thief - 2.2.1 - - - - org.webjars.npm - canvas - - - - - org.webjars.npm - canvas - 1.4.0 - org.mariadb.jdbc From 3ba447dcd5f5ec54b7978730149c919f8adfca13 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 14 Mar 2023 08:53:38 +0100 Subject: [PATCH 032/189] #3874 - Images not shown in hover popup - Added "crossorigin" attribute to allow the browser to load images across domains --- .../src/main/ts/src/visualizer_ui/VisualizerUI.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inception/inception-brat-editor/src/main/ts/src/visualizer_ui/VisualizerUI.ts b/inception/inception-brat-editor/src/main/ts/src/visualizer_ui/VisualizerUI.ts index fdee2727b4d..837aa5b722e 100644 --- a/inception/inception-brat-editor/src/main/ts/src/visualizer_ui/VisualizerUI.ts +++ b/inception/inception-brat-editor/src/main/ts/src/visualizer_ui/VisualizerUI.ts @@ -284,7 +284,7 @@ export class VisualizerUI { if (label && value) { // special treatment for some label values if (label.toLowerCase() === '') { - norminfo += `` + norminfo += `` } else { // normal, as text max length restriction if (value.length > 300) { From 0e58cdcccabf27493a9985f57845811dc5c424b4 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Tue, 14 Mar 2023 12:36:56 +0100 Subject: [PATCH 033/189] #3877 - Show a bit of context in the annotation sidebar - Display part of the text after the covered text as muted text - No smart cut-off - Trailing text may cause annotation item to wrap and thereby take up more vertical space --- .../src/main/ts/src/SpanText.svelte | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/inception/inception-diam-editor/src/main/ts/src/SpanText.svelte b/inception/inception-diam-editor/src/main/ts/src/SpanText.svelte index 7ee2255303f..6c8be7a3e24 100644 --- a/inception/inception-diam-editor/src/main/ts/src/SpanText.svelte +++ b/inception/inception-diam-editor/src/main/ts/src/SpanText.svelte @@ -22,17 +22,22 @@ export let data: AnnotatedText export let span: Span + const maxLength = 50 + const showTextAfter = false // Experimental + $: begin = span.offsets[0][0] $: end = span.offsets[0][1] $: text = data.text.substring(begin, end).trim().replace(/\s+/g, ' ') + $: textAfter = (showTextAfter && text.length < maxLength) ? + data.text.substring(end, end + maxLength - text.length).trim().replace(/\s+/g, ' ') : '' {#if text.length === 0} -(empty span) -{:else if text.length > 50} +(empty) +{:else if text.length > maxLength} {text.substring(0, 50)} {:else} -{text} +{text} {#if textAfter.length > 0}{textAfter}{/if} {/if} From 92c300370947decf16ec8e4d2084f01394257021 Mon Sep 17 00:00:00 2001 From: Richard Eckart de Castilho Date: Wed, 15 Mar 2023 20:50:39 +0100 Subject: [PATCH 039/189] #3877 - Show a bit of context in the annotation sidebar - Put the fading wrapper around all labels if there are multiple labels --- .../src/main/ts/src/AnnotationsByLabelList.svelte | 9 ++++++++- .../main/ts/src/AnnotationsByPositionList.svelte | 11 +++++++++-- .../src/main/ts/src/LabelBadge.svelte | 15 +++++---------- 3 files changed, 22 insertions(+), 13 deletions(-) diff --git a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte index 0e7a9e86b73..ab8ca6f7668 100644 --- a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte +++ b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByLabelList.svelte @@ -159,7 +159,7 @@ class="flex-grow-1 my-1 mx-2 position-relative overflow-hidden" on:click={() => scrollTo(ann)} > -
+
+ .labels { + background: linear-gradient(to right, transparent 0px, white 15px); + padding-left: 20px; + z-index: 10; + position: relative; + } + .annotation-type-marker { width: 1em; text-align: center; diff --git a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByPositionList.svelte b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByPositionList.svelte index 2c3c7236c89..2194900b151 100644 --- a/inception/inception-diam-editor/src/main/ts/src/AnnotationsByPositionList.svelte +++ b/inception/inception-diam-editor/src/main/ts/src/AnnotationsByPositionList.svelte @@ -65,7 +65,7 @@
  • scrollToSpan(firstSpan)}> -
    +
    {#each spans as span} {/each} @@ -84,7 +84,7 @@
    scrollToRelation(relation)}> -
    +
    @@ -100,6 +100,13 @@ {/if}