diff --git a/README.md b/README.md index 3b32531..02497bf 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,9 @@ git clone --mirror git@github.com:bozaro/git-lfs-migrate.git # -c, --cache # Source repository # Default: . +# --check-lfs +# Check LFS server settings and exit +# Default: false # * -d, --destination # Destination repository # -g, --git diff --git a/build.gradle b/build.gradle index 02ed28f..4e91ac2 100644 --- a/build.gradle +++ b/build.gradle @@ -10,10 +10,6 @@ task wrapper(type: Wrapper) { repositories { mavenCentral() - mavenLocal() - maven { - url "https://oss.sonatype.org/content/repositories/snapshots/" - } } apply plugin: "idea" @@ -27,8 +23,8 @@ dependencies { compile "org.jgrapht:jgrapht-core:0.9.1" compile "com.beust:jcommander:1.35" - compile "ru.bozaro.gitlfs:gitlfs-pointer:0.7.0-SNAPSHOT" - compile "ru.bozaro.gitlfs:gitlfs-client:0.7.0-SNAPSHOT" + compile "ru.bozaro.gitlfs:gitlfs-pointer:0.7.0" + compile "ru.bozaro.gitlfs:gitlfs-client:0.7.0" testCompile "org.testng:testng:6.8.8" }