Skip to content

Commit f2405a6

Browse files
author
gdy
committed
changed to version 1.0
documentation updated
1 parent 94a30a6 commit f2405a6

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ Features:
3434
}
3535

3636
dependencies {
37-
compile 'com.github.ProjectKaiser:pk-vcs-svn:master-SNAPSHOT'
38-
compile 'com.github.ProjectKaiser:pk-vcs-api:master-SNAPSHOT'
37+
// versioning: master-SNAPSHOT (lastest build, unstable), + (lastest release, stable) or certain version (e.g. 1.1)
38+
compile 'com.github.ProjectKaiser:pk-vcs-svn:1.0'
39+
compile 'com.github.ProjectKaiser:pk-vcs-api:1.1'
3940
}
4041
```
42+
Or download release jars from https://github.com/ProjectKaiser/pk-vcs-svn/releases, https://github.com/ProjectKaiser/pk-vcs-api/releases
4143
- 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)
4244
```java
4345
public static final String WORKSPACE_DIR = System.getProperty("java.io.tmpdir") + "git-workspaces";

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sourceCompatibility = JavaVersion.VERSION_1_7
66
targetCompatibility = JavaVersion.VERSION_1_7
77

88
group = 'com.projectkaiser.scm'
9-
version = '1.0-SNAPSHOT'
9+
version = '1.0'
1010

1111
repositories {
1212
mavenCentral()
@@ -18,12 +18,12 @@ repositories {
1818
defaultTasks 'build';
1919

2020
dependencies {
21-
compile 'com.github.ProjectKaiser:pk-vcs-api:master-SNAPSHOT'
21+
compile 'com.github.ProjectKaiser:pk-vcs-api:1.1'
2222
compile 'org.tmatesoft.svnkit:svnkit:1.8.14'
2323
compile 'commons-logging:commons-logging:1.2'
2424

2525
testCompile 'junit:junit:4.12'
26-
testCompile 'com.github.ProjectKaiser:pk-vcs-test:master-SNAPSHOT'
26+
testCompile 'com.github.ProjectKaiser:pk-vcs-test:1.1'
2727
testCompile 'org.mockito:mockito-core:2.0.62-beta'
2828
}
2929

0 commit comments

Comments
 (0)