Skip to content
Snippets Groups Projects
Commit f5a98180 authored by Martin Staehr's avatar Martin Staehr
Browse files

move to modules folder

parent 5bef1690
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,9 @@
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
......@@ -105,6 +105,12 @@
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
......@@ -124,16 +130,7 @@
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-servlet</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.9.5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
package unipotsdam.gf.communication.model;
package unipotsdam.gf.modules.communication.model;
public class SampleAnswer {
......
package unipotsdam.gf.communication.service;
package unipotsdam.gf.modules.communication.service;
import unipotsdam.gf.communication.model.SampleAnswer;
import unipotsdam.gf.modules.communication.model.SampleAnswer;
public class SampleService {
......
package unipotsdam.gf.communication.view;
package unipotsdam.gf.modules.communication.view;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import unipotsdam.gf.communication.model.SampleAnswer;
import unipotsdam.gf.communication.service.SampleService;
import unipotsdam.gf.modules.communication.model.SampleAnswer;
import unipotsdam.gf.modules.communication.service.SampleService;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
......
package unipotsdam.gf.communication.service;
package unipotsdam.gf.modules.communication.service;
import org.junit.Test;
import unipotsdam.gf.communication.model.SampleAnswer;
import unipotsdam.gf.modules.communication.model.SampleAnswer;
import static org.junit.Assert.assertEquals;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment