Skip to content

Commit 7bfae33

Browse files
committed
1 parent 7b67684 commit 7bfae33

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-svn.svg)](https://jitpack.io/#ProjectKaiser/scm4j-vcs-svn)
1+
[![Release](https://jitpack.io/v/scm4j/scm4j-vcs-svn.svg)](https://jitpack.io/#scm4j/scm4j-vcs-svn)
22

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

1414
# Terms
1515
- Workspace Home
16-
- Local home folder of all folders used by vcs-related operations. See [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) for details
16+
- Local home 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
- A local file-based SVN repository used for functional testing
2323
- Creates new before and deletes after each test automatically
@@ -34,10 +34,10 @@ Features:
3434

3535
dependencies {
3636
// versioning: master-SNAPSHOT (lastest build, unstable), + (lastest release, stable) or certain version (e.g. 1.1)
37-
compile 'com.github.ProjectKaiser:scm4j-vcs-svn:+'
37+
compile 'com.github.scm4j:scm4j-vcs-svn:+'
3838
}
3939
```
40-
Or download release jars from https://github.com/ProjectKaiser/scm4j-vcs-svn/releases
40+
Or download release jars from https://github.com/scm4j/scm4j-vcs-svn/releases
4141
- 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)
4242
```java
4343
public static final String WORKSPACE_DIR = System.getProperty("java.io.tmpdir") + "svn-workspaces";
@@ -54,15 +54,15 @@ Features:
5454
```java
5555
IVCS vcs = new SVNVCS(repoWorkspace, username, pass);
5656
```
57-
- Use methods of `IVCS` interface. See [scm4j-vcs-api](https://github.com/ProjectKaiser/scm4j-vcs-api) for details
57+
- Use methods of `IVCS` interface. See [scm4j-vcs-api](https://github.com/scm4j/scm4j-vcs-api) for details
5858
- Use `vcs.setProxy()` and `vcs.setCredentials()` if necessary
5959

6060
# Implementation details
6161
- [SVNKit](https://svnkit.com/) is used for manage SVN repositories
6262
- LWC is obtained automatically when necessary
6363

6464
# Functional testing
65-
- To execute tests just run SVNVCSTest class as JUnit test. Tests from VCSAbstractTest class will be executed. See [scm4j-vcs-test](https://github.com/ProjectKaiser/scm4j-vcs-test) for details
65+
- To execute tests just run SVNVCSTest class as JUnit test. Tests from VCSAbstractTest class will be executed. See [scm4j-vcs-test](https://github.com/scm4j/scm4j-vcs-test) for details
6666
- Or run `gradle test`
6767

6868
# Limitations

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ repositories {
1818
defaultTasks 'build';
1919

2020
dependencies {
21-
compile 'com.github.ProjectKaiser:scm4j-vcs-api:master-SNAPSHOT'
21+
compile 'com.github.scm4j:scm4j-vcs-api:master-SNAPSHOT'
2222
compile 'org.tmatesoft.svnkit:svnkit:1.8.14'
2323

2424
testCompile 'junit:junit:4.12'
25-
testCompile 'com.github.ProjectKaiser:scm4j-vcs-test:master-SNAPSHOT'
25+
testCompile 'com.github.scm4j:scm4j-vcs-test:master-SNAPSHOT'
2626
testCompile 'org.mockito:mockito-core:2.0.62-beta'
2727
}
2828

0 commit comments

Comments
 (0)