Override maven-default-http-blocker with a dummy

Resolves #22

Change-Id: I904a28ebf0ca09e4938307068e5c2678d5088a39
diff --git a/.mvn/local-settings.xml b/.mvn/local-settings.xml
new file mode 100644
index 0000000..175fdf9
--- /dev/null
+++ b/.mvn/local-settings.xml
@@ -0,0 +1,11 @@
+<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd">
+     <mirrors>
+          <mirror>
+               <id>maven-default-http-blocker</id>
+               <mirrorOf>dummy</mirrorOf>
+               <name>Dummy mirror to override default blocking mirror that blocks http</name>
+               <url>http://0.0.0.0/</url>
+         </mirror>
+    </mirrors>
+</settings>
diff --git a/.mvn/maven.config b/.mvn/maven.config
new file mode 100644
index 0000000..d97a699
--- /dev/null
+++ b/.mvn/maven.config
@@ -0,0 +1 @@
+--settings ./.mvn/local-settings.xml