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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ local.properties
.settings/
.loadpath
.recommenders
.gradle/*

# External tool builders
.externalToolBuilders/
Expand Down
Binary file removed .gradle/6.1.1/executionHistory/executionHistory.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/fileChanges/last-build.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/fileContent/fileContent.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/fileHashes/fileHashes.lock
Binary file not shown.
Empty file removed .gradle/6.1.1/gc.properties
Empty file.
Binary file removed .gradle/6.1.1/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file removed .gradle/6.1.1/javaCompile/javaCompile.lock
Binary file not shown.
Binary file removed .gradle/6.1.1/javaCompile/taskHistory.bin
Binary file not shown.
Binary file removed .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 0 additions & 2 deletions .gradle/buildOutputCleanup/cache.properties

This file was deleted.

Binary file removed .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file removed .gradle/checksums/checksums.lock
Binary file not shown.
Binary file removed .gradle/checksums/md5-checksums.bin
Binary file not shown.
Binary file removed .gradle/checksums/sha1-checksums.bin
Binary file not shown.
Empty file removed .gradle/vcs-1/gc.properties
Empty file.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
build:
gradle build
unzip ./build/distributions/BugPatchCollector.zip -d run

unzip:
rm -rf run
unzip ./build/distributions/BugPatchCollector.zip

run:
./BugPatchCollector/bin/BugPatchCollector $(args)

clean:
rm -rf run
rm -rf build
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,19 @@ dependencies {

// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

compile 'info.picocli:picocli:4.5.0'
compileOnly 'info.picocli:picocli-codegen:4.5.0'

// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.8.0'

// https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.9.0'

// https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-gson
compile group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.9.0'



}
102 changes: 0 additions & 102 deletions build/distributions/BugPatchCollector/lib/all-1.1.2.pom

This file was deleted.

183 changes: 0 additions & 183 deletions build/scripts/BugPatchCollector

This file was deleted.

Loading