Skip to content

Commit f7ad720

Browse files
Add initial project setup files
0 parents  commit f7ad720

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.idea/
2+
out/
3+
4+
#Gradle
5+
gradle/
6+
gradlew
7+
gradlew.bat
8+
build/
9+
.gradle/
10+
.DS_Store
11+
.class

build.gradle

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group 'com.tw.beach'
6+
version '1.0-SNAPSHOT'
7+
8+
sourceCompatibility = 1.8
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
dependencies {
15+
compile 'org.junit.jupiter:junit-jupiter-api:5.4.0-RC2'
16+
}

settings.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'splitwise'
2+

0 commit comments

Comments
 (0)