<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>header.txt</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -9,6 +9,9 @@
     &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt;
     &lt;name&gt;maven-fitnesse&lt;/name&gt;
 
+    &lt;scm&gt;
+        &lt;developerConnection&gt;scm:git:git://github.com/born2snipe/maven-fitnesse.git&lt;/developerConnection&gt;
+    &lt;/scm&gt;
 
     &lt;dependencies&gt;
 
@@ -36,6 +39,7 @@
 
     &lt;build&gt;
         &lt;plugins&gt;
+
             &lt;plugin&gt;
                 &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
                 &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
@@ -44,7 +48,64 @@
                     &lt;target&gt;1.5&lt;/target&gt;
                 &lt;/configuration&gt;
             &lt;/plugin&gt;
+
+            &lt;plugin&gt;
+                &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-release-plugin&lt;/artifactId&gt;
+                &lt;version&gt;2.0-beta-8&lt;/version&gt;
+                &lt;configuration&gt;
+                    &lt;autoVersionSubmodules&gt;true&lt;/autoVersionSubmodules&gt;
+                &lt;/configuration&gt;
+            &lt;/plugin&gt;
+
+            &lt;plugin&gt;
+                &lt;groupId&gt;com.google.code.maven-license-plugin&lt;/groupId&gt;
+                &lt;artifactId&gt;maven-license-plugin&lt;/artifactId&gt;
+                &lt;version&gt;1.4.0-rc1&lt;/version&gt;
+                &lt;configuration&gt;
+                    &lt;basedir&gt;${basedir}&lt;/basedir&gt;
+                    &lt;header&gt;${basedir}/header.txt&lt;/header&gt;
+                    &lt;quiet&gt;false&lt;/quiet&gt;
+                    &lt;failIfMissing&gt;true&lt;/failIfMissing&gt;
+                    &lt;aggregate&gt;false&lt;/aggregate&gt;
+                    &lt;includes&gt;
+                        &lt;include&gt;src/**&lt;/include&gt;
+                        &lt;include&gt;**/test/**&lt;/include&gt;
+                    &lt;/includes&gt;
+                    &lt;excludes&gt;
+                        &lt;exclude&gt;**/test/resources/**&lt;/exclude&gt;
+                    &lt;/excludes&gt;
+                    &lt;useDefaultExcludes&gt;true&lt;/useDefaultExcludes&gt;
+                    &lt;useDefaultMapping&gt;true&lt;/useDefaultMapping&gt;
+                    &lt;encoding&gt;UTF-8&lt;/encoding&gt;
+                &lt;/configuration&gt;
+                &lt;executions&gt;
+                    &lt;execution&gt;
+                        &lt;phase&gt;process-resources&lt;/phase&gt;
+                        &lt;goals&gt;
+                            &lt;goal&gt;format&lt;/goal&gt;
+                        &lt;/goals&gt;
+                    &lt;/execution&gt;
+                &lt;/executions&gt;
+            &lt;/plugin&gt;
+
         &lt;/plugins&gt;
     &lt;/build&gt;
 
+    &lt;pluginRepositories&gt;
+
+        &lt;pluginRepository&gt;
+            &lt;id&gt;mc-release&lt;/id&gt;
+            &lt;name&gt;Local Maven repository of releases&lt;/name&gt;
+            &lt;url&gt;http://mc-repo.googlecode.com/svn/maven2/releases&lt;/url&gt;
+            &lt;snapshots&gt;
+                &lt;enabled&gt;false&lt;/enabled&gt;
+            &lt;/snapshots&gt;
+            &lt;releases&gt;
+                &lt;enabled&gt;true&lt;/enabled&gt;
+            &lt;/releases&gt;
+        &lt;/pluginRepository&gt;
+
+    &lt;/pluginRepositories&gt;
+
 &lt;/project&gt;</diff>
      <filename>pom.xml</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import java.io.ByteArrayOutputStream;</diff>
      <filename>src/main/java/fitnesse/maven/util/CommandShell.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import java.io.File;</diff>
      <filename>src/main/java/fitnesse/maven/util/DependencyCache.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import java.io.File;</diff>
      <filename>src/main/java/fitnesse/maven/util/FileUtil.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import java.io.File;</diff>
      <filename>src/main/java/fitnesse/maven/util/MavenDependencyResolver.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import java.util.List;</diff>
      <filename>src/main/java/fitnesse/maven/util/StringUtil.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.widget;
 
 import fitnesse.html.HtmlUtil;</diff>
      <filename>src/main/java/fitnesse/maven/widget/PomWidget.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import junit.framework.TestCase;</diff>
      <filename>src/test/java/fitnesse/maven/util/DependencyCacheTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,20 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import fitnesse.util.StringUtil;
 import junit.framework.TestCase;
-import static org.mockito.Mockito.mock;
-import static org.mockito.Mockito.when;
 import static org.mockito.Mockito.*;
-import org.mockito.Mockito;
 
 import java.io.File;
 import java.text.MessageFormat;
@@ -60,7 +69,7 @@ public class MavenDependencyResolverTest extends TestCase {
 
         List&lt;String&gt; expectedDependencies = Arrays.asList(&quot;/classworlds-1.1.jar&quot;, &quot;/junit.jar&quot;);
         assertEquals(expectedDependencies, resolver.resolve(POM_FILE));
-        
+
         verify(dependencyCache).cache(POM_FILE, expectedDependencies);
     }
 </diff>
      <filename>src/test/java/fitnesse/maven/util/MavenDependencyResolverTest.java</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,15 @@
+/**
+ * Copyright to the original author or authors.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at:
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software distributed under the License is
+ * distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and limitations under the License.
+ */
 package fitnesse.maven.util;
 
 import junit.framework.TestCase;</diff>
      <filename>src/test/java/fitnesse/maven/util/StringUtilTest.java</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>081d8739c3bd2063e118fe039ac20600b050ec22</id>
    </parent>
  </parents>
  <author>
    <name>Dan Dudley</name>
    <email>born2snipe@gmail.com</email>
  </author>
  <url>http://github.com/born2snipe/maven-fitnesse/commit/8eac69d7b591a8f7dc4bce3a81ad6f7fff712090</url>
  <id>8eac69d7b591a8f7dc4bce3a81ad6f7fff712090</id>
  <committed-date>2009-04-21T20:50:38-07:00</committed-date>
  <authored-date>2009-04-21T20:50:38-07:00</authored-date>
  <message>added plugins: license &amp; release</message>
  <tree>6c81081d46cb803df3f8495def2fe8eedf9d057f</tree>
  <committer>
    <name>Dan Dudley</name>
    <email>born2snipe@gmail.com</email>
  </committer>
</commit>
