mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +00:00
Fix petclinic sources
This commit is contained in:
parent
5cb9afadd9
commit
583cf2f00f
12 changed files with 13 additions and 13 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue