diff --git a/scm-clients/pom.xml b/scm-clients/pom.xml index 77cb958925..dea134f51a 100644 --- a/scm-clients/pom.xml +++ b/scm-clients/pom.xml @@ -17,6 +17,7 @@ scm-client-api + scm-cli-client diff --git a/scm-clients/scm-cli-client/pom.xml b/scm-clients/scm-cli-client/pom.xml new file mode 100644 index 0000000000..b4da1970ba --- /dev/null +++ b/scm-clients/scm-cli-client/pom.xml @@ -0,0 +1,85 @@ + + + + 4.0.0 + + + scm-clients + sonia.scm.clients + 1.3-SNAPSHOT + + + sonia.scm.clients + scm-cli-client + 1.3-SNAPSHOT + scm-cli-client + + + + + scm-core + sonia.scm + 1.3-SNAPSHOT + + + guice + com.google.inject + + + guice-servlet + com.google.inject.extensions + + + guice-multibindings + com.google.inject.extensions + + + + + + sonia.scm.clients + scm-client-impl + 1.3-SNAPSHOT + + + + args4j + args4j + 2.0.16 + + + + ch.qos.logback + logback-classic + 0.9.28 + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + jar-with-dependencies + + + + + package + + assembly + + + + + + + + + diff --git a/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/App.java b/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/App.java new file mode 100644 index 0000000000..b2abd3b58c --- /dev/null +++ b/scm-clients/scm-cli-client/src/main/java/sonia/scm/cli/App.java @@ -0,0 +1,50 @@ +/** + * Copyright (c) 2010, Sebastian Sdorra + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * 3. Neither the name of SCM-Manager; nor the names of its + * contributors may be used to endorse or promote products derived from this + * software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * http://bitbucket.org/sdorra/scm-manager + * + */ + + + +package sonia.scm.cli; + +/** + * + * @author Sebastian Sdorra + */ +public class App +{ + + /** + * Method description + * + * + * @param args + */ + public static void main(String[] args) {} +}