Browse Source

Add build file for anagram

Katrina Owen 11 years ago
parent
commit
91a4783cb2
1 changed files with 11 additions and 0 deletions
  1. 11
    0
      anagram/build.gradle

+ 11
- 0
anagram/build.gradle View File

1
+apply plugin: "java"
2
+apply plugin: "eclipse"
3
+apply plugin: "idea"
4
+
5
+repositories {
6
+  mavenCentral()
7
+}
8
+
9
+dependencies {
10
+  testCompile "junit:junit:4.10"
11
+}