diff --git a/change-version-branch.sh b/change-version-branch.sh new file mode 100644 index 00000000..458df8dd --- /dev/null +++ b/change-version-branch.sh @@ -0,0 +1,30 @@ +#!/bin/bash +export CURRENT_BRANCH=`git branch --show-current` +if [ "$CURRENT_BRANCH" = "develop" ]; then +echo "We are correctly in develop branch" +else +echo "We are in the $CURRENT_BRANCH but this script can be run only from develop branch" +exit -1 +fi +if [ -n "$1" ] +then + echo "Old version: $1" +else + echo "Required actual version as 1st parameter" + exit 1 +fi +if [ -n "$2" ] +then + echo "New version: $2" +else + echo "Required New version as 2nd parameter" + exit 1 +fi +echo "Changing from version $1 to $2" +export NEW_VERSION_BRANCH="feature/change-version-$2" +echo "Create new version branch $NEW_VERSION_BRANCH" +git checkout -b $NEW_VERSION_BRANCH +find . -name pom.xml | xargs sed -i s/"$1"/"$2"/ +find . -name pom.xml | xargs git stage +git commit -m"Changed version from $1 to $2" + diff --git a/change-version.sh b/change-version.sh deleted file mode 100644 index b2e2bf8f..00000000 --- a/change-version.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -if [ -n "$1" ] -then - echo "Old version: $1" -else - echo "Required actual version as 1st parameter" - exit 1 -fi -if [ -n "$2" ] -then - echo "New version: $2" -else - echo "Required New version as 2nd parameter" - exit 1 -fi -echo "Changing from version $1 to $2" -find . -name pom.xml | xargs sed -i s/"$1"/"$2"/ -find . -name pom.xml | xargs git stage -git commit -m"Changed version from $1 to $2" - diff --git a/com.openi40.logistics.parent/opemi40-operational-model/pom.xml b/com.openi40.logistics.parent/opemi40-operational-model/pom.xml index 4d50ad80..0da64977 100644 --- a/com.openi40.logistics.parent/opemi40-operational-model/pom.xml +++ b/com.openi40.logistics.parent/opemi40-operational-model/pom.xml @@ -3,7 +3,7 @@ com.openi40.logistics.parent com.openi40.logistics.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT opemi40-operational-model diff --git a/com.openi40.logistics.parent/pom.xml b/com.openi40.logistics.parent/pom.xml index ce551275..c292a1dc 100644 --- a/com.openi40.logistics.parent/pom.xml +++ b/com.openi40.logistics.parent/pom.xml @@ -3,7 +3,7 @@ com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.logistics.parent com.openi40.logistics.parent diff --git a/openi40.commons/Mapper/pom.xml b/openi40.commons/Mapper/pom.xml index 13827f5f..673334a5 100644 --- a/openi40.commons/Mapper/pom.xml +++ b/openi40.commons/Mapper/pom.xml @@ -5,7 +5,7 @@ com.openi40.commons com.openi40.commons.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Mapper diff --git a/openi40.commons/WebConfigs/pom.xml b/openi40.commons/WebConfigs/pom.xml index 6d002c16..99033cd9 100644 --- a/openi40.commons/WebConfigs/pom.xml +++ b/openi40.commons/WebConfigs/pom.xml @@ -3,7 +3,7 @@ com.openi40.commons com.openi40.commons.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT WebConfigs \ No newline at end of file diff --git a/openi40.commons/multithreading-config/pom.xml b/openi40.commons/multithreading-config/pom.xml index 8a20021c..c89004f8 100644 --- a/openi40.commons/multithreading-config/pom.xml +++ b/openi40.commons/multithreading-config/pom.xml @@ -3,7 +3,7 @@ com.openi40.commons com.openi40.commons.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT multithreading-config \ No newline at end of file diff --git a/openi40.commons/openi40-tests-support/pom.xml b/openi40.commons/openi40-tests-support/pom.xml index ffeea3d2..17c448d1 100644 --- a/openi40.commons/openi40-tests-support/pom.xml +++ b/openi40.commons/openi40-tests-support/pom.xml @@ -5,7 +5,7 @@ com.openi40.commons com.openi40.commons.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-tests-support diff --git a/openi40.commons/persistence-datamodel-utils/pom.xml b/openi40.commons/persistence-datamodel-utils/pom.xml index e13027bd..fe431e9d 100644 --- a/openi40.commons/persistence-datamodel-utils/pom.xml +++ b/openi40.commons/persistence-datamodel-utils/pom.xml @@ -5,7 +5,7 @@ com.openi40.commons com.openi40.commons.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT persistence-datamodel-utils diff --git a/openi40.commons/pom.xml b/openi40.commons/pom.xml index db36a1b7..2090b33d 100644 --- a/openi40.commons/pom.xml +++ b/openi40.commons/pom.xml @@ -5,7 +5,7 @@ com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.commons com.openi40.commons.parent diff --git a/openi40.mes/openi40-mes-shared-assets/pom.xml b/openi40.mes/openi40-mes-shared-assets/pom.xml index dbcd5d7c..68e36e9b 100644 --- a/openi40.mes/openi40-mes-shared-assets/pom.xml +++ b/openi40.mes/openi40-mes-shared-assets/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes com.openi40.mes.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-shared-assets diff --git a/openi40.mes/openi40-mes-shared-model/pom.xml b/openi40.mes/openi40-mes-shared-model/pom.xml index 8df4cbb8..2a8c47cf 100644 --- a/openi40.mes/openi40-mes-shared-model/pom.xml +++ b/openi40.mes/openi40-mes-shared-model/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes com.openi40.mes.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-shared-model diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-integrations-ifaces/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-integrations-ifaces/pom.xml index 66ff93bd..760c1c32 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-integrations-ifaces/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-integrations-ifaces/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-integrations-ifaces diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-aps-broker/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-aps-broker/pom.xml index 824e1082..8d9aead3 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-aps-broker/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-aps-broker/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.io openi40-mes-io - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-aps-broker diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-mqtt/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-mqtt/pom.xml index 1a5b5bf8..d481ab3a 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-mqtt/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-mqtt/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.io openi40-mes-io - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-generical-mqtt diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-rest/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-rest/pom.xml index dfc0053c..8b1c75a7 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-rest/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-generical-rest/pom.xml @@ -3,7 +3,7 @@ com.openi40.mes.io openi40-mes-io - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-generical-rest \ No newline at end of file diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-rabbitmq/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-rabbitmq/pom.xml index 4887edb1..5781b170 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-rabbitmq/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-io/openi40-mes-rabbitmq/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.io openi40-mes-io - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-rabbitmq diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-io/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-io/pom.xml index ddd8aee5..506d62c5 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-io/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-io/pom.xml @@ -3,7 +3,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.mes.io openi40-mes-io diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-logical-kernel.app/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-logical-kernel.app/pom.xml index f9cee33e..e55da3b0 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-logical-kernel.app/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-logical-kernel.app/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-logical-kernel.app diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-ifaces/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-ifaces/pom.xml index 689843bf..b4d9a7d8 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-ifaces/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-ifaces/pom.xml @@ -3,7 +3,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-logicalmsg-ifaces diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-kernel/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-kernel/pom.xml index ea2382f0..df25c34b 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-kernel/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-kernel/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-logicalmsg-kernel diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-model/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-model/pom.xml index 0c1e45bc..401b410a 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-model/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-model/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-logicalmsg-model \ No newline at end of file diff --git a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-persistence/pom.xml b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-persistence/pom.xml index 154bf924..af2daf2a 100644 --- a/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-persistence/pom.xml +++ b/openi40.mes/openi40.mes.iiot/openi40-mes-logicalmsg-persistence/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.iiot com.openi40.mes.iiot.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-logicalmsg-persistence diff --git a/openi40.mes/openi40.mes.iiot/pom.xml b/openi40.mes/openi40.mes.iiot/pom.xml index 25ce4181..515ea810 100644 --- a/openi40.mes/openi40.mes.iiot/pom.xml +++ b/openi40.mes/openi40.mes.iiot/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes com.openi40.mes.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.mes.iiot.parent com.openi40.mes.iiot diff --git a/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-angular-app/pom.xml b/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-angular-app/pom.xml index 1587a719..36cc7004 100644 --- a/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-angular-app/pom.xml +++ b/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-angular-app/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.workstation com.openi40.mes.workstation.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-asset-workstation-angular-app diff --git a/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-app/pom.xml b/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-app/pom.xml index cad314c0..fc7887ae 100644 --- a/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-app/pom.xml +++ b/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-app/pom.xml @@ -3,7 +3,7 @@ com.openi40.mes.workstation com.openi40.mes.workstation.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-asset-workstation-app diff --git a/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-support/pom.xml b/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-support/pom.xml index ad899816..86f63618 100644 --- a/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-support/pom.xml +++ b/openi40.mes/openi40.mes.workstation/openi40-mes-asset-workstation-support/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.workstation com.openi40.mes.workstation.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-asset-workstation-support diff --git a/openi40.mes/openi40.mes.workstation/openi40-mes-task-tracking-model/pom.xml b/openi40.mes/openi40.mes.workstation/openi40-mes-task-tracking-model/pom.xml index af52adef..4e9e5b40 100644 --- a/openi40.mes/openi40.mes.workstation/openi40-mes-task-tracking-model/pom.xml +++ b/openi40.mes/openi40.mes.workstation/openi40-mes-task-tracking-model/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes.workstation com.openi40.mes.workstation.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-mes-task-tracking-model @@ -22,7 +22,7 @@ com.openi40.mes.workstation openi40-mes-asset-workstation-support - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT \ No newline at end of file diff --git a/openi40.mes/openi40.mes.workstation/pom.xml b/openi40.mes/openi40.mes.workstation/pom.xml index dabdbc61..9a8cb6ba 100644 --- a/openi40.mes/openi40.mes.workstation/pom.xml +++ b/openi40.mes/openi40.mes.workstation/pom.xml @@ -5,7 +5,7 @@ com.openi40.mes com.openi40.mes.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.mes.workstation com.openi40.mes.workstation.parent diff --git a/openi40.mes/pom.xml b/openi40.mes/pom.xml index 63f9ea7b..2e3e2872 100644 --- a/openi40.mes/pom.xml +++ b/openi40.mes/pom.xml @@ -5,7 +5,7 @@ com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.mes.parent com.openi40.mes diff --git a/openi40.platform/IOMessages.Processing/pom.xml b/openi40.platform/IOMessages.Processing/pom.xml index 511aa6d3..85bfc7f3 100644 --- a/openi40.platform/IOMessages.Processing/pom.xml +++ b/openi40.platform/IOMessages.Processing/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT IOMessages.Processing diff --git a/openi40.platform/Persistence.Config/pom.xml b/openi40.platform/Persistence.Config/pom.xml index b69f4e3b..e1b7abb6 100644 --- a/openi40.platform/Persistence.Config/pom.xml +++ b/openi40.platform/Persistence.Config/pom.xml @@ -5,7 +5,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Persistence.Config diff --git a/openi40.platform/Persistence.IOMessages.Controllers/pom.xml b/openi40.platform/Persistence.IOMessages.Controllers/pom.xml index 750d6295..b1ed954c 100644 --- a/openi40.platform/Persistence.IOMessages.Controllers/pom.xml +++ b/openi40.platform/Persistence.IOMessages.Controllers/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Persistence.IOMessages.Controllers diff --git a/openi40.platform/Persistence.IOMessages.Spooling/pom.xml b/openi40.platform/Persistence.IOMessages.Spooling/pom.xml index bd8c09de..9201438a 100644 --- a/openi40.platform/Persistence.IOMessages.Spooling/pom.xml +++ b/openi40.platform/Persistence.IOMessages.Spooling/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Persistence.IOMessages.Spooling diff --git a/openi40.platform/Persistence.Input.Channel/pom.xml b/openi40.platform/Persistence.Input.Channel/pom.xml index 45534ed8..71100336 100644 --- a/openi40.platform/Persistence.Input.Channel/pom.xml +++ b/openi40.platform/Persistence.Input.Channel/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Persistence.Input.Channel diff --git a/openi40.platform/Persistence.Output.Channel/pom.xml b/openi40.platform/Persistence.Output.Channel/pom.xml index 84db0fb1..f71eef9d 100644 --- a/openi40.platform/Persistence.Output.Channel/pom.xml +++ b/openi40.platform/Persistence.Output.Channel/pom.xml @@ -5,7 +5,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Persistence.Output.Channel diff --git a/openi40.platform/openi40.app/pom.xml b/openi40.platform/openi40.app/pom.xml index 2f42d7eb..c3492395 100644 --- a/openi40.platform/openi40.app/pom.xml +++ b/openi40.platform/openi40.app/pom.xml @@ -5,7 +5,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.app diff --git a/openi40.platform/openi40.backoffice/openi40.backoffice.app/pom.xml b/openi40.platform/openi40.backoffice/openi40.backoffice.app/pom.xml index cae08e54..7e249940 100644 --- a/openi40.platform/openi40.backoffice/openi40.backoffice.app/pom.xml +++ b/openi40.platform/openi40.backoffice/openi40.backoffice.app/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform openi40.backoffice - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.backoffice.app diff --git a/openi40.platform/openi40.backoffice/pom.xml b/openi40.platform/openi40.backoffice/pom.xml index 818342da..aa9abdf4 100644 --- a/openi40.platform/openi40.backoffice/pom.xml +++ b/openi40.platform/openi40.backoffice/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.backoffice pom diff --git a/openi40.platform/openi40.dbmodel.integration.app/pom.xml b/openi40.platform/openi40.dbmodel.integration.app/pom.xml index 7130f486..9a234e5d 100644 --- a/openi40.platform/openi40.dbmodel.integration.app/pom.xml +++ b/openi40.platform/openi40.dbmodel.integration.app/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.dbmodel.integration.app diff --git a/openi40.platform/openi40.dbmodel.repositories/pom.xml b/openi40.platform/openi40.dbmodel.repositories/pom.xml index b5c3558c..a7d0a2cf 100644 --- a/openi40.platform/openi40.dbmodel.repositories/pom.xml +++ b/openi40.platform/openi40.dbmodel.repositories/pom.xml @@ -5,7 +5,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.dbmodel.repositories diff --git a/openi40.platform/openi40.dbmodel/pom.xml b/openi40.platform/openi40.dbmodel/pom.xml index 614ca102..6a8b7c3b 100644 --- a/openi40.platform/openi40.dbmodel/pom.xml +++ b/openi40.platform/openi40.dbmodel/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.dbmodel \ No newline at end of file diff --git a/openi40.platform/openi40.generical.dbintegration/pom.xml b/openi40.platform/openi40.generical.dbintegration/pom.xml index aee15068..dc4beb6e 100644 --- a/openi40.platform/openi40.generical.dbintegration/pom.xml +++ b/openi40.platform/openi40.generical.dbintegration/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.generical.dbintegration diff --git a/openi40.platform/openi40.ha.app/pom.xml b/openi40.platform/openi40.ha.app/pom.xml index 6f8a7397..9ec0facb 100644 --- a/openi40.platform/openi40.ha.app/pom.xml +++ b/openi40.platform/openi40.ha.app/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.ha.app diff --git a/openi40.platform/openi40.integration.clients/openi40.dbmodel.java.client/pom.xml b/openi40.platform/openi40.integration.clients/openi40.dbmodel.java.client/pom.xml index 3af7c967..be534939 100644 --- a/openi40.platform/openi40.integration.clients/openi40.dbmodel.java.client/pom.xml +++ b/openi40.platform/openi40.integration.clients/openi40.dbmodel.java.client/pom.xml @@ -5,7 +5,7 @@ com.openi40.platform.integration openi40.integration.clients - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.dbmodel.java.client diff --git a/openi40.platform/openi40.integration.clients/pom.xml b/openi40.platform/openi40.integration.clients/pom.xml index b39aef32..23d40b97 100644 --- a/openi40.platform/openi40.integration.clients/pom.xml +++ b/openi40.platform/openi40.integration.clients/pom.xml @@ -5,7 +5,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.platform.integration openi40.integration.clients diff --git a/openi40.platform/openi40.persistence.server/pom.xml b/openi40.platform/openi40.persistence.server/pom.xml index 8c3d1b08..bcf54c66 100644 --- a/openi40.platform/openi40.persistence.server/pom.xml +++ b/openi40.platform/openi40.persistence.server/pom.xml @@ -3,7 +3,7 @@ com.openi40.platform com.openi40.platform.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40.persistence.server diff --git a/openi40.platform/pom.xml b/openi40.platform/pom.xml index f259d5d5..b2f31cb6 100644 --- a/openi40.platform/pom.xml +++ b/openi40.platform/pom.xml @@ -5,7 +5,7 @@ com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.platform com.openi40.platform.parent diff --git a/openi40.scheduler/ApsDataCache/pom.xml b/openi40.scheduler/ApsDataCache/pom.xml index 6db97fff..11a4e44d 100644 --- a/openi40.scheduler/ApsDataCache/pom.xml +++ b/openi40.scheduler/ApsDataCache/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT ApsDataCache diff --git a/openi40.scheduler/Client.Model/bin/.gitignore b/openi40.scheduler/Client.Model/bin/.gitignore deleted file mode 100644 index 8f827a8a..00000000 --- a/openi40.scheduler/Client.Model/bin/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.factorypath diff --git a/openi40.scheduler/Client.Model/bin/pom.xml b/openi40.scheduler/Client.Model/bin/pom.xml deleted file mode 100644 index b5dba462..00000000 --- a/openi40.scheduler/Client.Model/bin/pom.xml +++ /dev/null @@ -1,29 +0,0 @@ - - 4.0.0 - - com.openi40.scheduler - parent - 00.42.BETA-SNAPSHOT - - - Client.Model - - - - org.springframework.boot - spring-boot-starter-json - - - com.openi40.scheduler - Common - ${project.version} - - - com.openi40.commons - WebConfigs - ${project.version} - - - \ No newline at end of file diff --git a/openi40.scheduler/Client.Model/bin/src/main/java/META-INF/MANIFEST.MF b/openi40.scheduler/Client.Model/bin/src/main/java/META-INF/MANIFEST.MF deleted file mode 100644 index 254272e1..00000000 --- a/openi40.scheduler/Client.Model/bin/src/main/java/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Class-Path: - diff --git a/openi40.scheduler/Client.Model/pom.xml b/openi40.scheduler/Client.Model/pom.xml index aa138967..aedf1767 100644 --- a/openi40.scheduler/Client.Model/pom.xml +++ b/openi40.scheduler/Client.Model/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Client.Model diff --git a/openi40.scheduler/Client.RestApi/bin/.gitignore b/openi40.scheduler/Client.RestApi/bin/.gitignore deleted file mode 100644 index 8f827a8a..00000000 --- a/openi40.scheduler/Client.RestApi/bin/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.factorypath diff --git a/openi40.scheduler/Client.RestApi/bin/pom.xml b/openi40.scheduler/Client.RestApi/bin/pom.xml deleted file mode 100644 index 32545ddf..00000000 --- a/openi40.scheduler/Client.RestApi/bin/pom.xml +++ /dev/null @@ -1,81 +0,0 @@ - - 4.0.0 - - com.openi40.scheduler - parent - 00.42.BETA-SNAPSHOT - - - Client.RestApi - - - - com.openi40.scheduler - Engine - ${project.version} - - - - com.openi40.scheduler - ApsDataCache - ${project.version} - - - com.openi40.scheduler - Client.Model - ${project.version} - - - com.openi40.commons - Mapper - ${project.version} - - - com.openi40.scheduler - ApsModel2ClientModelMappers - ${project.version} - - - - \ No newline at end of file diff --git a/openi40.scheduler/Client.RestApi/bin/src/main/java/META-INF/MANIFEST.MF b/openi40.scheduler/Client.RestApi/bin/src/main/java/META-INF/MANIFEST.MF deleted file mode 100644 index 254272e1..00000000 --- a/openi40.scheduler/Client.RestApi/bin/src/main/java/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Class-Path: - diff --git a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/OpenScheduler.Client.RestApi.json b/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/OpenScheduler.Client.RestApi.json deleted file mode 100644 index 9a072950..00000000 --- a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/OpenScheduler.Client.RestApi.json +++ /dev/null @@ -1,373 +0,0 @@ -{ - "swagger" : "2.0", - "info" : { - "version" : "00.00.01BC", - "title" : "OpenScheduler API" - }, - "paths" : { - "ApsCommand/add/{dataSetId}/{variantId}" : { - "post" : { - "operationId" : "addAction", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "in" : "body", - "name" : "body", - "required" : false, - "schema" : { - "$ref" : "#/definitions/GenericApsActionDto" - } - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/refresh/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "refresh", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/schedule/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "schedule", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}" : { - "get" : { - "operationId" : "scheduleAll", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "algorithmType", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsDataList/list" : { - "get" : { - "operationId" : "get", - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/DataSetEntry" - } - } - } - } - } - }, - "bryntum/gantt/ApsCommand/add/{dataSetId}/{variantId}" : { - "post" : { - "operationId" : "addAction", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "in" : "body", - "name" : "body", - "required" : false, - "schema" : { - "$ref" : "#/definitions/GenericApsActionDto" - } - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/gantt/ApsCommand/refresh/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "refresh", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/gantt/ApsCommand/schedule/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "schedule", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/gantt/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}" : { - "get" : { - "operationId" : "scheduleAll", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "algorithmType", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/add/{dataSetId}/{variantId}" : { - "post" : { - "operationId" : "addAction", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "in" : "body", - "name" : "body", - "required" : false, - "schema" : { - "$ref" : "#/definitions/GenericApsActionDto" - } - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/refresh/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "refresh", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/schedule/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "schedule", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}" : { - "get" : { - "operationId" : "scheduleAll", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "algorithmType", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - } - }, - "definitions" : { - "DataSetEntry" : { - "type" : "object", - "properties" : { - "dataSetName" : { - "type" : "string" - }, - "dataSetVariant" : { - "type" : "string" - }, - "description" : { - "type" : "string" - } - } - }, - "GenericApsActionDto" : { - "type" : "object", - "properties" : { - "algorithmType" : { - "type" : "string" - } - } - } - } -} \ No newline at end of file diff --git a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/OpenScheduler.Client.RestApi.yaml b/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/OpenScheduler.Client.RestApi.yaml deleted file mode 100644 index 51c98f97..00000000 --- a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/OpenScheduler.Client.RestApi.yaml +++ /dev/null @@ -1,263 +0,0 @@ ---- -swagger: "2.0" -info: - version: "00.00.01BC" - title: "OpenScheduler API" -paths: - ApsCommand/add/{dataSetId}/{variantId}: - post: - operationId: "addAction" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - in: "body" - name: "body" - required: false - schema: - $ref: "#/definitions/GenericApsActionDto" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/refresh/{dataSetId}/{variantId}: - get: - operationId: "refresh" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/schedule/{dataSetId}/{variantId}: - get: - operationId: "schedule" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}: - get: - operationId: "scheduleAll" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "algorithmType" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsDataList/list: - get: - operationId: "get" - parameters: [] - responses: - 200: - description: "successful operation" - schema: - type: "array" - items: - $ref: "#/definitions/DataSetEntry" - bryntum/gantt/ApsCommand/add/{dataSetId}/{variantId}: - post: - operationId: "addAction" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - in: "body" - name: "body" - required: false - schema: - $ref: "#/definitions/GenericApsActionDto" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/gantt/ApsCommand/refresh/{dataSetId}/{variantId}: - get: - operationId: "refresh" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/gantt/ApsCommand/schedule/{dataSetId}/{variantId}: - get: - operationId: "schedule" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/gantt/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}: - get: - operationId: "scheduleAll" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "algorithmType" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/add/{dataSetId}/{variantId}: - post: - operationId: "addAction" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - in: "body" - name: "body" - required: false - schema: - $ref: "#/definitions/GenericApsActionDto" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/refresh/{dataSetId}/{variantId}: - get: - operationId: "refresh" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/schedule/{dataSetId}/{variantId}: - get: - operationId: "schedule" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}: - get: - operationId: "scheduleAll" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "algorithmType" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" -definitions: - DataSetEntry: - type: "object" - properties: - dataSetName: - type: "string" - dataSetVariant: - type: "string" - description: - type: "string" - GenericApsActionDto: - type: "object" - properties: - algorithmType: - type: "string" diff --git a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/openi40.scheduler.Client.RestApi.json b/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/openi40.scheduler.Client.RestApi.json deleted file mode 100644 index f13d3ca0..00000000 --- a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/openi40.scheduler.Client.RestApi.json +++ /dev/null @@ -1,402 +0,0 @@ -{ - "swagger" : "2.0", - "info" : { - "version" : "00.00.01BC", - "title" : "openi40.scheduler API" - }, - "paths" : { - "ApsCalendar/calendar/{dataSetId}/{variantId}/{objectId}" : { - "get" : { - "operationId" : "getCalendar", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "objectId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/add/{dataSetId}/{variantId}" : { - "post" : { - "operationId" : "addAction", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "in" : "body", - "name" : "body", - "required" : false, - "schema" : { - "$ref" : "#/definitions/GenericApsActionDto" - } - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/refresh/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "refresh", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/schedule/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "schedule", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}" : { - "get" : { - "operationId" : "scheduleAll", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "algorithmType", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "ApsDataList/list" : { - "get" : { - "operationId" : "get", - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "array", - "items" : { - "$ref" : "#/definitions/DataSetEntry" - } - } - } - } - } - }, - "bryntum/gantt/ApsCommand/add/{dataSetId}/{variantId}" : { - "post" : { - "operationId" : "addAction", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "in" : "body", - "name" : "body", - "required" : false, - "schema" : { - "$ref" : "#/definitions/GenericApsActionDto" - } - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/gantt/ApsCommand/refresh/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "refresh", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/gantt/ApsCommand/schedule/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "schedule", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/gantt/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}" : { - "get" : { - "operationId" : "scheduleAll", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "algorithmType", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/add/{dataSetId}/{variantId}" : { - "post" : { - "operationId" : "addAction", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "in" : "body", - "name" : "body", - "required" : false, - "schema" : { - "$ref" : "#/definitions/GenericApsActionDto" - } - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/refresh/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "refresh", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/schedule/{dataSetId}/{variantId}" : { - "get" : { - "operationId" : "schedule", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - }, - "bryntum/scheduler/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}" : { - "get" : { - "operationId" : "scheduleAll", - "parameters" : [ { - "name" : "dataSetId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "variantId", - "in" : "path", - "required" : true, - "type" : "string" - }, { - "name" : "algorithmType", - "in" : "path", - "required" : true, - "type" : "string" - } ], - "responses" : { - "200" : { - "description" : "successful operation", - "schema" : { - "type" : "object" - } - } - } - } - } - }, - "definitions" : { - "DataSetEntry" : { - "type" : "object", - "properties" : { - "dataSetName" : { - "type" : "string" - }, - "dataSetVariant" : { - "type" : "string" - }, - "description" : { - "type" : "string" - } - } - }, - "GenericApsActionDto" : { - "type" : "object", - "properties" : { - "algorithmType" : { - "type" : "string" - } - } - } - } -} \ No newline at end of file diff --git a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/openi40.scheduler.Client.RestApi.yaml b/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/openi40.scheduler.Client.RestApi.yaml deleted file mode 100644 index d6aea7ee..00000000 --- a/openi40.scheduler/Client.RestApi/bin/src/main/resources/GenSwagger/openi40.scheduler.Client.RestApi.yaml +++ /dev/null @@ -1,284 +0,0 @@ ---- -swagger: "2.0" -info: - version: "00.00.01BC" - title: "openi40.scheduler API" -paths: - ApsCalendar/calendar/{dataSetId}/{variantId}/{objectId}: - get: - operationId: "getCalendar" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "objectId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/add/{dataSetId}/{variantId}: - post: - operationId: "addAction" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - in: "body" - name: "body" - required: false - schema: - $ref: "#/definitions/GenericApsActionDto" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/refresh/{dataSetId}/{variantId}: - get: - operationId: "refresh" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/schedule/{dataSetId}/{variantId}: - get: - operationId: "schedule" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}: - get: - operationId: "scheduleAll" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "algorithmType" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - ApsDataList/list: - get: - operationId: "get" - parameters: [] - responses: - 200: - description: "successful operation" - schema: - type: "array" - items: - $ref: "#/definitions/DataSetEntry" - bryntum/gantt/ApsCommand/add/{dataSetId}/{variantId}: - post: - operationId: "addAction" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - in: "body" - name: "body" - required: false - schema: - $ref: "#/definitions/GenericApsActionDto" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/gantt/ApsCommand/refresh/{dataSetId}/{variantId}: - get: - operationId: "refresh" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/gantt/ApsCommand/schedule/{dataSetId}/{variantId}: - get: - operationId: "schedule" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/gantt/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}: - get: - operationId: "scheduleAll" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "algorithmType" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/add/{dataSetId}/{variantId}: - post: - operationId: "addAction" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - in: "body" - name: "body" - required: false - schema: - $ref: "#/definitions/GenericApsActionDto" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/refresh/{dataSetId}/{variantId}: - get: - operationId: "refresh" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/schedule/{dataSetId}/{variantId}: - get: - operationId: "schedule" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" - bryntum/scheduler/ApsCommand/scheduleAll/{dataSetId}/{variantId}/{algorithmType}: - get: - operationId: "scheduleAll" - parameters: - - name: "dataSetId" - in: "path" - required: true - type: "string" - - name: "variantId" - in: "path" - required: true - type: "string" - - name: "algorithmType" - in: "path" - required: true - type: "string" - responses: - 200: - description: "successful operation" - schema: - type: "object" -definitions: - DataSetEntry: - type: "object" - properties: - dataSetName: - type: "string" - dataSetVariant: - type: "string" - description: - type: "string" - GenericApsActionDto: - type: "object" - properties: - algorithmType: - type: "string" diff --git a/openi40.scheduler/Client.RestApi/pom.xml b/openi40.scheduler/Client.RestApi/pom.xml index 7818dc4e..81c66fac 100644 --- a/openi40.scheduler/Client.RestApi/pom.xml +++ b/openi40.scheduler/Client.RestApi/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Client.RestApi diff --git a/openi40.scheduler/Common/pom.xml b/openi40.scheduler/Common/pom.xml index 2ebd0a4a..c8b577c0 100644 --- a/openi40.scheduler/Common/pom.xml +++ b/openi40.scheduler/Common/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Common diff --git a/openi40.scheduler/CommonDatamodel/pom.xml b/openi40.scheduler/CommonDatamodel/pom.xml index 62d42955..de48b1f9 100644 --- a/openi40.scheduler/CommonDatamodel/pom.xml +++ b/openi40.scheduler/CommonDatamodel/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT CommonDatamodel \ No newline at end of file diff --git a/openi40.scheduler/Engine.HA.Standalone/pom.xml b/openi40.scheduler/Engine.HA.Standalone/pom.xml index 1f071b72..7751546b 100644 --- a/openi40.scheduler/Engine.HA.Standalone/pom.xml +++ b/openi40.scheduler/Engine.HA.Standalone/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Engine.HA.Standalone diff --git a/openi40.scheduler/Engine.Standalone/bin/.gitignore b/openi40.scheduler/Engine.Standalone/bin/.gitignore deleted file mode 100644 index 8f827a8a..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.factorypath diff --git a/openi40.scheduler/Engine.Standalone/bin/pom.xml b/openi40.scheduler/Engine.Standalone/bin/pom.xml deleted file mode 100644 index 79192e64..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/pom.xml +++ /dev/null @@ -1,152 +0,0 @@ - - 4.0.0 - - com.openi40.scheduler - parent - 00.42.BETA-SNAPSHOT - - - Engine.Standalone - - - org.springframework.boot - spring-boot-starter-json - - - org.springframework.boot - spring-boot-starter-data-jpa - - - - org.springframework.boot - spring-boot-starter-tomcat - - - com.openi40.scheduler - Common - ${project.version} - - - - com.openi40.scheduler - Model - ${project.version} - - - com.openi40.scheduler - Engine - ${project.version} - - - com.openi40.commons - Mapper - ${project.version} - - - com.openi40.scheduler - Client.RestApi - ${project.version} - - - com.openi40.scheduler - angular-app - ${project.version} - - - com.openi40.scheduler - TestDataSource - ${project.version} - - - com.openi40.commons - WebConfigs - ${project.version} - - - - com.fasterxml.jackson.core - jackson-databind - - - com.fasterxml.jackson.core - jackson-core - - - com.fasterxml.jackson.core - jackson-annotations - - - - com.h2database - h2 - test - - - - org.postgresql - postgresql - - - - org.apache.derby - derby - - - - - - - - - org.codehaus.mojo - exec-maven-plugin - - - com.openi40.scheduler.engine.standalone.Main - - - - - maven-compiler-plugin - - 1.8 - 1.8 - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - com.openi40.scheduler.engine.standalone.Main - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - 0 - false - - - - org.springframework.boot - spring-boot-maven-plugin - - - com.openi40.scheduler.engine.standalone.Main - JAR - com.openi40.scheduler.engine.bootable - - - - - - \ No newline at end of file diff --git a/openi40.scheduler/Engine.Standalone/bin/src/main/java/META-INF/MANIFEST.MF b/openi40.scheduler/Engine.Standalone/bin/src/main/java/META-INF/MANIFEST.MF deleted file mode 100644 index 59499bce..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/src/main/java/META-INF/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/openi40.scheduler/Engine.Standalone/bin/src/main/resources/application.yml b/openi40.scheduler/Engine.Standalone/bin/src/main/resources/application.yml deleted file mode 100644 index db11873f..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/src/main/resources/application.yml +++ /dev/null @@ -1,22 +0,0 @@ -local: - server: - port: 8090 - -RestApiConfig: - useWebSocket: false -server: - compression: - enabled: true - mime-types: text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json - min-response-size: 1024 - http2: - enabled: true - servlet: - contextPath: /openi40 -spring: - jackson: - date-format: yyyy-MM-dd HH:mm:ss - serialization: - INDENT_OUTPUT: true - - diff --git a/openi40.scheduler/Engine.Standalone/bin/src/main/resources/logback-spring.xml b/openi40.scheduler/Engine.Standalone/bin/src/main/resources/logback-spring.xml deleted file mode 100644 index 395bb369..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - %date [%thread] %-5level %logger{36}:%line - %msg%n - - - - - ${LOGS}/spring-boot-openi40.log - - %date [%thread] %-5level %logger{36}:%line - %msg%n - - - - - ${LOGS}/archived/spring-boot-openi40-%d{yyyy-MM-dd}.%i.log - - - 100MB - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/openi40.scheduler/Engine.Standalone/bin/src/test/resources/application.yml b/openi40.scheduler/Engine.Standalone/bin/src/test/resources/application.yml deleted file mode 100644 index dc510f65..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/src/test/resources/application.yml +++ /dev/null @@ -1,20 +0,0 @@ -local: - server: - port: 8090 - -server: - compression: - enabled: true - mime-types: text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json - min-response-size: 1024 - http2: - enabled: true - servlet: - contextPath: /openi40 -spring: - jackson: - date-format: yyyy-MM-dd HH:mm:ss - serialization: - INDENT_OUTPUT: true - - diff --git a/openi40.scheduler/Engine.Standalone/bin/src/test/resources/logback-spring.xml b/openi40.scheduler/Engine.Standalone/bin/src/test/resources/logback-spring.xml deleted file mode 100644 index ca44062f..00000000 --- a/openi40.scheduler/Engine.Standalone/bin/src/test/resources/logback-spring.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - %date [%thread] %-5level %logger{36}:%line - %msg%n - - - - - ${LOGS}/spring-boot-openi40-debug.log - - %date [%thread] %-5level %logger{36}:%line - %msg%n - - - - - ${LOGS}/archived/spring-boot-openi40-debug-%d{yyyy-MM-dd}.%i.log - - - 100MB - - - - - - - - - - - - - \ No newline at end of file diff --git a/openi40.scheduler/Engine.Standalone/pom.xml b/openi40.scheduler/Engine.Standalone/pom.xml index d6dafb20..a5f90713 100644 --- a/openi40.scheduler/Engine.Standalone/pom.xml +++ b/openi40.scheduler/Engine.Standalone/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Engine.Standalone diff --git a/openi40.scheduler/Engine/bin/.gitignore b/openi40.scheduler/Engine/bin/.gitignore deleted file mode 100644 index 8f827a8a..00000000 --- a/openi40.scheduler/Engine/bin/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.factorypath diff --git a/openi40.scheduler/Engine/bin/pom.xml b/openi40.scheduler/Engine/bin/pom.xml deleted file mode 100644 index ae94205a..00000000 --- a/openi40.scheduler/Engine/bin/pom.xml +++ /dev/null @@ -1,156 +0,0 @@ - - 4.0.0 - - com.openi40.scheduler - parent - 00.42.BETA-SNAPSHOT - - - Engine - - - - com.openi40.scheduler - Common - ${project.version} - - - com.openi40.scheduler - ContextualPlugArch - ${project.version} - - - com.openi40.scheduler - Model - ${project.version} - - - com.openi40.scheduler - Model.Daos - ${project.version} - - - - - - src/main/java - src/test/java - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [1.0,) - - parse-version - add-source - maven-version - add-resource - add-test-resource - add-test-source - - - - - true - true - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - generate-sources - - add-source - - - - ${project.build.directory}/generated-sources/annotations/ - - - - - - - - - - - - - - true - - - - optimized - - - optimized - true - - - - - - com.github.wvengen - proguard-maven-plugin - 2.3.1 - - - package - - proguard - - - - - optimized - false - - - - - - - - - - - ${project.build.finalName}.jar - - ${project.build.directory} - - ${java.home}/lib/rt.jar - ${java.home}/lib/jsse.jar - - - - - - - - \ No newline at end of file diff --git a/openi40.scheduler/Engine/bin/src/main/java/META-INF/MANIFEST.MF b/openi40.scheduler/Engine/bin/src/main/java/META-INF/MANIFEST.MF deleted file mode 100644 index 254272e1..00000000 --- a/openi40.scheduler/Engine/bin/src/main/java/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Class-Path: - diff --git a/openi40.scheduler/Engine/bin/src/main/resources/META-INF/MANIFEST.MF b/openi40.scheduler/Engine/bin/src/main/resources/META-INF/MANIFEST.MF deleted file mode 100644 index 254272e1..00000000 --- a/openi40.scheduler/Engine/bin/src/main/resources/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Class-Path: - diff --git a/openi40.scheduler/Engine/pom.xml b/openi40.scheduler/Engine/pom.xml index 71da34e2..51e7659d 100644 --- a/openi40.scheduler/Engine/pom.xml +++ b/openi40.scheduler/Engine/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Engine diff --git a/openi40.scheduler/Input.IOMessages/pom.xml b/openi40.scheduler/Input.IOMessages/pom.xml index e8894f8f..b372a206 100644 --- a/openi40.scheduler/Input.IOMessages/pom.xml +++ b/openi40.scheduler/Input.IOMessages/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Input.IOMessages \ No newline at end of file diff --git a/openi40.scheduler/Input.Model/pom.xml b/openi40.scheduler/Input.Model/pom.xml index 2bbb7109..5249548e 100644 --- a/openi40.scheduler/Input.Model/pom.xml +++ b/openi40.scheduler/Input.Model/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Input.Model diff --git a/openi40.scheduler/InputChannels/bin/pom.xml b/openi40.scheduler/InputChannels/bin/pom.xml deleted file mode 100644 index f9994ca5..00000000 --- a/openi40.scheduler/InputChannels/bin/pom.xml +++ /dev/null @@ -1,38 +0,0 @@ - - 4.0.0 - - com.openi40.scheduler - parent - 00.42.BETA-SNAPSHOT - - InputChannels - - - com.openi40.scheduler - Client.Model - ${project.version} - - - com.openi40.scheduler - Model - ${project.version} - - - com.openi40.scheduler - Mapper - ${project.version} - - - com.openi40.scheduler - Model.Daos - ${project.version} - - - com.openi40.scheduler - ApsDataCache - ${project.version} - - - \ No newline at end of file diff --git a/openi40.scheduler/InputChannels/pom.xml b/openi40.scheduler/InputChannels/pom.xml index deb0a514..062341cc 100644 --- a/openi40.scheduler/InputChannels/pom.xml +++ b/openi40.scheduler/InputChannels/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT InputChannels diff --git a/openi40.scheduler/InputOutputConfig/pom.xml b/openi40.scheduler/InputOutputConfig/pom.xml index 7433ef33..90fd9b5c 100644 --- a/openi40.scheduler/InputOutputConfig/pom.xml +++ b/openi40.scheduler/InputOutputConfig/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT InputOutputConfig diff --git a/openi40.scheduler/MapperModules/ApsModel2ClientModelMappers/pom.xml b/openi40.scheduler/MapperModules/ApsModel2ClientModelMappers/pom.xml index 1516ccdc..e9adb5ef 100644 --- a/openi40.scheduler/MapperModules/ApsModel2ClientModelMappers/pom.xml +++ b/openi40.scheduler/MapperModules/ApsModel2ClientModelMappers/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler MapperModules - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT ApsModel2ClientModelMappers diff --git a/openi40.scheduler/MapperModules/ApsModel2OutputModel/pom.xml b/openi40.scheduler/MapperModules/ApsModel2OutputModel/pom.xml index a85b7c1e..8af56652 100644 --- a/openi40.scheduler/MapperModules/ApsModel2OutputModel/pom.xml +++ b/openi40.scheduler/MapperModules/ApsModel2OutputModel/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler MapperModules - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT ApsModel2OutputModel diff --git a/openi40.scheduler/MapperModules/Input.IOMessages2ApsModelMappers/pom.xml b/openi40.scheduler/MapperModules/Input.IOMessages2ApsModelMappers/pom.xml index cacf29b3..33dde572 100644 --- a/openi40.scheduler/MapperModules/Input.IOMessages2ApsModelMappers/pom.xml +++ b/openi40.scheduler/MapperModules/Input.IOMessages2ApsModelMappers/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler MapperModules - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Input.IOMessages2ApsModelMappers diff --git a/openi40.scheduler/MapperModules/InputModel2ApsModelMappers/pom.xml b/openi40.scheduler/MapperModules/InputModel2ApsModelMappers/pom.xml index a9e02236..5740cb79 100644 --- a/openi40.scheduler/MapperModules/InputModel2ApsModelMappers/pom.xml +++ b/openi40.scheduler/MapperModules/InputModel2ApsModelMappers/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler MapperModules - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT InputModel2ApsModelMappers diff --git a/openi40.scheduler/MapperModules/InputOutputModel2IgniteBinaryObject/pom.xml b/openi40.scheduler/MapperModules/InputOutputModel2IgniteBinaryObject/pom.xml index 7877d96a..1eed09e4 100644 --- a/openi40.scheduler/MapperModules/InputOutputModel2IgniteBinaryObject/pom.xml +++ b/openi40.scheduler/MapperModules/InputOutputModel2IgniteBinaryObject/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler MapperModules - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT InputOutputModel2IgniteBinaryObject diff --git a/openi40.scheduler/MapperModules/OutputModel2InputModel/pom.xml b/openi40.scheduler/MapperModules/OutputModel2InputModel/pom.xml index a5310d8c..93c9b7f9 100644 --- a/openi40.scheduler/MapperModules/OutputModel2InputModel/pom.xml +++ b/openi40.scheduler/MapperModules/OutputModel2InputModel/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler MapperModules - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT OutputModel2InputModel diff --git a/openi40.scheduler/MapperModules/pom.xml b/openi40.scheduler/MapperModules/pom.xml index cf16cd25..06318a9a 100644 --- a/openi40.scheduler/MapperModules/pom.xml +++ b/openi40.scheduler/MapperModules/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT MapperModules pom diff --git a/openi40.scheduler/Model.Daos/pom.xml b/openi40.scheduler/Model.Daos/pom.xml index 40c8c888..91870c35 100644 --- a/openi40.scheduler/Model.Daos/pom.xml +++ b/openi40.scheduler/Model.Daos/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Model.Daos diff --git a/openi40.scheduler/Model/bin/.gitignore b/openi40.scheduler/Model/bin/.gitignore deleted file mode 100644 index 8f827a8a..00000000 --- a/openi40.scheduler/Model/bin/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.factorypath diff --git a/openi40.scheduler/Model/bin/pom.xml b/openi40.scheduler/Model/bin/pom.xml deleted file mode 100644 index f1ed61f7..00000000 --- a/openi40.scheduler/Model/bin/pom.xml +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - - com.openi40.scheduler - parent - 00.42.BETA-SNAPSHOT - - - Model - - - com.openi40.scheduler - Common - ${project.version} - - - - \ No newline at end of file diff --git a/openi40.scheduler/Model/bin/src/main/java/META-INF/MANIFEST.MF b/openi40.scheduler/Model/bin/src/main/java/META-INF/MANIFEST.MF deleted file mode 100644 index 254272e1..00000000 --- a/openi40.scheduler/Model/bin/src/main/java/META-INF/MANIFEST.MF +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -Class-Path: - diff --git a/openi40.scheduler/Model/pom.xml b/openi40.scheduler/Model/pom.xml index 5dfc5da4..ee12cd8f 100644 --- a/openi40.scheduler/Model/pom.xml +++ b/openi40.scheduler/Model/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Model diff --git a/openi40.scheduler/Output.Channels/pom.xml b/openi40.scheduler/Output.Channels/pom.xml index 727dcab1..4d683883 100644 --- a/openi40.scheduler/Output.Channels/pom.xml +++ b/openi40.scheduler/Output.Channels/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Output.Channels diff --git a/openi40.scheduler/Output.Model/pom.xml b/openi40.scheduler/Output.Model/pom.xml index 296dbf09..780de270 100644 --- a/openi40.scheduler/Output.Model/pom.xml +++ b/openi40.scheduler/Output.Model/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT Output.Model \ No newline at end of file diff --git a/openi40.scheduler/SchedulerKernelArchitecture/pom.xml b/openi40.scheduler/SchedulerKernelArchitecture/pom.xml index 2fd0f754..939e25a9 100644 --- a/openi40.scheduler/SchedulerKernelArchitecture/pom.xml +++ b/openi40.scheduler/SchedulerKernelArchitecture/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT SchedulerKernelArchitecture diff --git a/openi40.scheduler/TestUtils/pom.xml b/openi40.scheduler/TestUtils/pom.xml index e73c1f45..50fd5fdb 100644 --- a/openi40.scheduler/TestUtils/pom.xml +++ b/openi40.scheduler/TestUtils/pom.xml @@ -3,7 +3,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT TestUtils diff --git a/openi40.scheduler/openi40-ignite-config/pom.xml b/openi40.scheduler/openi40-ignite-config/pom.xml index 150ef3f9..d0ba290a 100644 --- a/openi40.scheduler/openi40-ignite-config/pom.xml +++ b/openi40.scheduler/openi40-ignite-config/pom.xml @@ -5,7 +5,7 @@ com.openi40.scheduler com.openi40.scheduler.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-ignite-config diff --git a/openi40.scheduler/pom.xml b/openi40.scheduler/pom.xml index 38828832..385ad873 100644 --- a/openi40.scheduler/pom.xml +++ b/openi40.scheduler/pom.xml @@ -5,7 +5,7 @@ com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.scheduler com.openi40.scheduler.parent diff --git a/openi40.ui/openi40-scheduling-ui/pom.xml b/openi40.ui/openi40-scheduling-ui/pom.xml index 2c23f6ca..baed99f3 100644 --- a/openi40.ui/openi40-scheduling-ui/pom.xml +++ b/openi40.ui/openi40-scheduling-ui/pom.xml @@ -5,7 +5,7 @@ com.openi40.ui com.openi40.ui.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT openi40-scheduling-ui diff --git a/openi40.ui/pom.xml b/openi40.ui/pom.xml index d9f1f938..90f6423d 100644 --- a/openi40.ui/pom.xml +++ b/openi40.ui/pom.xml @@ -5,7 +5,7 @@ com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT com.openi40.ui com.openi40.ui.parent diff --git a/pom.xml b/pom.xml index e89f4ab4..5ee43c2e 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 com.openi40 com.openi40.parent - 00.42.BETA-SNAPSHOT + 00.42.00-SNAPSHOT pom org.springframework.boot diff --git a/release-branch.sh b/release-branch.sh new file mode 100644 index 00000000..5f6f7139 --- /dev/null +++ b/release-branch.sh @@ -0,0 +1,7 @@ +export CURRENT_VERSION=`head -n 5 ./pom.xml | tail -n 1 | sed s/""// | sed s/"<\/version>"// | sed s/"\t"// | sed s/" "//` +echo "Current version = $CURRENT_VERSION" +export NEWVERSION=`echo $CURRENT_VERSION | sed s/"-SNAPSHOT"//` +echo "New version is = $NEWVERSION" +./change-version-branch.sh $CURRENT_VERSION $NEWVERSION + + diff --git a/upgrade-minor-branch.sh b/upgrade-minor-branch.sh new file mode 100644 index 00000000..7cc01e1a --- /dev/null +++ b/upgrade-minor-branch.sh @@ -0,0 +1,26 @@ +export CURRENT_VERSION=`head -n 5 ./pom.xml | tail -n 1 | sed s/""// | sed s/"<\/version>"// | sed s/"\t"// | sed s/" "//` +echo "Current version = $CURRENT_VERSION" +export SPLITTED_VERSION=`echo $CURRENT_VERSION | tr "." " " | sed s/"-SNAPSHOT"//` +#echo "Splitted version = $SPLITTED_VERSION" +export IDX=0 +export NEWVERSION=""; +for I in $SPLITTED_VERSION +do + export IDX=$(("$IDX + 1")) + if test "$IDX" = "3" ; then + I=$(("SI + 1")) + fi + if test "$IDX" = "1"; then + export NEWVERSION="$I" + else + export NEWVERSION="$NEWVERSION.$I" + fi + #echo $IDX +done +if expr "$CURRENT_VERSION" : '.*-SNAPSHOT$' > /dev/null ; then +export NEWVERSION="$NEWVERSION-SNAPSHOT" +fi +echo "New version is = $NEWVERSION" +./change-version-branch.sh $CURRENT_VERSION $NEWVERSION + +