2010-09-11 19:17:50 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-03-23 15:35:58 +01:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
-->
|
2011-07-09 15:11:06 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2010-09-11 19:17:50 +02:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-07-03 15:07:03 +02:00
|
|
|
|
2010-09-11 19:17:50 +02:00
|
|
|
<parent>
|
|
|
|
|
<artifactId>scm</artifactId>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2020-06-04 09:41:11 +00:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2010-09-11 19:17:50 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-server</artifactId>
|
2020-06-04 09:41:11 +00:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2010-09-11 19:17:50 +02:00
|
|
|
<name>scm-server</name>
|
2011-03-02 19:26:48 +01:00
|
|
|
<packaging>jar</packaging>
|
2010-09-11 19:17:50 +02:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2011-03-02 19:26:48 +01:00
|
|
|
<groupId>commons-daemon</groupId>
|
|
|
|
|
<artifactId>commons-daemon</artifactId>
|
2014-05-14 16:30:58 +02:00
|
|
|
<version>${commons.daemon.version}</version>
|
2010-09-11 19:17:50 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2011-03-02 19:26:48 +01:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2010-09-11 19:17:50 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
2014-05-14 16:30:58 +02:00
|
|
|
<properties>
|
2020-03-14 21:16:26 +00:00
|
|
|
<commons.daemon.version>1.2.2</commons.daemon.version>
|
2014-05-14 16:30:58 +02:00
|
|
|
</properties>
|
2010-09-11 19:17:50 +02:00
|
|
|
|
|
|
|
|
</project>
|