Skip to content

Commit

Permalink
moved GitServiceClient to che-core-client-gwt-git, fixed version of p…
Browse files Browse the repository at this point in the history
…arent native git
  • Loading branch information
akorneta committed Jul 16, 2015
1 parent 723e7b7 commit e9dcbdc
Show file tree
Hide file tree
Showing 11 changed files with 1,975 additions and 3 deletions.
4 changes: 2 additions & 2 deletions che-core-git-impl-native/pom.xml
Expand Up @@ -16,7 +16,7 @@
<parent>
<artifactId>che-core-parent</artifactId>
<groupId>org.eclipse.che.core</groupId>
<version>3.11.2-SNAPSHOT</version>
<version>3.11.4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>che-core-git-impl-native</artifactId>
Expand Down Expand Up @@ -57,7 +57,7 @@
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-git</artifactId>
<version>${che.core.version}</version>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
Expand Down
44 changes: 44 additions & 0 deletions platform-api-client-gwt/che-core-client-gwt-git/pom.xml
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012-2015 Codenvy, S.A.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Codenvy, S.A. - initial API and implementation
-->
<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>che-core-client-gwt-parent</artifactId>
<groupId>org.eclipse.che.core</groupId>
<version>3.11.4-SNAPSHOT</version>
</parent>
<artifactId>che-core-client-gwt-git</artifactId>
<packaging>jar</packaging>
<name>Che Core API :: Client GWT :: GIT</name>
<properties>
<dto-generator-out-directory>${project.build.directory}/generated-sources/dto/</dto-generator-out-directory>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-git</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-project</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-ide-ui</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit e9dcbdc

Please sign in to comment.