Commit 660b9f0a by Jan Hrabal

renaming

parent 192ddd5d
...@@ -6,11 +6,6 @@ ...@@ -6,11 +6,6 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java"> <classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes> <attributes>
<attribute name="optional" value="true"/> <attribute name="optional" value="true"/>
......
...@@ -6,6 +6,11 @@ ...@@ -6,6 +6,11 @@
</projects> </projects>
<buildSpec> <buildSpec>
<buildCommand> <buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name> <name>org.eclipse.jdt.core.javabuilder</name>
<arguments> <arguments>
</arguments> </arguments>
...@@ -20,9 +25,16 @@ ...@@ -20,9 +25,16 @@
<arguments> <arguments>
</arguments> </arguments>
</buildCommand> </buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec> </buildSpec>
<natures> <natures>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature> <nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures> </natures>
</projectDescription> </projectDescription>
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>redegast</artifactId> <artifactId>radegast</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>RateIT</name> <name>RateIT</name>
......
package com.jh.rateit; package com.jh.radegast;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching; import org.springframework.cache.annotation.EnableCaching;
......
package com.jh.rateit.api; package com.jh.radegast.api;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
......
package com.jh.rateit.model; package com.jh.radegast.model;
import java.util.Date; import java.util.Date;
......
package com.jh.rateit.model; package com.jh.radegast.model;
import com.jh.common.jpa.AbstractIdEntity; import com.jh.common.jpa.AbstractIdEntity;
......
package com.jh.rateit.model; package com.jh.radegast.model;
import java.util.Locale; import java.util.Locale;
......
package com.jh.rateit.rating; package com.jh.radegast.rating;
import java.util.Collection; import java.util.Collection;
...@@ -6,7 +6,7 @@ import org.hibernate.Session; ...@@ -6,7 +6,7 @@ import org.hibernate.Session;
import org.springframework.stereotype.Repository; import org.springframework.stereotype.Repository;
import com.jh.common.jpa.AbstractHibernateRepository; import com.jh.common.jpa.AbstractHibernateRepository;
import com.jh.rateit.model.Rating; import com.jh.radegast.model.Rating;
@Repository @Repository
......
package com.jh.rateit.rating; package com.jh.radegast.rating;
import java.util.Collection; import java.util.Collection;
...@@ -6,7 +6,7 @@ import org.springframework.beans.factory.annotation.Autowired; ...@@ -6,7 +6,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import com.jh.rateit.model.Rating; import com.jh.radegast.model.Rating;
@Service @Service
public class RatingService { public class RatingService {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment