mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-17 18:51:10 +01:00
86 lines
2.3 KiB
XML
86 lines
2.3 KiB
XML
|
|
<?xml version="1.0"?>
|
||
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
|
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<artifactId>scm-clients</artifactId>
|
||
|
|
<groupId>sonia.scm.clients</groupId>
|
||
|
|
<version>1.3-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<groupId>sonia.scm.clients</groupId>
|
||
|
|
<artifactId>scm-cli-client</artifactId>
|
||
|
|
<version>1.3-SNAPSHOT</version>
|
||
|
|
<name>scm-cli-client</name>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<artifactId>scm-core</artifactId>
|
||
|
|
<groupId>sonia.scm</groupId>
|
||
|
|
<version>1.3-SNAPSHOT</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>guice</artifactId>
|
||
|
|
<groupId>com.google.inject</groupId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>guice-servlet</artifactId>
|
||
|
|
<groupId>com.google.inject.extensions</groupId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<artifactId>guice-multibindings</artifactId>
|
||
|
|
<groupId>com.google.inject.extensions</groupId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>sonia.scm.clients</groupId>
|
||
|
|
<artifactId>scm-client-impl</artifactId>
|
||
|
|
<version>1.3-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>args4j</groupId>
|
||
|
|
<artifactId>args4j</artifactId>
|
||
|
|
<version>2.0.16</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>ch.qos.logback</groupId>
|
||
|
|
<artifactId>logback-classic</artifactId>
|
||
|
|
<version>0.9.28</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
|
<version>2.2</version>
|
||
|
|
<configuration>
|
||
|
|
<descriptorRefs>
|
||
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
|
</descriptorRefs>
|
||
|
|
</configuration>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<phase>package</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>assembly</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|