Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jdk:
os:
- linux
env:
- SOURCE_DIR_1=001-Lazy
- SOURCE_DIR_1=001-Lazy SOURCE_DIR_2=myVCS
script:
- cd $SOURCE_DIR_1 && gradle check

- cd $SOURCE_DIR_1 && gradle check && cd ..
- cd $SOURCE_DIR_2 && gradle check && cd ..
21 changes: 21 additions & 0 deletions myVCS/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'application'

mainClassName = "com.maxim.Main"

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'com.google.guava', name: 'guava', version: '19.0'
compile group: 'commons-codec', name: 'commons-codec', version: '1.5'
compile group: 'org.mockito', name: 'mockito-all', version: '1.8.4'
compile 'com.intellij:annotations:+@jar'
compile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}
Binary file added myVCS/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions myVCS/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Thu Mar 23 06:06:06 MSK 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip
169 changes: 169 additions & 0 deletions myVCS/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 84 additions & 0 deletions myVCS/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions myVCS/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rootProject.name = 'myVCS'

Loading