Skip to content

Commit 0eb1455

Browse files
committed
work
1 parent e4126c8 commit 0eb1455

File tree

10 files changed

+11
-9
lines changed

10 files changed

+11
-9
lines changed

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,12 @@
679679
<version>${htmlunit.version}</version>
680680
<scope>test</scope>
681681
</dependency>
682+
<dependency>
683+
<groupId>org.codehaus.groovy</groupId>
684+
<artifactId>groovy-all</artifactId>
685+
<version>2.4.21</version>
686+
<scope>test</scope>
687+
</dependency>
682688
</dependencies>
683689
</dependencyManagement>
684690

@@ -1161,6 +1167,11 @@
11611167
<artifactId>doxia-module-markdown</artifactId>
11621168
<scope>provided</scope>
11631169
</dependency>
1170+
<dependency>
1171+
<groupId>org.codehaus.groovy</groupId>
1172+
<artifactId>groovy-all</artifactId>
1173+
<scope>test</scope>
1174+
</dependency>
11641175
</dependencies>
11651176

11661177
<build>

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
@NoArgsConstructor
3838
@EqualsAndHashCode(callSuper = true, exclude = "userAccount")
3939
@ToString(callSuper = true, exclude = "userAccount")
40-
@org.springframework.data.relational.core.mapping.Table("context")
4140
public class Context extends AuditModel implements Serializable, ComparableById<Context> {
4241

4342
private static final long serialVersionUID = -5035732370606951871L;

src/main/java/org/woehlke/simpleworklist/domain/project/Project.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
@Setter
3939
@EqualsAndHashCode(callSuper = true, exclude = {"children","parent"})
4040
@ToString(callSuper = true, exclude = {"children","parent","description"})
41-
@org.springframework.data.relational.core.mapping.Table("project")
4241
public class Project extends AuditModel implements Serializable, ComparableById<Project> {
4342

4443
private static final long serialVersionUID = 4566653175832872422L;

src/main/java/org/woehlke/simpleworklist/domain/search/SearchRequest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
@ToString(callSuper = true)
3232
@NoArgsConstructor
3333
@AllArgsConstructor
34-
@org.springframework.data.relational.core.mapping.Table("search_request")
3534
public class SearchRequest extends AuditModel implements Serializable, ComparableById<SearchRequest> {
3635

3736
private static final long serialVersionUID = 7860692526488291439L;

src/main/java/org/woehlke/simpleworklist/domain/task/Task.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@
9090
@Setter
9191
@EqualsAndHashCode(callSuper = true)
9292
@ToString(callSuper = true, exclude="text")
93-
@org.springframework.data.relational.core.mapping.Table("task")
9493
public class Task extends AuditModel implements Serializable, ComparableById<Task> {
9594

9695
private static final long serialVersionUID = 5247710652586269801L;

src/main/java/org/woehlke/simpleworklist/user/domain/account/UserAccount.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
@Setter
3737
@EqualsAndHashCode(callSuper = true)
3838
@ToString(callSuper = true, exclude = {"userPassword","defaultLanguage","defaultContext","lastLoginTimestamp"})
39-
@org.springframework.data.relational.core.mapping.Table("user_account")
4039
public class UserAccount extends AuditModel implements Serializable, ComparableById<UserAccount> {
4140

4241
private static final long serialVersionUID = 7860692526488291439L;

src/main/java/org/woehlke/simpleworklist/user/domain/chat/User2UserMessage.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
@ToString(callSuper=true)
3535
@NoArgsConstructor
3636
@AllArgsConstructor
37-
@org.springframework.data.relational.core.mapping.Table("user_message")
3837
public class User2UserMessage extends AuditModel implements Serializable {
3938

4039
private static final long serialVersionUID = 4263078228257938175L;

src/main/java/org/woehlke/simpleworklist/user/domain/register/UserRegistration.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
@Index(name = "ix_user_registration_row_created_at", columnList = "row_created_at")
2929
}
3030
)
31-
@org.springframework.data.relational.core.mapping.Table("user_registration")
3231
public class UserRegistration extends AuditModel implements Serializable {
3332

3433
private static final long serialVersionUID = -1955967514018161878L;

src/main/java/org/woehlke/simpleworklist/user/domain/resetpassword/UserPasswordRecovery.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
@Index(name = "ix_user_password_recovery_row_created_at", columnList = "row_created_at")
2828
}
2929
)
30-
@org.springframework.data.relational.core.mapping.Table("user_password_recovery")
3130
public class UserPasswordRecovery extends AuditModel implements Serializable {
3231

3332
private static final long serialVersionUID = 6860716425733119940L;

src/main/java/org/woehlke/simpleworklist/user/domain/userpassword/UserAccountPassword.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
)
2727
@Getter
2828
@Setter
29-
@org.springframework.data.relational.core.mapping.Table("user_account_password")
3029
public class UserAccountPassword extends AuditModel implements Serializable, ComparableById<UserAccountPassword> {
3130

3231
private static final long serialVersionUID = 7860692526488291439L;

0 commit comments

Comments
 (0)