Fix petclinic sources

This commit is contained in:
Alexander Sharov 2018-09-25 21:25:14 +04:00
parent 5cb9afadd9
commit 583cf2f00f
12 changed files with 13 additions and 13 deletions

View file

@ -188,8 +188,8 @@
<wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory
</wroManagerFactory>
<cssDestinationFolder>${project.build.directory}/classes/static/resources/css</cssDestinationFolder>
<wroFile>src/main/wro/wro.xml</wroFile>
<extraConfigFile>src/main/wro/wro.properties</extraConfigFile>
<wroFile>${basedir}/src/main/wro/wro.xml</wroFile>
<extraConfigFile>${basedir}/src/main/wro/wro.properties</extraConfigFile>
<contextFolder>${basedir}/src/main/less</contextFolder>
</configuration>
<dependencies>

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package test.java.org.springframework.samples.petclinic;
package org.springframework.samples.petclinic;
import org.junit.Test;
import org.junit.runner.RunWith;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.model;
package org.springframework.samples.petclinic.model;
import java.util.Locale;
import java.util.Set;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.owner;
package org.springframework.samples.petclinic.owner;
import static org.hamcrest.Matchers.hasProperty;
import static org.hamcrest.Matchers.is;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.owner;
package org.springframework.samples.petclinic.owner;
import static org.mockito.BDDMockito.given;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.owner;
package org.springframework.samples.petclinic.owner;
import java.text.ParseException;
import java.util.ArrayList;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.owner;
package org.springframework.samples.petclinic.owner;
import static org.mockito.BDDMockito.given;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package test.java.org.springframework.samples.petclinic.service;
package org.springframework.samples.petclinic.service;
import static org.assertj.core.api.Assertions.assertThat;

View file

@ -14,7 +14,7 @@
* limitations under the License.
*/
package test.java.org.springframework.samples.petclinic.service;
package org.springframework.samples.petclinic.service;
import java.util.Collection;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.system;
package org.springframework.samples.petclinic.system;
import org.junit.Ignore;
import org.junit.Test;

View file

@ -1,4 +1,4 @@
package test.java.org.springframework.samples.petclinic.vet;
package org.springframework.samples.petclinic.vet;
import static org.hamcrest.xml.HasXPath.hasXPath;
import static org.mockito.BDDMockito.given;

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.java.org.springframework.samples.petclinic.vet;
package org.springframework.samples.petclinic.vet;
import org.junit.Test;