File tree Expand file tree Collapse file tree 3 files changed +15
-17
lines changed
src/main/java/org/woehlke/simpleworklist Expand file tree Collapse file tree 3 files changed +15
-17
lines changed Original file line number Diff line number Diff line change 128
128
<artifactId >spring-boot-properties-migrator</artifactId >
129
129
<scope >runtime</scope >
130
130
</dependency >
131
- <dependency >
132
- <groupId >org.springframework.boot</groupId >
133
- <artifactId >spring-boot-starter-data-jdbc</artifactId >
134
- </dependency >
135
- <dependency >
136
- <groupId >org.springframework.boot</groupId >
137
- <artifactId >spring-boot-starter-data-jpa</artifactId >
138
- </dependency >
139
131
<!--
140
- <dependency>
141
- <groupId>org.springframework.boot</groupId>
142
- <artifactId>spring-boot-starter-data-solr</artifactId>
143
- </dependency>
144
- -->
132
+ <dependency>
133
+ <groupId>org.springframework.boot</groupId>
134
+ <artifactId>spring-boot-starter-data-jdbc</artifactId>
135
+ </dependency>
136
+ -->
137
+ <dependency >
138
+ <groupId >org.springframework.boot</groupId >
139
+ <artifactId >spring-boot-starter-data-jpa</artifactId >
140
+ </dependency >
141
+ <!--
142
+ <dependency>
143
+ <groupId>org.springframework.boot</groupId>
144
+ <artifactId>spring-boot-starter-data-solr</artifactId>
145
+ </dependency>
146
+ -->
145
147
<dependency >
146
148
<groupId >org.springframework.boot</groupId >
147
149
<artifactId >spring-boot-starter-web</artifactId >
Original file line number Diff line number Diff line change 3
3
import lombok .Getter ;
4
4
import lombok .Setter ;
5
5
import org .springframework .boot .context .properties .ConfigurationProperties ;
6
- import org .springframework .stereotype .Component ;
7
6
import org .springframework .validation .annotation .Validated ;
8
7
9
8
import javax .validation .Valid ;
10
- import javax .validation .constraints .NotEmpty ;
11
9
import javax .validation .constraints .NotNull ;
12
10
13
- @ Component
14
11
@ Validated
15
12
@ Getter
16
13
@ Setter
Original file line number Diff line number Diff line change 20
20
import org .woehlke .simpleworklist .common .AuditModel ;
21
21
import org .woehlke .simpleworklist .common .ComparableById ;
22
22
23
-
24
23
@ Entity
25
24
@ Table (
26
25
name ="task" ,
You can’t perform that action at this time.
0 commit comments