Trivial fix to license and dependency

README.rst
  Was not rendering correctly due to license portion.  Just
  moved it down so that rst file would render correctly on github

pom.xml
  maven handles mockito transitive dependencies so we only need
  to depend on mockito-core instead of mockito-all.

Change-Id: I125bd88fec66f843ccc8f1863ed6d1803513405b
This commit is contained in:
zaro0508 2013-03-26 10:00:42 -07:00
parent 1c6e1cba44
commit d52850616f
2 changed files with 19 additions and 17 deletions

View File

@ -1,19 +1,3 @@
---------------------------------------------------------------------
Copyright 2013 Hewlett-Packard Development Company, L.P.
Licensed under the Apache License, Version 2.0 (the "License");
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 "AS IS" 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.
---------------------------------------------------------------------
Installation
============
@ -45,3 +29,21 @@ Patches are submitted via Gerrit at:
More details on how you can contribute is available on our wiki at:
* http://wiki.openstack.org/HowToContribute
License
=======
Copyright 2013 Hewlett-Packard Development Company, L.P.
Licensed under the Apache License, Version 2.0 (the "License");
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 "AS IS" 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.

View File

@ -346,7 +346,7 @@
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>