Skip to content

Commit 75d676f

Browse files
committed
cleanup
1 parent 26ed62d commit 75d676f

File tree

4 files changed

+13
-20
lines changed

4 files changed

+13
-20
lines changed

.idea/modules/erdos.iml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
1+
group 'com.hendrix.erdos'
2+
version '1.0-SNAPSHOT'
3+
14
apply plugin: 'java'
25

3-
sourceCompatibility = 1.8
6+
sourceCompatibility = 1.7
47
targetCompatibility = 1.8
58

69
repositories {
710
jcenter()
11+
mavenCentral()
812
}
913

10-
/*
11-
sourceSets {
12-
main {
13-
java {
14-
srcDir 'src/main/java'
15-
}
16-
}
17-
18-
test {
19-
java {
20-
srcDir 'src/test/java'
21-
}
22-
}
23-
}
24-
*/
25-
2614
dependencies {
2715
compile fileTree(include: ['*.jar'], dir: 'libs')
2816
testCompile "junit:junit:4.11"

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'erdos'
2+

src/test/java/com/hendrix/test/GraphTestsTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import org.junit.Before;
55
import org.junit.Test;
66

7+
import java.util.concurrent.ThreadPoolExecutor;
8+
79
import static org.junit.Assert.*;
810

911
/**
@@ -22,6 +24,7 @@ public void tearDown() throws Exception {
2224

2325
@Test
2426
public void testHello() {
27+
2528
assert (false);
2629
}
2730

0 commit comments

Comments
 (0)