Skip to content

Commit

Permalink
Setting up Gradle Project for ASPP Football-Prediction
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuskilian committed Aug 25, 2017
1 parent 67437f7 commit be88d9b
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,14 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# Mac OS X Clutter
*.DS_Store

# Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
*/.idea/workspace.xml
*/.idea/tasks.xml
*/.idea/datasources.xml
*/.idea/dataSources.ids
*/.idea/gradle.xml
*/.idea/modules/*.iml
59 changes: 59 additions & 0 deletions football-prediction/.idea/misc.xml

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

8 changes: 8 additions & 0 deletions football-prediction/.idea/modules.xml

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

14 changes: 14 additions & 0 deletions football-prediction/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
group 'aspp'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
2 changes: 2 additions & 0 deletions football-prediction/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rootProject.name = 'football-prediction'

0 comments on commit be88d9b

Please sign in to comment.