|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | + ~ or more contributor license agreements. See the NOTICE file |
| 5 | + ~ distributed with this work for additional information |
| 6 | + ~ regarding copyright ownership. The ASF licenses this file |
| 7 | + ~ to you under the Apache License, Version 2.0 (the |
| 8 | + ~ "License"); you may not use this file except in compliance |
| 9 | + ~ with the License. You may obtain a copy of the License at |
| 10 | + ~ |
| 11 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | + ~ |
| 13 | + ~ Unless required by applicable law or agreed to in writing, |
| 14 | + ~ software distributed under the License is distributed on an |
| 15 | + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | + ~ KIND, either express or implied. See the License for the |
| 17 | + ~ specific language governing permissions and limitations |
| 18 | + ~ under the License. |
| 19 | + --> |
| 20 | +<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"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + |
| 23 | + <parent> |
| 24 | + <groupId>org.apache.maven.scm</groupId> |
| 25 | + <artifactId>maven-scm</artifactId> |
| 26 | + <version>2.0.2-SNAPSHOT</version> |
| 27 | + </parent> |
| 28 | + |
| 29 | + <artifactId>maven-scm-client</artifactId> |
| 30 | + |
| 31 | + <name>Maven SCM Client</name> |
| 32 | + <description>SCM Client is a simple SCM command line tool.</description> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>org.apache.maven.scm</groupId> |
| 37 | + <artifactId>maven-scm-manager-plexus</artifactId> |
| 38 | + <scope>runtime</scope> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.apache.maven.scm</groupId> |
| 42 | + <artifactId>maven-scm-api</artifactId> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.codehaus.plexus</groupId> |
| 46 | + <artifactId>plexus-utils</artifactId> |
| 47 | + </dependency> |
| 48 | + |
| 49 | + <!-- providers declaration --> |
| 50 | + <dependency> |
| 51 | + <groupId>org.apache.maven.scm</groupId> |
| 52 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 53 | + <scope>runtime</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.apache.maven.scm</groupId> |
| 57 | + <artifactId>maven-scm-provider-hg</artifactId> |
| 58 | + <scope>runtime</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.apache.maven.scm</groupId> |
| 62 | + <artifactId>maven-scm-provider-local</artifactId> |
| 63 | + <scope>runtime</scope> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.apache.maven.scm</groupId> |
| 67 | + <artifactId>maven-scm-provider-svnexe</artifactId> |
| 68 | + <scope>runtime</scope> |
| 69 | + </dependency> |
| 70 | + <!-- end providers declaration --> |
| 71 | + |
| 72 | + <!-- runtime bits needed to construct Plexus --> |
| 73 | + <dependency> |
| 74 | + <groupId>org.codehaus.plexus</groupId> |
| 75 | + <artifactId>plexus-classworlds</artifactId> |
| 76 | + <scope>runtime</scope> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.eclipse.sisu</groupId> |
| 80 | + <artifactId>org.eclipse.sisu.plexus</artifactId> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>com.google.inject</groupId> |
| 84 | + <artifactId>guice</artifactId> |
| 85 | + <classifier>no_aop</classifier> |
| 86 | + <scope>runtime</scope> |
| 87 | + </dependency> |
| 88 | + </dependencies> |
| 89 | + |
| 90 | + <build> |
| 91 | + <plugins> |
| 92 | + <plugin> |
| 93 | + <groupId>org.apache.maven.plugins</groupId> |
| 94 | + <artifactId>maven-assembly-plugin</artifactId> |
| 95 | + <configuration> |
| 96 | + <descriptorRefs> |
| 97 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 98 | + </descriptorRefs> |
| 99 | + <finalName>maven-scm-client-${project.version}</finalName> |
| 100 | + <archive> |
| 101 | + <manifestEntries> |
| 102 | + <Main-Class>org.apache.maven.scm.client.cli.MavenScmCli</Main-Class> |
| 103 | + </manifestEntries> |
| 104 | + </archive> |
| 105 | + </configuration> |
| 106 | + <executions> |
| 107 | + <execution> |
| 108 | + <goals> |
| 109 | + <goal>single</goal> |
| 110 | + </goals> |
| 111 | + <phase>package</phase> |
| 112 | + </execution> |
| 113 | + </executions> |
| 114 | + </plugin> |
| 115 | + </plugins> |
| 116 | + </build> |
| 117 | +</project> |
0 commit comments