diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar
deleted file mode 100644
index 9cc84ea9b4..0000000000
Binary files a/.mvn/wrapper/maven-wrapper.jar and /dev/null differ
diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties
deleted file mode 100644
index 6c6b50368d..0000000000
--- a/.mvn/wrapper/maven-wrapper.properties
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# MIT License
-#
-# Copyright (c) 2020-present Cloudogu GmbH and Contributors
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in all
-# copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-#
-
-# Keep this version number in sync with Jenkinsfile
-distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
diff --git a/build.gradle b/build.gradle
index fc2f570819..579694ecc2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -56,9 +56,9 @@ dependencies {
api 'org.jboss.resteasy:resteasy-core:4.5.8.Final'
// json
- api 'com.fasterxml.jackson.core:jackson-core:2.11.3'
- api 'com.fasterxml.jackson.core:jackson-annotations:2.11.3'
- api 'com.fasterxml.jackson.core:jackson-databind:2.11.3'
+ api 'com.fasterxml.jackson.core:jackson-core:2.12.0'
+ api 'com.fasterxml.jackson.core:jackson-annotations:2.12.0'
+ api 'com.fasterxml.jackson.core:jackson-databind:2.12.0'
// hypermedia
api 'de.otto.edison:edison-hal:2.1.0'
diff --git a/mvnw b/mvnw
deleted file mode 100755
index 5bf251c077..0000000000
--- a/mvnw
+++ /dev/null
@@ -1,225 +0,0 @@
-#!/bin/sh
-# ----------------------------------------------------------------------------
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-# ----------------------------------------------------------------------------
-
-# ----------------------------------------------------------------------------
-# Maven2 Start Up Batch script
-#
-# Required ENV vars:
-# ------------------
-# JAVA_HOME - location of a JDK home dir
-#
-# Optional ENV vars
-# -----------------
-# M2_HOME - location of maven2's installed home dir
-# MAVEN_OPTS - parameters passed to the Java VM when running Maven
-# e.g. to debug Maven itself, use
-# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
-# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
-# ----------------------------------------------------------------------------
-
-if [ -z "$MAVEN_SKIP_RC" ] ; then
-
- if [ -f /etc/mavenrc ] ; then
- . /etc/mavenrc
- fi
-
- if [ -f "$HOME/.mavenrc" ] ; then
- . "$HOME/.mavenrc"
- fi
-
-fi
-
-# OS specific support. $var _must_ be set to either true or false.
-cygwin=false;
-darwin=false;
-mingw=false
-case "`uname`" in
- CYGWIN*) cygwin=true ;;
- MINGW*) mingw=true;;
- Darwin*) darwin=true
- # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
- # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
- if [ -z "$JAVA_HOME" ]; then
- if [ -x "/usr/libexec/java_home" ]; then
- export JAVA_HOME="`/usr/libexec/java_home`"
- else
- export JAVA_HOME="/Library/Java/Home"
- fi
- fi
- ;;
-esac
-
-if [ -z "$JAVA_HOME" ] ; then
- if [ -r /etc/gentoo-release ] ; then
- JAVA_HOME=`java-config --jre-home`
- fi
-fi
-
-if [ -z "$M2_HOME" ] ; then
- ## resolve links - $0 may be a link to maven's home
- PRG="$0"
-
- # need this for relative symlinks
- while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG="`dirname "$PRG"`/$link"
- fi
- done
-
- saveddir=`pwd`
-
- M2_HOME=`dirname "$PRG"`/..
-
- # make it fully qualified
- M2_HOME=`cd "$M2_HOME" && pwd`
-
- cd "$saveddir"
- # echo Using m2 at $M2_HOME
-fi
-
-# For Cygwin, ensure paths are in UNIX format before anything is touched
-if $cygwin ; then
- [ -n "$M2_HOME" ] &&
- M2_HOME=`cygpath --unix "$M2_HOME"`
- [ -n "$JAVA_HOME" ] &&
- JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
- [ -n "$CLASSPATH" ] &&
- CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
-fi
-
-# For Migwn, ensure paths are in UNIX format before anything is touched
-if $mingw ; then
- [ -n "$M2_HOME" ] &&
- M2_HOME="`(cd "$M2_HOME"; pwd)`"
- [ -n "$JAVA_HOME" ] &&
- JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
- # TODO classpath?
-fi
-
-if [ -z "$JAVA_HOME" ]; then
- javaExecutable="`which javac`"
- if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
- # readlink(1) is not available as standard on Solaris 10.
- readLink=`which readlink`
- if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
- if $darwin ; then
- javaHome="`dirname \"$javaExecutable\"`"
- javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
- else
- javaExecutable="`readlink -f \"$javaExecutable\"`"
- fi
- javaHome="`dirname \"$javaExecutable\"`"
- javaHome=`expr "$javaHome" : '\(.*\)/bin'`
- JAVA_HOME="$javaHome"
- export JAVA_HOME
- fi
- fi
-fi
-
-if [ -z "$JAVACMD" ] ; then
- if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- else
- JAVACMD="`which java`"
- fi
-fi
-
-if [ ! -x "$JAVACMD" ] ; then
- echo "Error: JAVA_HOME is not defined correctly." >&2
- echo " We cannot execute $JAVACMD" >&2
- exit 1
-fi
-
-if [ -z "$JAVA_HOME" ] ; then
- echo "Warning: JAVA_HOME environment variable is not set."
-fi
-
-CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
-
-# traverses directory structure from process work directory to filesystem root
-# first directory with .mvn subdirectory is considered project base directory
-find_maven_basedir() {
-
- if [ -z "$1" ]
- then
- echo "Path not specified to find_maven_basedir"
- return 1
- fi
-
- basedir="$1"
- wdir="$1"
- while [ "$wdir" != '/' ] ; do
- if [ -d "$wdir"/.mvn ] ; then
- basedir=$wdir
- break
- fi
- # workaround for JBEAP-8937 (on Solaris 10/Sparc)
- if [ -d "${wdir}" ]; then
- wdir=`cd "$wdir/.."; pwd`
- fi
- # end of workaround
- done
- echo "${basedir}"
-}
-
-# concatenates all lines of a file
-concat_lines() {
- if [ -f "$1" ]; then
- echo "$(tr -s '\n' ' ' < "$1")"
- fi
-}
-
-BASE_DIR=`find_maven_basedir "$(pwd)"`
-if [ -z "$BASE_DIR" ]; then
- exit 1;
-fi
-
-export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
-echo $MAVEN_PROJECTBASEDIR
-MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin; then
- [ -n "$M2_HOME" ] &&
- M2_HOME=`cygpath --path --windows "$M2_HOME"`
- [ -n "$JAVA_HOME" ] &&
- JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
- [ -n "$CLASSPATH" ] &&
- CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
- [ -n "$MAVEN_PROJECTBASEDIR" ] &&
- MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
-fi
-
-WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
-
-exec "$JAVACMD" \
- $MAVEN_OPTS \
- -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
- "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
- ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/mvnw.cmd b/mvnw.cmd
deleted file mode 100644
index 019bd74d76..0000000000
--- a/mvnw.cmd
+++ /dev/null
@@ -1,143 +0,0 @@
-@REM ----------------------------------------------------------------------------
-@REM Licensed to the Apache Software Foundation (ASF) under one
-@REM or more contributor license agreements. See the NOTICE file
-@REM distributed with this work for additional information
-@REM regarding copyright ownership. The ASF licenses this file
-@REM to you under the Apache License, Version 2.0 (the
-@REM "License"); you may not use this file except in compliance
-@REM with the License. You may obtain a copy of the License at
-@REM
-@REM http://www.apache.org/licenses/LICENSE-2.0
-@REM
-@REM Unless required by applicable law or agreed to in writing,
-@REM software distributed under the License is distributed on an
-@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-@REM KIND, either express or implied. See the License for the
-@REM specific language governing permissions and limitations
-@REM under the License.
-@REM ----------------------------------------------------------------------------
-
-@REM ----------------------------------------------------------------------------
-@REM Maven2 Start Up Batch script
-@REM
-@REM Required ENV vars:
-@REM JAVA_HOME - location of a JDK home dir
-@REM
-@REM Optional ENV vars
-@REM M2_HOME - location of maven2's installed home dir
-@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
-@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
-@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
-@REM e.g. to debug Maven itself, use
-@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
-@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
-@REM ----------------------------------------------------------------------------
-
-@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
-@echo off
-@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
-@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
-
-@REM set %HOME% to equivalent of $HOME
-if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
-
-@REM Execute a user defined script before this one
-if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
-@REM check for pre script, once with legacy .bat ending and once with .cmd ending
-if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
-if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
-:skipRcPre
-
-@setlocal
-
-set ERROR_CODE=0
-
-@REM To isolate internal variables from possible post scripts, we use another setlocal
-@setlocal
-
-@REM ==== START VALIDATION ====
-if not "%JAVA_HOME%" == "" goto OkJHome
-
-echo.
-echo Error: JAVA_HOME not found in your environment. >&2
-echo Please set the JAVA_HOME variable in your environment to match the >&2
-echo location of your Java installation. >&2
-echo.
-goto error
-
-:OkJHome
-if exist "%JAVA_HOME%\bin\java.exe" goto init
-
-echo.
-echo Error: JAVA_HOME is set to an invalid directory. >&2
-echo JAVA_HOME = "%JAVA_HOME%" >&2
-echo Please set the JAVA_HOME variable in your environment to match the >&2
-echo location of your Java installation. >&2
-echo.
-goto error
-
-@REM ==== END VALIDATION ====
-
-:init
-
-@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
-@REM Fallback to current working directory if not found.
-
-set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
-IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
-
-set EXEC_DIR=%CD%
-set WDIR=%EXEC_DIR%
-:findBaseDir
-IF EXIST "%WDIR%"\.mvn goto baseDirFound
-cd ..
-IF "%WDIR%"=="%CD%" goto baseDirNotFound
-set WDIR=%CD%
-goto findBaseDir
-
-:baseDirFound
-set MAVEN_PROJECTBASEDIR=%WDIR%
-cd "%EXEC_DIR%"
-goto endDetectBaseDir
-
-:baseDirNotFound
-set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
-cd "%EXEC_DIR%"
-
-:endDetectBaseDir
-
-IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
-
-@setlocal EnableExtensions EnableDelayedExpansion
-for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
-@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
-
-:endReadAdditionalConfig
-
-SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
-
-set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
-set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
-
-%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
-if ERRORLEVEL 1 goto error
-goto end
-
-:error
-set ERROR_CODE=1
-
-:end
-@endlocal & set ERROR_CODE=%ERROR_CODE%
-
-if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
-@REM check for post script, once with legacy .bat ending and once with .cmd ending
-if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
-if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
-:skipRcPost
-
-@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
-if "%MAVEN_BATCH_PAUSE%" == "on" pause
-
-if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
-
-exit /B %ERROR_CODE%
diff --git a/pom.xml b/pom.xml
deleted file mode 100644
index 899ca76132..0000000000
--- a/pom.xml
+++ /dev/null
@@ -1,973 +0,0 @@
-
-
-
-
- 4.0.0
-
- sonia.scm
- scm
- pom
- 2.13.0-SNAPSHOT
-
- The easiest way to share your Git, Mercurial
- and Subversion repositories.
-
- scm
-
- https://github.com/scm-manager/scm-manager
-
-
- Cloudogu GmbH
- https://cloudogu.com
-
-
-
-
- MIT License
- http://www.opensource.org/licenses/mit-license.php
-
-
-
-
-
- sebastian.sdorra
- Sebastian Sdorra
- sebastian.sdorra@cloudogu.com
- Europe/Berlin
-
-
- rene.pfeuffer
- Rene Pfeufer
- rene.pfeuffer@cloudogu.com
- Europe/Berlin
-
-
- eduard.heimbuch
- Eduard Heimbuch
- eduard.heimbuch@cloudogu.com
- Europe/Berlin
-
-
- florian.scholdei
- Florian Scholdei
- florian.scholdei@cloudogu.com
- Europe/Berlin
-
-
- Konstantin Schaper
- Konstantin Schaper
- konstantin.schaper@cloudogu.com
- Europe/Berlin
-
-
-
-
- scm:git:https://github.com/scm-manager/scm-manager
- scm:git:ssh://github.com/scm-manager/scm-manager
- https://github.com/scm-manager/scm-manager
- HEAD
-
-
-
- github
- https://github.com/scm-manager/scm-manager/issues
-
-
-
-
- SCM-Manager
- scmmanager-subscribe@googlegroups.com
- scmmanager-unsubscribe@googlegroups.com
- scmmanager@googlegroups.com
- http://groups.google.com/group/scmmanager
-
-
-
-
- Jenkins
- https://oss.cloudogu.com/jenkins/
-
-
-
- 3.1.0
-
-
-
- scm-annotations
- scm-annotation-processor
- scm-core
- scm-test
- scm-ui
- scm-plugins
- scm-dao-xml
- scm-webapp
- scm-server
- scm-packaging
- scm-it
-
-
-
-
-
- packages.scm-manager.org
- scm-manager public repository
- https://packages.scm-manager.org/repository/public/
-
-
-
-
-
-
-
- packages.scm-manager.org
- scm-manager public repository
- https://packages.scm-manager.org/repository/public/
-
- true
-
-
- never
-
-
-
-
-
-
-
-
-
-
- org.junit.jupiter
- junit-jupiter-api
-
-
-
- org.junit.jupiter
- junit-jupiter-params
-
-
-
- org.junit.jupiter
- junit-jupiter-engine
-
-
-
- org.junit.vintage
- junit-vintage-engine
-
-
-
- org.hamcrest
- hamcrest-core
- test
-
-
-
- org.hamcrest
- hamcrest-library
- test
-
-
-
- org.mockito
- mockito-core
-
-
-
- org.mockito
- mockito-junit-jupiter
-
-
-
- org.assertj
- assertj-core
-
-
-
-
-
-
-
-
- com.github.sdorra
- shiro-unit
- 1.0.1
- test
-
-
-
- com.github.sdorra
- ssp-lib
- ${ssp.version}
-
-
-
- com.github.sdorra
- ssp-processor
- ${ssp.version}
- true
-
-
-
- org.mapstruct
- mapstruct-jdk8
- ${org.mapstruct.version}
-
-
-
- org.mapstruct
- mapstruct-processor
- ${org.mapstruct.version}
-
-
-
- de.otto.edison
- edison-hal
- 2.1.0
-
-
-
- org.projectlombok
- lombok
- 1.18.10
-
-
-
-
-
- javax.servlet
- javax.servlet-api
- ${servlet.version}
-
-
-
-
-
- org.jboss.resteasy
- resteasy-core
- ${resteasy.version}
-
-
- org.jboss.spec.javax.ws.rs
- jboss-jaxrs-api_2.1_spec
-
-
- org.jboss.spec.javax.xml.bind
- jboss-jaxb-api_2.3_spec
-
-
-
-
-
- org.jboss.resteasy
- resteasy-core-spi
- ${resteasy.version}
-
-
-
- org.jboss.resteasy
- resteasy-jaxb-provider
- ${resteasy.version}
-
-
- org.jboss.spec.javax.xml.bind
- jboss-jaxb-api_2.3_spec
-
-
-
-
-
- org.jboss.resteasy
- resteasy-jackson2-provider
- ${resteasy.version}
-
-
-
- org.jboss.resteasy
- resteasy-multipart-provider
- ${resteasy.version}
-
-
-
- org.jboss.resteasy
- resteasy-client-api
- ${resteasy.version}
-
-
- org.jboss.spec.javax.ws.rs
- jboss-jaxrs-api_2.1_spec
-
-
-
-
-
- org.jboss.resteasy
- resteasy-client
- ${resteasy.version}
-
-
- org.jboss.spec.javax.ws.rs
- jboss-jaxrs-api_2.1_spec
-
-
-
-
-
- org.jboss.resteasy
- resteasy-guice
- ${resteasy.version}
-
-
-
- org.jboss.resteasy
- resteasy-servlet-initializer
- ${resteasy.version}
-
-
- org.jboss.spec.javax.ws.rs
- jboss-jaxrs-api_2.1_spec
-
-
-
-
-
-
- io.smallrye.config
- smallrye-config
- 1.6.2
-
-
-
- javax.ws.rs
- javax.ws.rs-api
- ${jaxrs.version}
-
-
-
- io.swagger.core.v3
- swagger-annotations
- 2.1.1
-
-
-
- com.fasterxml.jackson.core
- jackson-core
- ${jackson.version}
-
-
-
- com.fasterxml.jackson.core
- jackson-databind
- ${jackson.version}
-
-
-
- com.fasterxml.jackson.core
- jackson-annotations
- ${jackson.version}
-
-
-
- org.hibernate.validator
- hibernate-validator
- ${hibernate-validator.version}
-
-
-
-
-
- org.junit.jupiter
- junit-jupiter-api
- ${junit.version}
- test
-
-
-
- org.junit.jupiter
- junit-jupiter-params
- ${junit.version}
- test
-
-
-
- org.junit.jupiter
- junit-jupiter-engine
- ${junit.version}
- test
-
-
-
- org.junit.vintage
- junit-vintage-engine
- ${junit.version}
- test
-
-
-
- junit
- junit
- 4.13.1
- test
-
-
-
- org.hamcrest
- hamcrest-core
- ${hamcrest.version}
- test
-
-
-
- org.hamcrest
- hamcrest-library
- ${hamcrest.version}
- test
-
-
-
- org.mockito
- mockito-core
- ${mockito.version}
- test
-
-
-
- org.mockito
- mockito-junit-jupiter
- ${mockito.version}
- test
-
-
-
- org.assertj
- assertj-core
- 3.18.1
- test
-
-
-
- org.awaitility
- awaitility
- 4.0.2
- test
-
-
-
-
-
- org.apache.httpcomponents
- httpclient
- 4.5.5
-
-
- commons-logging
- commons-logging
-
-
-
-
-
-
-
- slf4j-api
- org.slf4j
- ${slf4j.version}
-
-
-
- ch.qos.logback
- logback-classic
- ${logback.version}
-
-
-
-
-
- jakarta.xml.bind
- jakarta.xml.bind-api
- ${jaxb.version}
-
-
-
- org.glassfish.jaxb
- jaxb-runtime
- ${jaxb.version}
-
-
-
-
-
- commons-codec
- commons-codec
- 1.15
-
-
-
-
-
- org.bouncycastle
- bcpg-jdk15on
- ${bouncycastle.version}
-
-
-
- org.bouncycastle
- bcprov-jdk15on
- ${bouncycastle.version}
-
-
-
- org.bouncycastle
- bcpkix-jdk15on
- ${bouncycastle.version}
-
-
-
-
-
-
-
-
-
-
-
- com.github.sdorra
- buildfrontend-maven-plugin
- 2.5.0
-
-
-
- org.apache.maven.plugins
- maven-javadoc-plugin
- 3.1.1
-
-
-
- org.apache.maven.plugins
- maven-resources-plugin
- 2.6
-
-
-
- org.apache.maven.plugins
- maven-assembly-plugin
- 2.3
-
-
-
- sonia.scm.maven
- smp-maven-plugin
- 1.4.0
-
-
-
- org.apache.maven.plugins
- maven-deploy-plugin
- 2.8.2
-
-
-
- io.openapitools.swagger
- swagger-maven-plugin
- 2.1.2
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- 3.0.0-M5
-
-
- ${skipUnitTests}
-
-
-
-
- org.apache.maven.plugins
- maven-enforcer-plugin
- 3.0.0-M3
-
-
- enforce-java
- compile
-
- enforce
-
-
-
-
-
- [1.8.0-101,)
-
-
-
- [3.1,)
-
-
-
- 1.8
-
-
- module-info
-
-
-
- true
-
-
-
-
-
- org.codehaus.mojo
- extra-enforcer-rules
- 1.3
-
-
-
-
-
- org.codehaus.mojo
- animal-sniffer-maven-plugin
-
- 1.16
-
-
- org.codehaus.mojo.signature
- java18
- 1.0
-
-
-
-
- compile
-
- check
-
-
-
-
-
-
- com.github.legman
- legman-maven-plugin
- ${legman.version}
-
- true
-
-
-
- process-classes
-
-
- guava-migration-check
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- 3.5.1
-
- true
- true
- ${project.build.javaLevel}
- ${project.build.javaLevel}
- ${project.test.javaLevel}
- ${project.test.javaLevel}
- ${project.build.sourceEncoding}
-
- -Xlint:unchecked,-options
- -parameters
-
-
-
-
- org.apache.maven.plugins
- maven-resources-plugin
-
- ${project.build.sourceEncoding}
-
-
-
-
- com.mycila
- license-maven-plugin
- 3.0
-
- https://download.scm-manager.org/licenses/license.txt
-
- .editorconfig
- .git/**
- .*/**
- .mvn/wrapper/**
- docs/**
- node_modules/**
- target/**
- tmp/**
- **/.m2/**
- **/.cache/**
- **/node_modules/**
- **/target/**
- **/tmp/**
- **/*.mustache
- **/*.txt
- *.ini
- *.mustache
- *.smp
- *.tpl
- *.txt
- mvnw
- mvnw.cmd
- yarn.lock
- **/logback.ci.xml
- **/pkg/ourPackage/scm-source.properties
- **/.vagrant/**
-
-
- SLASHSTAR_STYLE
- SLASHSTAR_STYLE
- SLASHSTAR_STYLE
-
- true
-
-
-
- process-resources
-
- check
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-javadoc-plugin
-
- true
- ${project.build.sourceEncoding}
- ${project.build.sourceEncoding}
- ${project.build.sourceEncoding}
- true
- ${project.build.javaLevel}
- true
- true
- true
-
- http://download.oracle.com/javase/8/docs/api/
- http://download.oracle.com/docs/cd/E17802_01/products/products/servlet/2.5/docs/servlet-2_5-mr2/
- https://google.github.io/guice/api-docs/${guice.version}/javadoc
- http://www.slf4j.org/api/
- http://shiro.apache.org/static/current/apidocs/
-
-
-
-
-
- org.apache.maven.plugins
- maven-source-plugin
- 2.2.1
-
-
-
- org.apache.maven.plugins
- maven-clean-plugin
- 2.5
-
-
-
- org.apache.maven.plugins
- maven-install-plugin
- 2.4
-
-
-
- org.apache.maven.plugins
- maven-deploy-plugin
-
-
-
-
-
- org.apache.maven.plugins
- maven-eclipse-plugin
- 2.6
-
-
-
-
-
-
-
- coverage
-
-
-
-
-
-
-
- org.jacoco
- jacoco-maven-plugin
- 0.8.5
-
-
-
- prepare-agent
-
-
-
- report
- test
-
- report
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- packages.scm-manager.org
- scm-manager release repository
- https://packages.scm-manager.org/repository/releases/
-
-
-
- packages.scm-manager.org
- scm-manager snapshot repository
- https://packages.scm-manager.org/repository/snapshots/
-
-
-
-
-
-
- 3.6.28
- 2.1
- 5.7.0
-
-
- 1.7.30
- 1.2.3
- 3.1.0
-
- 2.1.1
- 4.5.8.SP1
- 1.19.4
- 2.12.0
- 4.2.3
- 2.3.3
- 6.1.6.Final
- 1.67
-
-
- 1.6.2
-
-
- 9.4.35.v20201120
- 9.4.34.v20201102
-
-
- 1.3.0
- 1.7.0
-
-
- 5.6.1.202002131546-r-scm1
- 1.10.1-scm2
-
-
- 30.0-jre
-
-
- 12.16.1
- 1.22.0
-
-
- 8
- 8
- UTF-8
- SCM-MIT
-
- 1.3.1.Final
-
-
-
-
-
- **/*StoreFactory.java,**/*UserPassword.js
-
- ./scm-ui/target/frontend/buildfrontend-node/node-v${nodejs.version}-linux-x64/bin/node
-
-
- ${skipTests}
-
-
-
diff --git a/scm-packaging/unix/src/main/assembly/scm-server-app.xml b/scm-packaging/unix/src/main/assembly/scm-server-app.xml
deleted file mode 100644
index 0521e69681..0000000000
--- a/scm-packaging/unix/src/main/assembly/scm-server-app.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
- app
-
-
- tar.gz
-
-
- scm-server
- true
-
-
-
-
-
-
- src/main/fs/conf
- true
- conf
-
-
-
- src/main/fs
- false
-
- conf/**
-
-
-
-
-
- src/main/bin
- false
- bin
- 0755
- 0755
-
-
-
- target/unix/libexec
- false
- libexec
- 0755
- 0755
-
-
-
-
-
-
- false
- lib
-
- *:jar
-
-
-
- false
- var/webapp
- scm-webapp.war
-
- *:war
-
-
-
-
-
diff --git a/scm-packaging/windows/src/main/assembly/scm-server-app.xml b/scm-packaging/windows/src/main/assembly/scm-server-app.xml
deleted file mode 100644
index 2062e53f68..0000000000
--- a/scm-packaging/windows/src/main/assembly/scm-server-app.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
- app
-
-
- zip
-
-
- scm-server
- true
-
-
-
-
-
-
- src/main/fs/conf
- true
- conf
-
-
-
- src/main/fs
- false
-
- conf/**
-
-
-
-
-
- target/windows
- false
-
-
-
-
-
-
-
- false
- lib
-
- *:jar
-
-
-
- false
- webapp
- scm-webapp.war
-
- *:war
-
-
-
-
-