Skip to content

Commit 57f4dc4

Browse files
committed
Maven Site and Documentation
1 parent a458f37 commit 57f4dc4

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

src/main/java/org/woehlke/simpleworklist/application/common/AbstractController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.woehlke.simpleworklist.user.account.UserAccount;
1414
import org.woehlke.simpleworklist.task.TaskEnergy;
1515
import org.woehlke.simpleworklist.task.TaskTime;
16-
import org.woehlke.simpleworklist.context.services.ContextService;
16+
import org.woehlke.simpleworklist.domain.services.ContextService;
1717
import org.woehlke.simpleworklist.domain.services.ProjectService;
1818
import org.woehlke.simpleworklist.user.services.User2UserMessageService;
1919
import org.woehlke.simpleworklist.user.services.UserAccountService;

src/main/java/org/woehlke/simpleworklist/domain/context/ContextController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import org.springframework.web.bind.annotation.RequestMethod;
1010
import org.woehlke.simpleworklist.application.common.AbstractController;
1111
import org.woehlke.simpleworklist.context.Context;
12-
import org.woehlke.simpleworklist.context.services.ContextService;
12+
import org.woehlke.simpleworklist.domain.services.ContextService;
1313
import org.woehlke.simpleworklist.user.session.UserSessionBean;
1414

1515
import org.springframework.beans.factory.annotation.Autowired;

src/main/java/org/woehlke/simpleworklist/context/services/ContextService.java renamed to src/main/java/org/woehlke/simpleworklist/domain/services/ContextService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.woehlke.simpleworklist.context.services;
1+
package org.woehlke.simpleworklist.domain.services;
22

33
import org.woehlke.simpleworklist.context.Context;
44
import org.woehlke.simpleworklist.domain.context.NewContextForm;

src/main/java/org/woehlke/simpleworklist/domain/services/ContextServiceImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import org.springframework.transaction.annotation.Transactional;
77
import org.woehlke.simpleworklist.context.Context;
88
import org.woehlke.simpleworklist.context.ContextRepository;
9-
import org.woehlke.simpleworklist.context.services.ContextService;
109
import org.woehlke.simpleworklist.domain.context.NewContextForm;
1110
import org.woehlke.simpleworklist.user.account.UserAccount;
1211
import org.woehlke.simpleworklist.project.ProjectRepository;

src/test/java/org/woehlke/simpleworklist/application/config/UserAccountTestDataServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import org.springframework.stereotype.Service;
77
import org.woehlke.simpleworklist.application.ApplicationProperties;
88
import org.woehlke.simpleworklist.context.Context;
9-
import org.woehlke.simpleworklist.context.services.ContextService;
9+
import org.woehlke.simpleworklist.domain.services.ContextService;
1010
import org.woehlke.simpleworklist.domain.context.NewContextForm;
1111
import org.woehlke.simpleworklist.application.language.Language;
1212
import org.woehlke.simpleworklist.user.account.UserAccount;

0 commit comments

Comments
 (0)