Skip to content

Commit 0b9c9a8

Browse files
committed
1 parent c3ead27 commit 0b9c9a8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Release](https://jitpack.io/v/ProjectKaiser/scm4j-vcs-git.svg)](https://jitpack.io/#ProjectKaiser/scm4j-vcs-git)
1+
[![Release](https://jitpack.io/v/scm4j/scm4j-vcs-git.svg)](https://jitpack.io/#scm4j/scm4j-vcs-git)
22

33
# Overview
4-
scm4j-vcs-git is lightweight library for execute basic Git VCS operations (merge, branch create etc). It uses [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) exposing IVCS implementation for Git repositories and [JGit](https://eclipse.org/jgit/) as framework to work with Git repositories.
4+
scm4j-vcs-git is lightweight library for execute basic Git VCS operations (merge, branch create etc). It uses [scm4j-vcs-api](https://github.com/scm4j/scm4j-vcs-api) exposing IVCS implementation for Git repositories and [JGit](https://eclipse.org/jgit/) as framework to work with Git repositories.
55
Features:
66
- Branch create and remove
77
- Branch merge with result return (success or list of conflicted files)
@@ -13,11 +13,11 @@ Features:
1313

1414
# Terms
1515
- Workspace Home
16-
- Home local folder of all folders used by vcs-related operations. See [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) for details
16+
- Home local folder of all folders used by vcs-related operations. See [scm4j-vcs-api](https://github.com/scm4j/scm4j-vcs-api) for details
1717
- Repository Workspace
18-
- Local folder for LWC folders related to Repository of one type. See [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) for details
18+
- Local folder for LWC folders related to Repository of one type. See [scm4j-vcs-api](https://github.com/scm4j/scm4j-vcs-api) for details
1919
- Locked Working Copy, LWC
20-
- Local folder where vcs-related operations are executed. Provides thread- and process-safe repository of working folders. See [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) for details
20+
- Local folder where vcs-related operations are executed. Provides thread- and process-safe repository of working folders. See [scm4j-vcs-api](https://github.com/scm4j/scm4j-vcs-api) for details
2121
- Test Repository
2222
- Git repository which is used to execute functional tests
2323
- File-based repository is used
@@ -35,10 +35,10 @@ Features:
3535

3636
dependencies {
3737
// versioning: master-SNAPSHOT (lastest build, unstable), + (lastest release, stable) or certain version (e.g. 1.1)
38-
compile 'com.github.ProjectKaiser:scm4j-vcs-git:+'
38+
compile 'com.github.scm4j:scm4j-vcs-git:+'
3939
}
4040
```
41-
Or download release jars from https://github.com/ProjectKaiser/scm4j-vcs-git/releases
41+
Or download release jars from https://github.com/scm4j/scm4j-vcs-git/releases
4242
- Create Workspace Home instance providing path to any folder as Workspace Home folder path. This folder will contain repositories folders (if different vcs or repositories are used)
4343
```java
4444
public static final String WORKSPACE_DIR = System.getProperty("java.io.tmpdir") + "git-workspaces";
@@ -55,7 +55,7 @@ Features:
5555
```java
5656
IVCS vcs = new GitVCS(repoWorkspace);
5757
```
58-
- Use methods of `IVCS` interface. See [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) for details
58+
- Use methods of `IVCS` interface. See [scm4j-vcs-api](https://github.com/scm4j/scm4j-vcs-api) for details
5959
- Use `vcs.setProxy()` and `vcs.setCredentials()` if necessary
6060

6161
# Implementation details
@@ -67,7 +67,7 @@ Features:
6767

6868
# Functional testing
6969
- New local file-based Test Repository is created before each test and deletes automatically after each test
70-
- To execute tests just run GitVCSTest class as JUnit test. Tests from VCSAbstractTest class will be executed. See [scm4j-vcs-test](https://github.com/ProjectKaiser/scm4j-vcs-test) for details
70+
- To execute tests just run GitVCSTest class as JUnit test. Tests from VCSAbstractTest class will be executed. See [scm4j-vcs-test](https://github.com/scm4j/scm4j-vcs-test) for details
7171
- Run `gradle test` to execute tests
7272

7373
# Limitations

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ repositories {
1515
}
1616

1717
dependencies {
18-
compile 'com.github.ProjectKaiser:scm4j-vcs-api:master-SNAPSHOT'
18+
compile 'com.github.scm4j:scm4j-vcs-api:master-SNAPSHOT'
1919
compile 'org.eclipse.jgit:org.eclipse.jgit:4.3.0.201604071810-r'
2020

2121
testCompile 'org.mockito:mockito-core:2.0.62-beta'
2222
testCompile 'junit:junit:4.12'
23-
testCompile 'com.github.ProjectKaiser:scm4j-vcs-test:master-SNAPSHOT'
23+
testCompile 'com.github.scm4j:scm4j-vcs-test:master-SNAPSHOT'
2424
}
2525

2626
task sourcesJar(type: Jar, dependsOn: classes) {

0 commit comments

Comments
 (0)