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: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ language: java
sudo: false

notifications:
email: false
email: false

env:
- TEST_DIR=MD5
script: cd $TEST_DIR && ./gradlew clean check
7 changes: 7 additions & 0 deletions MD5/.idea/misc.xml

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

16 changes: 16 additions & 0 deletions MD5/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
group 'ru.spbau.dkaznacheev'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.jetbrains', name: 'annotations', version: '15.0'

}
Binary file added MD5/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions MD5/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
172 changes: 172 additions & 0 deletions MD5/gradlew

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

84 changes: 84 additions & 0 deletions MD5/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 MD5/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rootProject.name = 'MD5'

5 changes: 5 additions & 0 deletions MD5/src/main/java/ForkJoinError.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**
* An exception that occurs during ForkJoinPool execution.
*/
public class ForkJoinError extends Error {
}
Loading