mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-07 16:12:10 +01:00
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>scm-samples</artifactId>
|
|
<groupId>sonia.scm.samples</groupId>
|
|
<version>1.14-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>sonia.scm.sample</groupId>
|
|
<artifactId>scm-sample-auth</artifactId>
|
|
<version>1.14-SNAPSHOT</version>
|
|
<name>scm-sample-auth</name>
|
|
<description>Sample Authentication Plugin</description>
|
|
<url>https://bitbucket.org/sdorra/scm-manager</url>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${servlet.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>sonia.scm</groupId>
|
|
<artifactId>scm-core</artifactId>
|
|
<version>1.14-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|