From d634ff08c988e3103768b1eb361ba9964bfea1ec Mon Sep 17 00:00:00 2001 From: Dmytro Fedonin Date: Mon, 3 Jul 2017 09:46:01 +0200 Subject: [PATCH 1/8] Sort org root tabs by displayOrder --- .../midpoint/web/page/admin/orgs/AbstractOrgTabPanel.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/orgs/AbstractOrgTabPanel.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/orgs/AbstractOrgTabPanel.java index 916fe0dfa71..3fc3b6896d8 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/orgs/AbstractOrgTabPanel.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/admin/orgs/AbstractOrgTabPanel.java @@ -167,6 +167,9 @@ private List> loadOrgRoots() { try { ObjectQuery query = ObjectQueryUtil.createRootOrgQuery(getPageBase().getPrismContext()); list = getPageBase().getModelService().searchObjects(OrgType.class, query, null, task, result); + // Sort org roots by displayOrder, if not set push the org to the end + list.sort((o1, o2) -> (o1.getRealValue().getDisplayOrder() == null ? Integer.MAX_VALUE : o1.getRealValue().getDisplayOrder()) + - (o2.getRealValue().getDisplayOrder() == null ? Integer.MAX_VALUE : o2.getRealValue().getDisplayOrder())); if (list.isEmpty()) { warn(getString("PageOrgTree.message.noOrgStructDefined")); From 04352aea67119b1bc1fb6cb7a1398791f6aab094 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Tue, 4 Jul 2017 10:15:32 +0200 Subject: [PATCH 2/8] Password reset sample and minor improvements --- .../forgetpassword/PageForgotPassword.java | 20 ++++++++-- .../midpoint/web/page/login/PageLogin.java | 12 +++--- .../localization/Midpoint.properties | 1 + .../localization/Midpoint_en.properties | 1 + samples/evolveum/security-policy.xml | 19 +++++++++- samples/evolveum/system-configuration.xml | 37 ++++++++++++++++++- samples/evolveum/value-policy-nonce.xml | 36 ++++++++++++++++++ 7 files changed, 115 insertions(+), 11 deletions(-) create mode 100644 samples/evolveum/value-policy-nonce.xml diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/forgetpassword/PageForgotPassword.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/forgetpassword/PageForgotPassword.java index 6714778609f..600d0e04f9e 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/forgetpassword/PageForgotPassword.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/forgetpassword/PageForgotPassword.java @@ -357,7 +357,16 @@ private ObjectQuery createStaticFormQuery(Form form) { String email = emailTextField != null ? emailTextField.getModelObject() : null; LOGGER.debug("Reset Password user info form submitted. username={}, email={}", username, email); - switch (getResetPasswordPolicy().getResetMethod()) { + ResetPolicyDto resetPasswordPolicy = getResetPasswordPolicy(); + if (resetPasswordPolicy == null) { + passwordResetNotSupported(); + } + ResetMethod method = resetPasswordPolicy.getResetMethod(); + if (method == null) { + passwordResetNotSupported(); + } + + switch (method) { case MAIL: return QueryBuilder.queryFor(UserType.class, getPrismContext()).item(UserType.F_EMAIL_ADDRESS) .eq(email).matchingCaseIgnore().build(); @@ -368,11 +377,16 @@ private ObjectQuery createStaticFormQuery(Form form) { .matchingCaseIgnore().build(); default: - getSession().error(getString("PageForgotPassword.unsupported.reset.type")); - throw new RestartResponseException(PageForgotPassword.this); + passwordResetNotSupported(); + return null; // not reached } } + + private void passwordResetNotSupported() { + getSession().error(getString("PageForgotPassword.unsupported.reset.type")); + throw new RestartResponseException(PageForgotPassword.this); + } private UserType searchUserPrivileged(ObjectQuery query) { UserType userType = runPrivileged(new Producer() { diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/login/PageLogin.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/login/PageLogin.java index 13df0d46426..cd940907c73 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/login/PageLogin.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/page/login/PageLogin.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2016 Evolveum + * Copyright (c) 2010-2017 Evolveum * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -75,26 +75,26 @@ public boolean isVisible() { LOGGER.warn("Cannot read credentials policy: " + e.getMessage(), e); } - boolean linkIsVisible = false; - if (securityPolicy == null) { - return linkIsVisible; + return false; } CredentialsPolicyType creds = securityPolicy.getCredentials(); + // TODO: Not entirely correct. This means we have reset somehow configured, but not necessarily enabled. if (creds != null && ((creds.getSecurityQuestions() != null && creds.getSecurityQuestions().getQuestionNumber() != null) || (securityPolicy.getCredentialsReset() != null))) { - linkIsVisible = true; + return true; } - return linkIsVisible; + return false; } }); add(link); AjaxLink registration = new AjaxLink(ID_SELF_REGISTRATION) { + private static final long serialVersionUID = 1L; @Override public void onClick(AjaxRequestTarget target) { diff --git a/gui/admin-gui/src/main/resources/localization/Midpoint.properties b/gui/admin-gui/src/main/resources/localization/Midpoint.properties index 46fba8a36e8..9e6e2f523bc 100644 --- a/gui/admin-gui/src/main/resources/localization/Midpoint.properties +++ b/gui/admin-gui/src/main/resources/localization/Midpoint.properties @@ -1574,6 +1574,7 @@ PageForgetPassword.password=Password PageForgetPassword.resetPassword=Reset Password PageForgotPassword.title=Forgot Password PageForgetPassword.username=Username +PageForgotPassword.unsupported.reset.type=Unsupported password reset type PageForgotPassword.send.nonce.failed=User's password couldn't be reset. Please contact system administrator. PageImportObject.button.import=Import object PageImportObject.embeddedEditor=Embedded editor diff --git a/gui/admin-gui/src/main/resources/localization/Midpoint_en.properties b/gui/admin-gui/src/main/resources/localization/Midpoint_en.properties index eef58e4067c..09d801105ad 100644 --- a/gui/admin-gui/src/main/resources/localization/Midpoint_en.properties +++ b/gui/admin-gui/src/main/resources/localization/Midpoint_en.properties @@ -1571,6 +1571,7 @@ PageForgetPassword.resetPassword=Reset Password PageForgotPassword.title=Forgot Password PageForgetPassword.username=Username PageForgotPassword.send.nonce.failed=User's password couldn't be reset. Please contact system administrator. +PageForgotPassword.unsupported.reset.type=Unsupported password reset type PageImportObject.button.import=Import object PageImportObject.embeddedEditor=Embedded editor PageImportObject.file=File diff --git a/samples/evolveum/security-policy.xml b/samples/evolveum/security-policy.xml index 9f5a16cc29f..b0f49f2c921 100644 --- a/samples/evolveum/security-policy.xml +++ b/samples/evolveum/security-policy.xml @@ -1,6 +1,6 @@ + securityQuestions @@ -40,4 +51,10 @@ + + + passwordMailReset + confirmationLink + + diff --git a/samples/evolveum/system-configuration.xml b/samples/evolveum/system-configuration.xml index e136eca4854..470af864420 100644 --- a/samples/evolveum/system-configuration.xml +++ b/samples/evolveum/system-configuration.xml @@ -1,6 +1,6 @@ + + + + + + + + + + + + + + mail + + + + /var/opt/midpoint/mail.log + + + diff --git a/samples/evolveum/value-policy-nonce.xml b/samples/evolveum/value-policy-nonce.xml new file mode 100644 index 00000000000..f14112b7bae --- /dev/null +++ b/samples/evolveum/value-policy-nonce.xml @@ -0,0 +1,36 @@ + + + + + Nonce Value Policy + Value policy for mail-based password reset nonce + + + 10 + + Numbers + 10 + 10 + false + + 1234567890 + + + + + \ No newline at end of file From b2deb7b42987235e7f11201fd7f3a7d1369964a6 Mon Sep 17 00:00:00 2001 From: honchar Date: Tue, 4 Jul 2017 10:33:55 +0200 Subject: [PATCH 3/8] resource wizard fix --- .../component/form/multivalue/MultiValueTextPanel.java | 3 +++ .../schemahandling/ResourceCredentialsEditor.java | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/multivalue/MultiValueTextPanel.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/multivalue/MultiValueTextPanel.java index 311ebee6b0d..c538fca9c9f 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/multivalue/MultiValueTextPanel.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/form/multivalue/MultiValueTextPanel.java @@ -225,6 +225,9 @@ protected void removeValuePerformed(AjaxRequestTarget target, ListItem item){ Iterator iterator = objects.iterator(); while (iterator.hasNext()) { T object = iterator.next(); + if (object == null){ + continue; + } if (object.equals(item.getModelObject())) { iterator.remove(); break; diff --git a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/wizard/resource/component/schemahandling/ResourceCredentialsEditor.java b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/wizard/resource/component/schemahandling/ResourceCredentialsEditor.java index 5c211afb84b..597a04b5930 100644 --- a/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/wizard/resource/component/schemahandling/ResourceCredentialsEditor.java +++ b/gui/admin-gui/src/main/java/com/evolveum/midpoint/web/component/wizard/resource/component/schemahandling/ResourceCredentialsEditor.java @@ -269,7 +269,13 @@ private List createPasswordPolicyList(){ private void outboundEditPerformed(AjaxRequestTarget target){ MappingEditorDialog window = (MappingEditorDialog) get(ID_MODAL_OUTBOUND); - window.updateModel(target, new PropertyModel(getModel(), "password.outbound"), false); + IModel model = getModel(); + List outboundMappingList = model == null ? null : + (model.getObject() == null ? null : + (model.getObject().getPassword() == null ? null : model.getObject().getPassword().getOutbound())); + MappingType mapping = outboundMappingList != null && outboundMappingList.size() > 0 ? + outboundMappingList.get(0) : null; + window.updateModel(target, mapping, false); window.show(target); } From f3b673ae515e222ff87a05eb409c34555f6d6d40 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Tue, 4 Jul 2017 10:40:51 +0200 Subject: [PATCH 4/8] Release files --- NEWS | 53 +++++++++++++++++++++------------------------------ NOTICE | 2 +- README | 2 +- README.md | 2 +- RELEASE-NOTES | 2 +- 5 files changed, 26 insertions(+), 35 deletions(-) diff --git a/NEWS b/NEWS index 08a336b6968..4b3b61d51b8 100644 --- a/NEWS +++ b/NEWS @@ -1,38 +1,29 @@ -midPoint 3.5 "Einstein" +midPoint 3.6 "Comenius" ---------------------------------- -Release 3.5 is eighteenth midPoint release code-named Einstein. The 3.5 -release brings lots of features related to identity governance, -self-registration and support for JSON/YAML. +Release 3.6 is twenty first midPoint release code-named Comenius. +The 3.6 release brings numerous new features especially in the +field of identity governance, password management and identity +connectors. -Release date: 21st December 2016 +Release date: 4th July 2017 -Changes with respect to version 3.4.1: - Role catalog - Role request based on shopping cart paradigm - JSON/YAML support - Object lifecycle property - Passive Attribute Caching (EXPERIMENTAL) - Deputy (ad-hoc privilege delegation) - Object history (time machine) - Interactive audit log viewer - Audit log indexing improvements - Assignment metadata - Basic role lifecycle management (role approvals) - Improved approval processes - Self-registration - E-mail based password reset - Experimental support for policy rules - Weak construction - Improvements to AD connector in multi-domain environment - Identity merge - Better control over administration GUI forms - MariaDB support - Configurable limitations of parallel execution of tasks - Various user interface improvements - Internal code cleanup - Documentation improvements +Changes with respect to version 3.5.1: + Major SoD improvements + Certificaiton improvements + Escalation + Other identity governance features + Password hashing + Manual connectors by ITSM integration + Important improvements to mappings, expressions, object templates and other mechanisms + Custom forms + Quasi-fulltext search + Shopping cart and role catalog improvements + Numerous GUI improvements + Significantly improved Powershell support + New CSV connector + Other connector improvements Java 7 environment is no longer supported. XPath2 scripting is no longer supported. -CSVFile Connector is deprecated. +CSVFile Connector is no longer supported. diff --git a/NOTICE b/NOTICE index b9059e2b189..3deb27370bf 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ MidPoint Identity Manager -Copyright 2010-2016 Evolveum +Copyright 2010-2017 Evolveum This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/README b/README index dd3471c57cc..0cda99843ed 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -midPoint 3.5 "Einstein" +midPoint 3.6 "Comenius" ------------------------------------ General information: diff --git a/README.md b/README.md index e865784e011..c56a0160e50 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Status: [![Build Status](https://travis-ci.org/Evolveum/midpoint.svg?branch=master)](https://travis-ci.org/Evolveum/midpoint) -midPoint 3.5 "Einstein" +midPoint 3.6 "Comenius" ------------------------------------ General information: diff --git a/RELEASE-NOTES b/RELEASE-NOTES index fc181f55ed5..1aa96567b5b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,4 +1,4 @@ To see actual releases notes please go to: -https://wiki.evolveum.com/display/midPoint/Release+3.5 +https://wiki.evolveum.com/display/midPoint/Release+3.6 From 3b6fbfe4c3518c9041ec374596459900d58a9898 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Tue, 4 Jul 2017 13:09:39 +0200 Subject: [PATCH 5/8] Version 3.6 (Commenius) --- build-system/pom.xml | 2 +- cli/common/pom.xml | 4 +- cli/ninja/pom.xml | 4 +- cli/pom.xml | 4 +- cli/seppuku/pom.xml | 4 +- custom/pom.xml | 2 +- dist/midpoint-api/pom.xml | 12 ++-- dist/pom.xml | 10 +-- gui/admin-gui/pom.xml | 68 ++++++++++----------- gui/pom.xml | 2 +- icf-connectors/dummy-connector-fake/pom.xml | 4 +- icf-connectors/dummy-connector/pom.xml | 6 +- icf-connectors/dummy-resource/pom.xml | 6 +- icf-connectors/pom.xml | 4 +- infra/common/pom.xml | 12 ++-- infra/pom.xml | 2 +- infra/prism-maven-plugin/pom.xml | 8 +-- infra/prism/pom.xml | 8 +-- infra/schema-pure-jaxb/pom.xml | 4 +- infra/schema/pom.xml | 12 ++-- infra/test-util/pom.xml | 10 +-- infra/util/pom.xml | 2 +- infra/ws-util/pom.xml | 4 +- model/certification-api/pom.xml | 12 ++-- model/certification-impl/pom.xml | 58 +++++++++--------- model/model-api/pom.xml | 18 +++--- model/model-client/pom.xml | 6 +- model/model-common/pom.xml | 30 ++++----- model/model-impl/pom.xml | 66 ++++++++++---------- model/model-intest/pom.xml | 60 +++++++++--------- model/model-test/pom.xml | 50 +++++++-------- model/notifications-api/pom.xml | 18 +++--- model/notifications-impl/pom.xml | 48 +++++++-------- model/pom.xml | 2 +- model/report-api/pom.xml | 14 ++--- model/report-impl/pom.xml | 50 +++++++-------- model/workflow-api/pom.xml | 18 +++--- model/workflow-impl/pom.xml | 62 +++++++++---------- pom.xml | 2 +- provisioning/pom.xml | 2 +- provisioning/provisioning-api/pom.xml | 16 ++--- provisioning/provisioning-impl/pom.xml | 50 +++++++-------- provisioning/ucf-api/pom.xml | 14 ++--- provisioning/ucf-impl-builtin/pom.xml | 37 +++++------ provisioning/ucf-impl-connid/pom.xml | 36 +++++------ repo/audit-api/pom.xml | 12 ++-- repo/audit-impl/pom.xml | 22 +++---- repo/pom.xml | 2 +- repo/repo-api/pom.xml | 10 +-- repo/repo-cache/pom.xml | 12 ++-- repo/repo-common/pom.xml | 22 +++---- repo/repo-sql-impl-test/pom.xml | 22 +++---- repo/repo-sql-impl/pom.xml | 18 +++--- repo/repo-test-util/pom.xml | 24 ++++---- repo/security-api/pom.xml | 10 +-- repo/security-impl/pom.xml | 28 ++++----- repo/system-init/pom.xml | 22 +++---- repo/task-api/pom.xml | 10 +-- repo/task-quartz-impl/pom.xml | 32 +++++----- samples/model-client-sample/pom.xml | 4 +- samples/pom.xml | 2 +- samples/samples-test/pom.xml | 40 ++++++------ testing/conntest/pom.xml | 42 ++++++------- testing/consistency-mechanism/pom.xml | 42 ++++++------- testing/longtest/pom.xml | 40 ++++++------ testing/minipoint/pom.xml | 14 ++--- testing/pom.xml | 2 +- testing/rest/pom.xml | 40 ++++++------ testing/sanity/pom.xml | 48 +++++++-------- testing/selenidetest/pom.xml | 6 +- testing/story/pom.xml | 54 ++++++++-------- testing/wstest/pom.xml | 10 +-- tools/gui-i18n/pom.xml | 4 +- tools/pom.xml | 2 +- tools/repo-ninja/pom.xml | 24 ++++---- tools/schema-dist-maven-plugin/pom.xml | 6 +- tools/test-ng/pom.xml | 2 +- tools/xjc-plugin/pom.xml | 6 +- weblogic-build/pom.xml | 6 +- 79 files changed, 748 insertions(+), 755 deletions(-) diff --git a/build-system/pom.xml b/build-system/pom.xml index 38a8f6b13cf..6c6192e6ccd 100644 --- a/build-system/pom.xml +++ b/build-system/pom.xml @@ -25,7 +25,7 @@ com.evolveum.midpoint midpoint - 3.6-SNAPSHOT + 3.6 diff --git a/cli/common/pom.xml b/cli/common/pom.xml index 15a869208ff..c332334f4ed 100644 --- a/cli/common/pom.xml +++ b/cli/common/pom.xml @@ -23,12 +23,12 @@ midPoint CLI Interface - common com.evolveum.midpoint.cli common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint cli - 3.6-SNAPSHOT + 3.6 diff --git a/cli/ninja/pom.xml b/cli/ninja/pom.xml index c656219f9dd..85cbc2c742a 100644 --- a/cli/ninja/pom.xml +++ b/cli/ninja/pom.xml @@ -23,12 +23,12 @@ midPoint CLI Interface - ninja com.evolveum.midpoint.cli ninja - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint cli - 3.6-SNAPSHOT + 3.6 diff --git a/cli/pom.xml b/cli/pom.xml index dadb22f26cb..1c17fc8b5e3 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -22,13 +22,13 @@ midPoint CLI Interface cli - 3.6-SNAPSHOT + 3.6 pom parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/cli/seppuku/pom.xml b/cli/seppuku/pom.xml index 3bd172ef918..71be42d9b50 100644 --- a/cli/seppuku/pom.xml +++ b/cli/seppuku/pom.xml @@ -23,12 +23,12 @@ midPoint CLI Interface - seppuku com.evolveum.midpoint.cli seppuku - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint cli - 3.6-SNAPSHOT + 3.6 diff --git a/custom/pom.xml b/custom/pom.xml index a0d7a4e78b4..e108fccc28a 100644 --- a/custom/pom.xml +++ b/custom/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/dist/midpoint-api/pom.xml b/dist/midpoint-api/pom.xml index 8be1006b67f..729ee1dcff9 100644 --- a/dist/midpoint-api/pom.xml +++ b/dist/midpoint-api/pom.xml @@ -24,7 +24,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../../build-system/pom.xml @@ -51,31 +51,31 @@ com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 compile com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 compile com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 compile com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 compile com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 compile diff --git a/dist/pom.xml b/dist/pom.xml index 20d92f655d7..16e1a6abd49 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -24,7 +24,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml @@ -51,20 +51,20 @@ com.evolveum.midpoint.gui admin-gui - 3.6-SNAPSHOT + 3.6 war com.evolveum.midpoint.tools repo-ninja - 3.6-SNAPSHOT + 3.6 zip bin com.evolveum.midpoint.tools repo-ninja - 3.6-SNAPSHOT + 3.6 org.testng @@ -78,7 +78,7 @@ com.evolveum.midpoint.tools schema-dist-maven-plugin - 3.6-SNAPSHOT + 3.6 schemadist-prism diff --git a/gui/admin-gui/pom.xml b/gui/admin-gui/pom.xml index 29f60d20fb1..7ca988c02ef 100644 --- a/gui/admin-gui/pom.xml +++ b/gui/admin-gui/pom.xml @@ -20,11 +20,11 @@ com.evolveum.midpoint.gui admin-gui war - 3.6-SNAPSHOT + 3.6 gui com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -248,22 +248,22 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 jaxb-impl @@ -282,53 +282,53 @@ com.evolveum.midpoint.repo repo-common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model report-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model workflow-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model certification-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 runtime @@ -353,7 +353,7 @@ com.evolveum.midpoint.repo repo-cache - 3.6-SNAPSHOT + 3.6 runtime @@ -373,25 +373,25 @@ com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 runtime @@ -403,37 +403,37 @@ com.evolveum.midpoint.model certification-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.model workflow-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.model notifications-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.model report-impl - 3.6-SNAPSHOT + 3.6 runtime @@ -450,7 +450,7 @@ com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 xml-apis @@ -659,19 +659,19 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -688,13 +688,13 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 test @@ -821,7 +821,7 @@ com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 test diff --git a/gui/pom.xml b/gui/pom.xml index 045d447c2bd..55871bbbde8 100644 --- a/gui/pom.xml +++ b/gui/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/icf-connectors/dummy-connector-fake/pom.xml b/icf-connectors/dummy-connector-fake/pom.xml index 2da9f3ac3bf..43b12ee5917 100644 --- a/icf-connectors/dummy-connector-fake/pom.xml +++ b/icf-connectors/dummy-connector-fake/pom.xml @@ -20,12 +20,12 @@ Dummy Connector Fake com.evolveum.icf dummy-connector-fake - 3.6-SNAPSHOT + 3.6 jar icf-connectors com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git diff --git a/icf-connectors/dummy-connector/pom.xml b/icf-connectors/dummy-connector/pom.xml index 66b65b583d2..e42ebcc6e29 100644 --- a/icf-connectors/dummy-connector/pom.xml +++ b/icf-connectors/dummy-connector/pom.xml @@ -20,12 +20,12 @@ Dummy Connector com.evolveum.icf dummy-connector - 3.6-SNAPSHOT + 3.6 jar icf-connectors com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -40,7 +40,7 @@ com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 commons-lang diff --git a/icf-connectors/dummy-resource/pom.xml b/icf-connectors/dummy-resource/pom.xml index 7425c0b505a..be13fdf3a2a 100644 --- a/icf-connectors/dummy-resource/pom.xml +++ b/icf-connectors/dummy-resource/pom.xml @@ -20,12 +20,12 @@ Dummy Resource com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 jar icf-connectors com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -36,7 +36,7 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 commons-lang diff --git a/icf-connectors/pom.xml b/icf-connectors/pom.xml index b5d4827dabd..6bdd6f3bab8 100644 --- a/icf-connectors/pom.xml +++ b/icf-connectors/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml @@ -55,7 +55,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/infra/common/pom.xml b/infra/common/pom.xml index e0aaf636439..160612c61b3 100644 --- a/infra/common/pom.xml +++ b/infra/common/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 org.jetbrains @@ -103,13 +103,13 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/infra/pom.xml b/infra/pom.xml index 339c7ddd1bc..3dbef3309d5 100644 --- a/infra/pom.xml +++ b/infra/pom.xml @@ -22,7 +22,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/infra/prism-maven-plugin/pom.xml b/infra/prism-maven-plugin/pom.xml index 590f0e69da0..a97573fdef8 100644 --- a/infra/prism-maven-plugin/pom.xml +++ b/infra/prism-maven-plugin/pom.xml @@ -20,13 +20,13 @@ 4.0.0 com.evolveum.midpoint.infra prism-maven-plugin - 3.6-SNAPSHOT + 3.6 maven-plugin midPoint Infrastructure - prism maven plugin infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -37,12 +37,12 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 org.apache.maven diff --git a/infra/prism/pom.xml b/infra/prism/pom.xml index 0dd26bd4489..a4523fb84b9 100644 --- a/infra/prism/pom.xml +++ b/infra/prism/pom.xml @@ -20,12 +20,12 @@ 4.0.0 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 midPoint Infrastructure - prism infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -36,7 +36,7 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 @@ -185,7 +185,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/infra/schema-pure-jaxb/pom.xml b/infra/schema-pure-jaxb/pom.xml index f2f4d34600a..07a873f4f0f 100644 --- a/infra/schema-pure-jaxb/pom.xml +++ b/infra/schema-pure-jaxb/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -70,7 +70,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/infra/schema/pom.xml b/infra/schema/pom.xml index a01e1617604..a341f82c298 100644 --- a/infra/schema/pom.xml +++ b/infra/schema/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,12 +35,12 @@ com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 commons-collections @@ -114,7 +114,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -307,7 +307,7 @@ com.evolveum.midpoint.tools xjc-plugin - 3.6-SNAPSHOT + 3.6 com.sun.xml.bind @@ -319,7 +319,7 @@ com.evolveum.midpoint.infra prism-maven-plugin - 3.6-SNAPSHOT + 3.6 src/main/resources/xml/ns/public/common/common-3.xsd diff --git a/infra/test-util/pom.xml b/infra/test-util/pom.xml index ee6a1fbb46d..23ae0fd96aa 100644 --- a/infra/test-util/pom.xml +++ b/infra/test-util/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -43,17 +43,17 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 commons-lang @@ -113,7 +113,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 diff --git a/infra/util/pom.xml b/infra/util/pom.xml index 0d382eeaed3..1454a064940 100644 --- a/infra/util/pom.xml +++ b/infra/util/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git diff --git a/infra/ws-util/pom.xml b/infra/ws-util/pom.xml index 322854fdd8a..2b2d6c6e163 100644 --- a/infra/ws-util/pom.xml +++ b/infra/ws-util/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -77,7 +77,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/model/certification-api/pom.xml b/model/certification-api/pom.xml index 2df9ebf4db6..d2f648be59e 100644 --- a/model/certification-api/pom.xml +++ b/model/certification-api/pom.xml @@ -21,7 +21,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 4.0.0 midPoint Access Certification - api @@ -37,27 +37,27 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/model/certification-impl/pom.xml b/model/certification-impl/pom.xml index 9b17277528c..c2c990db341 100644 --- a/model/certification-impl/pom.xml +++ b/model/certification-impl/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,67 +35,67 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model certification-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model notifications-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model workflow-api - 3.6-SNAPSHOT + 3.6 @@ -131,50 +131,50 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 test-jar test com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model notifications-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model report-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model report-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 test @@ -185,7 +185,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -211,37 +211,37 @@ com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 test diff --git a/model/model-api/pom.xml b/model/model-api/pom.xml index 0fce7a792a3..c0809027428 100644 --- a/model/model-api/pom.xml +++ b/model/model-api/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 Evolveum @@ -50,42 +50,42 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/model/model-client/pom.xml b/model/model-client/pom.xml index a27f46dc173..2858a2b9475 100644 --- a/model/model-client/pom.xml +++ b/model/model-client/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -120,7 +120,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -219,7 +219,7 @@ com.evolveum.midpoint.tools xjc-plugin - 3.6-SNAPSHOT + 3.6 diff --git a/model/model-common/pom.xml b/model/model-common/pom.xml index c6dd6db3237..bac2d4a18c8 100644 --- a/model/model-common/pom.xml +++ b/model/model-common/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 Evolveum @@ -50,52 +50,52 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test @@ -256,7 +256,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -272,7 +272,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/model/workflow-api/pom.xml b/model/workflow-api/pom.xml index 7b9258b32c1..d594713d893 100644 --- a/model/workflow-api/pom.xml +++ b/model/workflow-api/pom.xml @@ -21,7 +21,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 4.0.0 midPoint Workflow - api @@ -37,43 +37,43 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 diff --git a/model/workflow-impl/pom.xml b/model/workflow-impl/pom.xml index 099ba7e6f28..e7ae38bc8b3 100644 --- a/model/workflow-impl/pom.xml +++ b/model/workflow-impl/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,77 +35,77 @@ com.evolveum.midpoint.model workflow-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning provisioning-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 @@ -125,7 +125,7 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 provided @@ -181,44 +181,44 @@ com.evolveum.midpoint.model notifications-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 test-jar test com.evolveum.midpoint.model notifications-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model report-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model report-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -229,7 +229,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -255,37 +255,37 @@ com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 test diff --git a/pom.xml b/pom.xml index 76db41b75f3..8995a38d536 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ midPoint Project com.evolveum.midpoint midpoint - 3.6-SNAPSHOT + 3.6 pom Utility module to compile all of the maven based midPoint projects. diff --git a/provisioning/pom.xml b/provisioning/pom.xml index 1fab8528dec..b958df52e67 100644 --- a/provisioning/pom.xml +++ b/provisioning/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/provisioning/provisioning-api/pom.xml b/provisioning/provisioning-api/pom.xml index c5145c92432..4e96a6326b8 100644 --- a/provisioning/provisioning-api/pom.xml +++ b/provisioning/provisioning-api/pom.xml @@ -20,12 +20,12 @@ midPoint Provisioning - api com.evolveum.midpoint.provisioning provisioning-api - 3.6-SNAPSHOT + 3.6 jar provisioning com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -36,32 +36,32 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/provisioning/provisioning-impl/pom.xml b/provisioning/provisioning-impl/pom.xml index 64cf416abf2..2544ae105c8 100644 --- a/provisioning/provisioning-impl/pom.xml +++ b/provisioning/provisioning-impl/pom.xml @@ -24,7 +24,7 @@ provisioning com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,69 +35,69 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning provisioning-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning ucf-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-cache - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning ucf-impl-connid - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.provisioning ucf-impl-builtin - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo repo-common - 3.6-SNAPSHOT + 3.6 @@ -126,19 +126,19 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -149,19 +149,19 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test @@ -172,13 +172,13 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test @@ -221,13 +221,13 @@ com.evolveum.icf dummy-connector - 3.6-SNAPSHOT + 3.6 test com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 test @@ -248,7 +248,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/provisioning/ucf-api/pom.xml b/provisioning/ucf-api/pom.xml index 60b9f9a6126..35c0996bc25 100644 --- a/provisioning/ucf-api/pom.xml +++ b/provisioning/ucf-api/pom.xml @@ -20,12 +20,12 @@ Unified Connector Framework - api com.evolveum.midpoint.provisioning ucf-api - 3.6-SNAPSHOT + 3.6 jar provisioning com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -36,22 +36,22 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 commons-lang @@ -64,7 +64,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/provisioning/ucf-impl-builtin/pom.xml b/provisioning/ucf-impl-builtin/pom.xml index a7e0e9389df..eb3f488c820 100644 --- a/provisioning/ucf-impl-builtin/pom.xml +++ b/provisioning/ucf-impl-builtin/pom.xml @@ -24,7 +24,7 @@ provisioning com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 Implementation for the built-in midpoint connectors, such as the built-in "manaual connector" capability. @@ -36,34 +36,27 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 - com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning ucf-api - 3.6-SNAPSHOT + 3.6 @@ -92,19 +85,19 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -115,19 +108,19 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test @@ -138,13 +131,13 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test @@ -160,7 +153,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/provisioning/ucf-impl-connid/pom.xml b/provisioning/ucf-impl-connid/pom.xml index d1144a7c7d6..1760ab2e1f8 100644 --- a/provisioning/ucf-impl-connid/pom.xml +++ b/provisioning/ucf-impl-connid/pom.xml @@ -24,7 +24,7 @@ provisioning com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,32 +35,32 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning ucf-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 @@ -107,19 +107,19 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -130,19 +130,19 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test @@ -153,13 +153,13 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test @@ -202,13 +202,13 @@ com.evolveum.icf dummy-connector - 3.6-SNAPSHOT + 3.6 test com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 test @@ -229,7 +229,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/audit-api/pom.xml b/repo/audit-api/pom.xml index a05212ab277..df7f13e7fae 100644 --- a/repo/audit-api/pom.xml +++ b/repo/audit-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 commons-configuration @@ -55,13 +55,13 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 org.jetbrains diff --git a/repo/audit-impl/pom.xml b/repo/audit-impl/pom.xml index 21e3e5af6e6..28f875e089e 100644 --- a/repo/audit-impl/pom.xml +++ b/repo/audit-impl/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,32 +35,32 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 commons-configuration @@ -84,7 +84,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -100,13 +100,13 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test @@ -117,7 +117,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/pom.xml b/repo/pom.xml index 326425c1c6b..d55311b1947 100644 --- a/repo/pom.xml +++ b/repo/pom.xml @@ -22,7 +22,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/repo/repo-api/pom.xml b/repo/repo-api/pom.xml index b75e37e0947..31a601f2965 100644 --- a/repo/repo-api/pom.xml +++ b/repo/repo-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 commons-lang @@ -62,7 +62,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/repo-cache/pom.xml b/repo/repo-cache/pom.xml index fdb7690f390..52a6ffc66ec 100644 --- a/repo/repo-cache/pom.xml +++ b/repo/repo-cache/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,22 +35,22 @@ com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 commons-lang @@ -74,7 +74,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/repo-common/pom.xml b/repo/repo-common/pom.xml index 1dc721186ae..f387d2d5778 100644 --- a/repo/repo-common/pom.xml +++ b/repo/repo-common/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 Evolveum @@ -50,32 +50,32 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 org.jetbrains @@ -107,25 +107,25 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/repo-sql-impl-test/pom.xml b/repo/repo-sql-impl-test/pom.xml index 1bbe99a7f2e..8e733f89c20 100644 --- a/repo/repo-sql-impl-test/pom.xml +++ b/repo/repo-sql-impl-test/pom.xml @@ -25,7 +25,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -36,37 +36,37 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 @@ -133,13 +133,13 @@ com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test @@ -178,7 +178,7 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/repo-sql-impl/pom.xml b/repo/repo-sql-impl/pom.xml index 673166935ca..8c06b8fb879 100644 --- a/repo/repo-sql-impl/pom.xml +++ b/repo/repo-sql-impl/pom.xml @@ -25,7 +25,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -36,37 +36,37 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 @@ -168,7 +168,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/repo-test-util/pom.xml b/repo/repo-test-util/pom.xml index bd8239ab4e3..d564cb7652d 100644 --- a/repo/repo-test-util/pom.xml +++ b/repo/repo-test-util/pom.xml @@ -23,7 +23,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -34,47 +34,47 @@ com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-cache - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 @@ -113,7 +113,7 @@ com.evolveum.icf dummy-resource - 3.6-SNAPSHOT + 3.6 org.forgerock.opendj @@ -122,7 +122,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/security-api/pom.xml b/repo/security-api/pom.xml index 9a4edd3ae22..5447f20fb21 100644 --- a/repo/security-api/pom.xml +++ b/repo/security-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 @@ -76,7 +76,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/security-impl/pom.xml b/repo/security-impl/pom.xml index d6166e1f632..c52202830b0 100644 --- a/repo/security-impl/pom.xml +++ b/repo/security-impl/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,27 +35,27 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 @@ -87,13 +87,13 @@ com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 test @@ -104,7 +104,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -115,31 +115,31 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/system-init/pom.xml b/repo/system-init/pom.xml index 2c98efa2c80..eaca1653ca4 100644 --- a/repo/system-init/pom.xml +++ b/repo/system-init/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -43,48 +43,48 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo audit-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-cache - 3.6-SNAPSHOT + 3.6 @@ -141,7 +141,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/task-api/pom.xml b/repo/task-api/pom.xml index c1d3025c675..17f414cd142 100644 --- a/repo/task-api/pom.xml +++ b/repo/task-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 stax @@ -59,7 +59,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test diff --git a/repo/task-quartz-impl/pom.xml b/repo/task-quartz-impl/pom.xml index e2ad3c253ba..2a27c238eec 100644 --- a/repo/task-quartz-impl/pom.xml +++ b/repo/task-quartz-impl/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 https://github.com/Evolveum/midpoint.git @@ -35,37 +35,37 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-api - 3.6-SNAPSHOT + 3.6 commons-lang @@ -105,7 +105,7 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 provided @@ -118,13 +118,13 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test @@ -140,13 +140,13 @@ com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test @@ -163,7 +163,7 @@ com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test @@ -174,13 +174,13 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test diff --git a/samples/model-client-sample/pom.xml b/samples/model-client-sample/pom.xml index cb9b4cc5f89..afb5133337d 100644 --- a/samples/model-client-sample/pom.xml +++ b/samples/model-client-sample/pom.xml @@ -21,7 +21,7 @@ com.evolveum.midpoint.samples model-client-sample - 3.6-SNAPSHOT + 3.6 1.8 3.1.6 @@ -149,7 +149,7 @@ com.evolveum.midpoint.model model-client - 3.6-SNAPSHOT + 3.6 org.apache.cxf diff --git a/samples/pom.xml b/samples/pom.xml index 31d3c28935c..ee4558c4f06 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../build-system/pom.xml diff --git a/samples/samples-test/pom.xml b/samples/samples-test/pom.xml index c14c95c8fa2..9afd9655271 100644 --- a/samples/samples-test/pom.xml +++ b/samples/samples-test/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../../build-system/pom.xml @@ -72,49 +72,49 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 test @@ -125,7 +125,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -152,55 +152,55 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -211,7 +211,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/testing/conntest/pom.xml b/testing/conntest/pom.xml index 410ee6d775e..6cd6aa0892d 100644 --- a/testing/conntest/pom.xml +++ b/testing/conntest/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../../build-system/pom.xml @@ -60,82 +60,82 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning provisioning-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 org.apache.directory.api @@ -160,7 +160,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -183,19 +183,19 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -211,7 +211,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/testing/consistency-mechanism/pom.xml b/testing/consistency-mechanism/pom.xml index 9ed65c96c65..210c930e429 100644 --- a/testing/consistency-mechanism/pom.xml +++ b/testing/consistency-mechanism/pom.xml @@ -22,7 +22,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../../build-system/pom.xml @@ -66,85 +66,85 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.provisioning provisioning-api - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 test @@ -155,7 +155,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -177,25 +177,25 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 test @@ -206,7 +206,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/testing/longtest/pom.xml b/testing/longtest/pom.xml index 1d82735d7e6..889d87dcd20 100644 --- a/testing/longtest/pom.xml +++ b/testing/longtest/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6-SNAPSHOT + 3.6 ../../build-system/pom.xml @@ -60,76 +60,76 @@ com.evolveum.midpoint.infra util - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra prism - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra schema - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.infra common - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo repo-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-impl - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.model model-test - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.provisioning provisioning-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo task-quartz-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo audit-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo task-api - 3.6-SNAPSHOT + 3.6 com.evolveum.midpoint.repo security-impl - 3.6-SNAPSHOT + 3.6 runtime com.evolveum.midpoint.repo repo-test-util - 3.6-SNAPSHOT + 3.6 @@ -158,7 +158,7 @@ com.evolveum.midpoint.tools test-ng - 3.6-SNAPSHOT + 3.6 test @@ -181,19 +181,19 @@ com.evolveum.midpoint.infra test-util - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl - 3.6-SNAPSHOT + 3.6 test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6-SNAPSHOT + 3.6 test @@ -209,7 +209,7 @@ com.evolveum.midpoint.repo system-init - 3.6-SNAPSHOT + 3.6 test diff --git a/testing/minipoint/pom.xml b/testing/minipoint/pom.xml index 0926a5523e0..7e5727c1f55 100644 --- a/testing/minipoint/pom.xml +++ b/testing/minipoint/pom.xml @@ -1,6 +1,6 @@ org.testng @@ -78,7 +78,7 @@ com.evolveum.midpoint.tools schema-dist-maven-plugin - 3.6 + 3.7-SNAPSHOT schemadist-prism diff --git a/gui/admin-gui/pom.xml b/gui/admin-gui/pom.xml index 7ca988c02ef..6ff3fd3bbda 100644 --- a/gui/admin-gui/pom.xml +++ b/gui/admin-gui/pom.xml @@ -20,11 +20,11 @@ com.evolveum.midpoint.gui admin-gui war - 3.6 + 3.7-SNAPSHOT gui com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -248,22 +248,22 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT jaxb-impl @@ -282,53 +282,53 @@ com.evolveum.midpoint.repo repo-common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model report-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model workflow-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model certification-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT runtime @@ -353,7 +353,7 @@ com.evolveum.midpoint.repo repo-cache - 3.6 + 3.7-SNAPSHOT runtime @@ -373,25 +373,25 @@ com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT runtime @@ -403,37 +403,37 @@ com.evolveum.midpoint.model certification-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model workflow-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model notifications-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model report-impl - 3.6 + 3.7-SNAPSHOT runtime @@ -450,7 +450,7 @@ com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT xml-apis @@ -659,19 +659,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -688,13 +688,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT test @@ -821,7 +821,7 @@ com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test diff --git a/gui/pom.xml b/gui/pom.xml index 55871bbbde8..f4bd9cd070d 100644 --- a/gui/pom.xml +++ b/gui/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/icf-connectors/dummy-connector-fake/pom.xml b/icf-connectors/dummy-connector-fake/pom.xml index 43b12ee5917..d4217217b06 100644 --- a/icf-connectors/dummy-connector-fake/pom.xml +++ b/icf-connectors/dummy-connector-fake/pom.xml @@ -20,12 +20,12 @@ Dummy Connector Fake com.evolveum.icf dummy-connector-fake - 3.6 + 3.7-SNAPSHOT jar icf-connectors com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git diff --git a/icf-connectors/dummy-connector/pom.xml b/icf-connectors/dummy-connector/pom.xml index e42ebcc6e29..0393c1fe69b 100644 --- a/icf-connectors/dummy-connector/pom.xml +++ b/icf-connectors/dummy-connector/pom.xml @@ -20,12 +20,12 @@ Dummy Connector com.evolveum.icf dummy-connector - 3.6 + 3.7-SNAPSHOT jar icf-connectors com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -40,7 +40,7 @@ com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT commons-lang diff --git a/icf-connectors/dummy-resource/pom.xml b/icf-connectors/dummy-resource/pom.xml index be13fdf3a2a..ddcaaf1db25 100644 --- a/icf-connectors/dummy-resource/pom.xml +++ b/icf-connectors/dummy-resource/pom.xml @@ -20,12 +20,12 @@ Dummy Resource com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT jar icf-connectors com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,7 +36,7 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT commons-lang diff --git a/icf-connectors/pom.xml b/icf-connectors/pom.xml index 6bdd6f3bab8..0d81b2e0a42 100644 --- a/icf-connectors/pom.xml +++ b/icf-connectors/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml @@ -55,7 +55,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/infra/common/pom.xml b/infra/common/pom.xml index 160612c61b3..119ed6292b2 100644 --- a/infra/common/pom.xml +++ b/infra/common/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT org.jetbrains @@ -103,13 +103,13 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/infra/pom.xml b/infra/pom.xml index 3dbef3309d5..02a7a552460 100644 --- a/infra/pom.xml +++ b/infra/pom.xml @@ -22,7 +22,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/infra/prism-maven-plugin/pom.xml b/infra/prism-maven-plugin/pom.xml index a97573fdef8..f64bf6104f8 100644 --- a/infra/prism-maven-plugin/pom.xml +++ b/infra/prism-maven-plugin/pom.xml @@ -20,13 +20,13 @@ 4.0.0 com.evolveum.midpoint.infra prism-maven-plugin - 3.6 + 3.7-SNAPSHOT maven-plugin midPoint Infrastructure - prism maven plugin infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -37,12 +37,12 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT org.apache.maven diff --git a/infra/prism/pom.xml b/infra/prism/pom.xml index a4523fb84b9..715db76bd36 100644 --- a/infra/prism/pom.xml +++ b/infra/prism/pom.xml @@ -20,12 +20,12 @@ 4.0.0 com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT midPoint Infrastructure - prism infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,7 +36,7 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT @@ -185,7 +185,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/infra/schema-pure-jaxb/pom.xml b/infra/schema-pure-jaxb/pom.xml index 07a873f4f0f..e767ec53d61 100644 --- a/infra/schema-pure-jaxb/pom.xml +++ b/infra/schema-pure-jaxb/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -70,7 +70,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/infra/schema/pom.xml b/infra/schema/pom.xml index a341f82c298..d930356c7fa 100644 --- a/infra/schema/pom.xml +++ b/infra/schema/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,12 +35,12 @@ com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT commons-collections @@ -114,7 +114,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -307,7 +307,7 @@ com.evolveum.midpoint.tools xjc-plugin - 3.6 + 3.7-SNAPSHOT com.sun.xml.bind @@ -319,7 +319,7 @@ com.evolveum.midpoint.infra prism-maven-plugin - 3.6 + 3.7-SNAPSHOT src/main/resources/xml/ns/public/common/common-3.xsd diff --git a/infra/test-util/pom.xml b/infra/test-util/pom.xml index 23ae0fd96aa..833b5047686 100644 --- a/infra/test-util/pom.xml +++ b/infra/test-util/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -43,17 +43,17 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT commons-lang @@ -113,7 +113,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT diff --git a/infra/util/pom.xml b/infra/util/pom.xml index 1454a064940..8374af391f3 100644 --- a/infra/util/pom.xml +++ b/infra/util/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git diff --git a/infra/ws-util/pom.xml b/infra/ws-util/pom.xml index 2b2d6c6e163..2515cdcba51 100644 --- a/infra/ws-util/pom.xml +++ b/infra/ws-util/pom.xml @@ -24,7 +24,7 @@ infra com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -77,7 +77,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/model/certification-api/pom.xml b/model/certification-api/pom.xml index d2f648be59e..a9b7acad005 100644 --- a/model/certification-api/pom.xml +++ b/model/certification-api/pom.xml @@ -21,7 +21,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT 4.0.0 midPoint Access Certification - api @@ -37,27 +37,27 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/model/certification-impl/pom.xml b/model/certification-impl/pom.xml index c2c990db341..e2876991a7b 100644 --- a/model/certification-impl/pom.xml +++ b/model/certification-impl/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,67 +35,67 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model certification-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model notifications-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model workflow-api - 3.6 + 3.7-SNAPSHOT @@ -131,50 +131,50 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT test-jar test com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model notifications-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model report-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model report-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT test @@ -185,7 +185,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -211,37 +211,37 @@ com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test diff --git a/model/model-api/pom.xml b/model/model-api/pom.xml index c0809027428..9af3e7c35b2 100644 --- a/model/model-api/pom.xml +++ b/model/model-api/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT Evolveum @@ -50,42 +50,42 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/model/model-client/pom.xml b/model/model-client/pom.xml index 2858a2b9475..7d8180a4ee1 100644 --- a/model/model-client/pom.xml +++ b/model/model-client/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -120,7 +120,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -219,7 +219,7 @@ com.evolveum.midpoint.tools xjc-plugin - 3.6 + 3.7-SNAPSHOT diff --git a/model/model-common/pom.xml b/model/model-common/pom.xml index bac2d4a18c8..e95757dd3d5 100644 --- a/model/model-common/pom.xml +++ b/model/model-common/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT Evolveum @@ -50,52 +50,52 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test @@ -256,7 +256,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -272,7 +272,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/model/workflow-api/pom.xml b/model/workflow-api/pom.xml index d594713d893..408520a4261 100644 --- a/model/workflow-api/pom.xml +++ b/model/workflow-api/pom.xml @@ -21,7 +21,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT 4.0.0 midPoint Workflow - api @@ -37,43 +37,43 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT diff --git a/model/workflow-impl/pom.xml b/model/workflow-impl/pom.xml index e7ae38bc8b3..fb11ded0940 100644 --- a/model/workflow-impl/pom.xml +++ b/model/workflow-impl/pom.xml @@ -24,7 +24,7 @@ model com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,77 +35,77 @@ com.evolveum.midpoint.model workflow-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT @@ -125,7 +125,7 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT provided @@ -181,44 +181,44 @@ com.evolveum.midpoint.model notifications-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT test-jar test com.evolveum.midpoint.model notifications-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model report-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model report-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -229,7 +229,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -255,37 +255,37 @@ com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test diff --git a/pom.xml b/pom.xml index 8995a38d536..13a96e64d1a 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ midPoint Project com.evolveum.midpoint midpoint - 3.6 + 3.7-SNAPSHOT pom Utility module to compile all of the maven based midPoint projects. diff --git a/provisioning/pom.xml b/provisioning/pom.xml index b958df52e67..ce6b6170550 100644 --- a/provisioning/pom.xml +++ b/provisioning/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/provisioning/provisioning-api/pom.xml b/provisioning/provisioning-api/pom.xml index 4e96a6326b8..b5633a6c7cf 100644 --- a/provisioning/provisioning-api/pom.xml +++ b/provisioning/provisioning-api/pom.xml @@ -20,12 +20,12 @@ midPoint Provisioning - api com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT jar provisioning com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,32 +36,32 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/provisioning/provisioning-impl/pom.xml b/provisioning/provisioning-impl/pom.xml index 2544ae105c8..57501f10f12 100644 --- a/provisioning/provisioning-impl/pom.xml +++ b/provisioning/provisioning-impl/pom.xml @@ -24,7 +24,7 @@ provisioning com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,69 +35,69 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning ucf-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-cache - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning ucf-impl-connid - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.provisioning ucf-impl-builtin - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo repo-common - 3.6 + 3.7-SNAPSHOT @@ -126,19 +126,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -149,19 +149,19 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test @@ -172,13 +172,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test @@ -221,13 +221,13 @@ com.evolveum.icf dummy-connector - 3.6 + 3.7-SNAPSHOT test com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT test @@ -248,7 +248,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/provisioning/ucf-api/pom.xml b/provisioning/ucf-api/pom.xml index 35c0996bc25..67ff275688f 100644 --- a/provisioning/ucf-api/pom.xml +++ b/provisioning/ucf-api/pom.xml @@ -20,12 +20,12 @@ Unified Connector Framework - api com.evolveum.midpoint.provisioning ucf-api - 3.6 + 3.7-SNAPSHOT jar provisioning com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,22 +36,22 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT commons-lang @@ -64,7 +64,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/provisioning/ucf-impl-builtin/pom.xml b/provisioning/ucf-impl-builtin/pom.xml index eb3f488c820..9d152325d2f 100644 --- a/provisioning/ucf-impl-builtin/pom.xml +++ b/provisioning/ucf-impl-builtin/pom.xml @@ -24,7 +24,7 @@ provisioning com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT Implementation for the built-in midpoint connectors, such as the built-in "manaual connector" capability. @@ -36,27 +36,27 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning ucf-api - 3.6 + 3.7-SNAPSHOT @@ -85,19 +85,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -108,19 +108,19 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test @@ -131,13 +131,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test @@ -153,7 +153,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/provisioning/ucf-impl-connid/pom.xml b/provisioning/ucf-impl-connid/pom.xml index 1760ab2e1f8..58ac851f710 100644 --- a/provisioning/ucf-impl-connid/pom.xml +++ b/provisioning/ucf-impl-connid/pom.xml @@ -24,7 +24,7 @@ provisioning com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,32 +35,32 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning ucf-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT @@ -107,19 +107,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -130,19 +130,19 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test @@ -153,13 +153,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test @@ -202,13 +202,13 @@ com.evolveum.icf dummy-connector - 3.6 + 3.7-SNAPSHOT test com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT test @@ -229,7 +229,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/audit-api/pom.xml b/repo/audit-api/pom.xml index df7f13e7fae..3651fd330f2 100644 --- a/repo/audit-api/pom.xml +++ b/repo/audit-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT commons-configuration @@ -55,13 +55,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT org.jetbrains diff --git a/repo/audit-impl/pom.xml b/repo/audit-impl/pom.xml index 28f875e089e..abc6c4ac44c 100644 --- a/repo/audit-impl/pom.xml +++ b/repo/audit-impl/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,32 +35,32 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT commons-configuration @@ -84,7 +84,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -100,13 +100,13 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test @@ -117,7 +117,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/pom.xml b/repo/pom.xml index d55311b1947..83e560f29e9 100644 --- a/repo/pom.xml +++ b/repo/pom.xml @@ -22,7 +22,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/repo/repo-api/pom.xml b/repo/repo-api/pom.xml index 31a601f2965..e11ecaca329 100644 --- a/repo/repo-api/pom.xml +++ b/repo/repo-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT commons-lang @@ -62,7 +62,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/repo-cache/pom.xml b/repo/repo-cache/pom.xml index 52a6ffc66ec..10cece1c127 100644 --- a/repo/repo-cache/pom.xml +++ b/repo/repo-cache/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,22 +35,22 @@ com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT commons-lang @@ -74,7 +74,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/repo-common/pom.xml b/repo/repo-common/pom.xml index f387d2d5778..99cd68b8dd0 100644 --- a/repo/repo-common/pom.xml +++ b/repo/repo-common/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT Evolveum @@ -50,32 +50,32 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT org.jetbrains @@ -107,25 +107,25 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/repo-sql-impl-test/pom.xml b/repo/repo-sql-impl-test/pom.xml index 8e733f89c20..eaca6975291 100644 --- a/repo/repo-sql-impl-test/pom.xml +++ b/repo/repo-sql-impl-test/pom.xml @@ -25,7 +25,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,37 +36,37 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT @@ -133,13 +133,13 @@ com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test @@ -178,7 +178,7 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/repo-sql-impl/pom.xml b/repo/repo-sql-impl/pom.xml index 8c06b8fb879..d3fb43a730c 100644 --- a/repo/repo-sql-impl/pom.xml +++ b/repo/repo-sql-impl/pom.xml @@ -25,7 +25,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,37 +36,37 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT @@ -168,7 +168,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/repo-test-util/pom.xml b/repo/repo-test-util/pom.xml index d564cb7652d..90fddd95dd8 100644 --- a/repo/repo-test-util/pom.xml +++ b/repo/repo-test-util/pom.xml @@ -23,7 +23,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -34,47 +34,47 @@ com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-cache - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT @@ -113,7 +113,7 @@ com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT org.forgerock.opendj @@ -122,7 +122,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/security-api/pom.xml b/repo/security-api/pom.xml index 5447f20fb21..06ef0ce4de9 100644 --- a/repo/security-api/pom.xml +++ b/repo/security-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT @@ -76,7 +76,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/security-impl/pom.xml b/repo/security-impl/pom.xml index c52202830b0..f478f1274ee 100644 --- a/repo/security-impl/pom.xml +++ b/repo/security-impl/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,27 +35,27 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT @@ -87,13 +87,13 @@ com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT test @@ -104,7 +104,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -115,31 +115,31 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/system-init/pom.xml b/repo/system-init/pom.xml index eaca1653ca4..ae8f1b24f17 100644 --- a/repo/system-init/pom.xml +++ b/repo/system-init/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -43,48 +43,48 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-cache - 3.6 + 3.7-SNAPSHOT @@ -141,7 +141,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/task-api/pom.xml b/repo/task-api/pom.xml index 17f414cd142..b0b66f77475 100644 --- a/repo/task-api/pom.xml +++ b/repo/task-api/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,17 +35,17 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT stax @@ -59,7 +59,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/repo/task-quartz-impl/pom.xml b/repo/task-quartz-impl/pom.xml index 2a27c238eec..c52ec90adcc 100644 --- a/repo/task-quartz-impl/pom.xml +++ b/repo/task-quartz-impl/pom.xml @@ -24,7 +24,7 @@ repo com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -35,37 +35,37 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-api - 3.6 + 3.7-SNAPSHOT commons-lang @@ -105,7 +105,7 @@ com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT provided @@ -118,13 +118,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test @@ -140,13 +140,13 @@ com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test @@ -163,7 +163,7 @@ com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test @@ -174,13 +174,13 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test diff --git a/samples/model-client-sample/pom.xml b/samples/model-client-sample/pom.xml index afb5133337d..8bca21362c4 100644 --- a/samples/model-client-sample/pom.xml +++ b/samples/model-client-sample/pom.xml @@ -21,7 +21,7 @@ com.evolveum.midpoint.samples model-client-sample - 3.6 + 3.7-SNAPSHOT 1.8 3.1.6 @@ -149,7 +149,7 @@ com.evolveum.midpoint.model model-client - 3.6 + 3.7-SNAPSHOT org.apache.cxf diff --git a/samples/pom.xml b/samples/pom.xml index ee4558c4f06..69e88ecf073 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/samples/samples-test/pom.xml b/samples/samples-test/pom.xml index 9afd9655271..aaddf86eea4 100644 --- a/samples/samples-test/pom.xml +++ b/samples/samples-test/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml @@ -72,49 +72,49 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test @@ -125,7 +125,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -152,55 +152,55 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -211,7 +211,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/conntest/pom.xml b/testing/conntest/pom.xml index 6cd6aa0892d..b0a5f0e1c23 100644 --- a/testing/conntest/pom.xml +++ b/testing/conntest/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml @@ -60,82 +60,82 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT org.apache.directory.api @@ -160,7 +160,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -183,19 +183,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -211,7 +211,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/consistency-mechanism/pom.xml b/testing/consistency-mechanism/pom.xml index 210c930e429..af7b9d9d456 100644 --- a/testing/consistency-mechanism/pom.xml +++ b/testing/consistency-mechanism/pom.xml @@ -22,7 +22,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml @@ -66,85 +66,85 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test @@ -155,7 +155,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -177,25 +177,25 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test @@ -206,7 +206,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/longtest/pom.xml b/testing/longtest/pom.xml index 889d87dcd20..99da20577aa 100644 --- a/testing/longtest/pom.xml +++ b/testing/longtest/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml @@ -60,76 +60,76 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT @@ -158,7 +158,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -181,19 +181,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -209,7 +209,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/minipoint/pom.xml b/testing/minipoint/pom.xml index 7e5727c1f55..ea6679b2dcb 100644 --- a/testing/minipoint/pom.xml +++ b/testing/minipoint/pom.xml @@ -26,7 +26,7 @@ minipoint com.evolveum.midpoint.testing - 3.6 + 3.7-SNAPSHOT midPoint Testing - MiniPoint Atlassian JIRA @@ -38,7 +38,7 @@ https://fisheye.evolveum.com/browse/midPoint - 3.6 + 3.7-SNAPSHOT 6.8.8 1.4.0.49 diff --git a/testing/pom.xml b/testing/pom.xml index 999ad932c83..36c269b4b5e 100644 --- a/testing/pom.xml +++ b/testing/pom.xml @@ -24,7 +24,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/testing/rest/pom.xml b/testing/rest/pom.xml index 943eb7a52f2..b9440f172a9 100644 --- a/testing/rest/pom.xml +++ b/testing/rest/pom.xml @@ -20,7 +20,7 @@ com.evolveum.midpoint parent - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml rest @@ -43,66 +43,66 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT @@ -127,13 +127,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test @@ -155,25 +155,25 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test @@ -189,7 +189,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/sanity/pom.xml b/testing/sanity/pom.xml index 3297a75e2b9..aac2b127bd1 100644 --- a/testing/sanity/pom.xml +++ b/testing/sanity/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml @@ -60,109 +60,109 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model report-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model notifications-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.model workflow-impl - 3.6 + 3.7-SNAPSHOT test @@ -203,7 +203,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -231,19 +231,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -254,7 +254,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/selenidetest/pom.xml b/testing/selenidetest/pom.xml index 80e10447332..eea21322176 100644 --- a/testing/selenidetest/pom.xml +++ b/testing/selenidetest/pom.xml @@ -6,12 +6,12 @@ Selenide tests com.evolveum.midpoint.testing selenidetest - 3.6 + 3.7-SNAPSHOT testing com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -57,7 +57,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/story/pom.xml b/testing/story/pom.xml index 2b870373e2a..bd484d3235f 100644 --- a/testing/story/pom.xml +++ b/testing/story/pom.xml @@ -23,7 +23,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml @@ -60,113 +60,113 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo audit-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model model-impl - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model workflow-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model workflow-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model notifications-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.model notifications-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.model model-test - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.provisioning provisioning-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-quartz-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo repo-test-util - 3.6 + 3.7-SNAPSHOT com.evolveum.icf dummy-resource - 3.6 + 3.7-SNAPSHOT @@ -199,7 +199,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test @@ -232,19 +232,19 @@ com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.repo repo-sql-impl-test - 3.6 + 3.7-SNAPSHOT test @@ -260,7 +260,7 @@ com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT test diff --git a/testing/wstest/pom.xml b/testing/wstest/pom.xml index d5fb94c75e9..8f74516a209 100644 --- a/testing/wstest/pom.xml +++ b/testing/wstest/pom.xml @@ -22,7 +22,7 @@ com.evolveum.midpoint parent - 3.6 + 3.7-SNAPSHOT ../../build-system/pom.xml wstest @@ -42,7 +42,7 @@ com.evolveum.midpoint.model model-client - 3.6 + 3.7-SNAPSHOT @@ -102,13 +102,13 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test com.evolveum.midpoint.infra test-util - 3.6 + 3.7-SNAPSHOT test @@ -119,7 +119,7 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT test diff --git a/tools/gui-i18n/pom.xml b/tools/gui-i18n/pom.xml index 0d8d590402b..618953ee903 100644 --- a/tools/gui-i18n/pom.xml +++ b/tools/gui-i18n/pom.xml @@ -25,7 +25,7 @@ tools com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -48,7 +48,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/tools/pom.xml b/tools/pom.xml index d0af860d5b8..32bcdd53627 100644 --- a/tools/pom.xml +++ b/tools/pom.xml @@ -24,7 +24,7 @@ parent com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT ../build-system/pom.xml diff --git a/tools/repo-ninja/pom.xml b/tools/repo-ninja/pom.xml index a52e74882f6..32ae42b48bf 100644 --- a/tools/repo-ninja/pom.xml +++ b/tools/repo-ninja/pom.xml @@ -25,7 +25,7 @@ tools com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,55 +36,55 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra schema - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.infra common - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo task-api - 3.6 + 3.7-SNAPSHOT com.evolveum.midpoint.repo repo-sql-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo security-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo audit-impl - 3.6 + 3.7-SNAPSHOT runtime com.evolveum.midpoint.repo system-init - 3.6 + 3.7-SNAPSHOT runtime @@ -130,7 +130,7 @@ com.evolveum.midpoint.tools test-ng - 3.6 + 3.7-SNAPSHOT test diff --git a/tools/schema-dist-maven-plugin/pom.xml b/tools/schema-dist-maven-plugin/pom.xml index 0d88cda479b..e04866df9c5 100644 --- a/tools/schema-dist-maven-plugin/pom.xml +++ b/tools/schema-dist-maven-plugin/pom.xml @@ -20,13 +20,13 @@ 4.0.0 com.evolveum.midpoint.tools schema-dist-maven-plugin - 3.6 + 3.7-SNAPSHOT maven-plugin midPoint Tools - schema dist maven plugin tools com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -73,7 +73,7 @@ com.evolveum.midpoint.infra util - 3.6 + 3.7-SNAPSHOT diff --git a/tools/test-ng/pom.xml b/tools/test-ng/pom.xml index 7c40974e43c..b8029824d50 100644 --- a/tools/test-ng/pom.xml +++ b/tools/test-ng/pom.xml @@ -24,7 +24,7 @@ tools com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git diff --git a/tools/xjc-plugin/pom.xml b/tools/xjc-plugin/pom.xml index 080dd031c9d..74278bd589e 100644 --- a/tools/xjc-plugin/pom.xml +++ b/tools/xjc-plugin/pom.xml @@ -19,13 +19,13 @@ 4.0.0 com.evolveum.midpoint.tools xjc-plugin - 3.6 + 3.7-SNAPSHOT jar midPoint Infrastructure - xjc plugin tools com.evolveum.midpoint - 3.6 + 3.7-SNAPSHOT https://github.com/Evolveum/midpoint.git @@ -36,7 +36,7 @@ com.evolveum.midpoint.infra prism - 3.6 + 3.7-SNAPSHOT com.sun.xml.bind diff --git a/weblogic-build/pom.xml b/weblogic-build/pom.xml index 1ed72f1eba1..29e3e5deb3f 100644 --- a/weblogic-build/pom.xml +++ b/weblogic-build/pom.xml @@ -20,7 +20,7 @@ com.evolveum.midpoint.dist midPoint-weblogic ear - 3.6 + 3.7-SNAPSHOT midPoint distribution for WebLogic Server https://github.com/Evolveum/midpoint.git @@ -36,7 +36,7 @@ com.evolveum.midpoint.gui admin-gui - 3.6 + 3.7-SNAPSHOT war From 82bc725f69d8002b69c5ec47d2dc4ee30bc9016e Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Tue, 4 Jul 2017 17:16:50 +0200 Subject: [PATCH 7/8] Switch to LDAP/AD connector 1.5-SNAPSHOT --- build-system/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-system/pom.xml b/build-system/pom.xml index caaeabb204c..1d239b36dcd 100644 --- a/build-system/pom.xml +++ b/build-system/pom.xml @@ -661,7 +661,7 @@ com.evolveum.polygon connector-ldap - 1.4.5 + 1.5-SNAPSHOT xml-apis From b962fbdcb32bab9afbcf9bd5d7d12edb2ae87010 Mon Sep 17 00:00:00 2001 From: Radovan Semancik Date: Tue, 4 Jul 2017 17:25:35 +0200 Subject: [PATCH 8/8] Updating test files for new LDAP connector version --- .../ucf-impl-connid/src/test/resources/connector-ldap.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provisioning/ucf-impl-connid/src/test/resources/connector-ldap.xml b/provisioning/ucf-impl-connid/src/test/resources/connector-ldap.xml index 01fab86da3a..66cd6dca038 100644 --- a/provisioning/ucf-impl-connid/src/test/resources/connector-ldap.xml +++ b/provisioning/ucf-impl-connid/src/test/resources/connector-ldap.xml @@ -23,7 +23,7 @@ ICF com.evolveum.polygon.connector.ldap.LdapConnector http://midpoint.evolveum.com/xml/ns/public/connector/icf-1 com.evolveum.polygon.connector.ldap.LdapConnector - 1.4.5 + 1.5-SNAPSHOT com.evolveum.polygon.connector-ldap http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/bundle/com.evolveum.polygon.connector-ldap/com.evolveum.polygon.connector.ldap.LdapConnector