From 51281d5e30d0c2f53fec90285c641e1cd6a5d71e Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Mon, 21 Dec 2020 07:47:07 +0100 Subject: [PATCH] Migrate module scm-server --- scm-server/build.gradle | 37 +++++++++++++++++++++++++++++++++++++ settings.gradle | 1 + 2 files changed, 38 insertions(+) create mode 100644 scm-server/build.gradle diff --git a/scm-server/build.gradle b/scm-server/build.gradle new file mode 100644 index 0000000000..445df36249 --- /dev/null +++ b/scm-server/build.gradle @@ -0,0 +1,37 @@ +/* + * 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. + */ + +plugins { + id 'java-library' +} + +dependencies { + api platform(project(':')) + + implementation 'commons-daemon:commons-daemon:1.2.3' + implementation 'org.eclipse.jetty:jetty-server:9.4.35.v20201120' + implementation 'org.eclipse.jetty:jetty-webapp:9.4.35.v20201120' + // TODO do we need jetty jmx? + implementation 'org.eclipse.jetty:jetty-jmx:9.4.35.v20201120' +} diff --git a/settings.gradle b/settings.gradle index 2ed6354bb3..00f0975500 100644 --- a/settings.gradle +++ b/settings.gradle @@ -32,3 +32,4 @@ include('scm-test') // include('scm-plugins') include('scm-dao-xml') include('scm-webapp') +include('scm-server')