removed dependecies from pom.xml.

Change-Id: I0c6178eb888f1fe558b4989119bd6caa6966e02f
diff --git a/compiler/base/pom.xml b/compiler/base/pom.xml
index d29c6a3..5951107 100644
--- a/compiler/base/pom.xml
+++ b/compiler/base/pom.xml
@@ -35,25 +35,12 @@
         <module>parser</module>
         <module>tool</module>
     </modules>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <version>3.0.2</version>
-                <configuration>
-                    <skipIfEmpty>true</skipIfEmpty>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>default</id>
-                        <goals>
-                            <goal>test-jar</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.12</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>