Skip to content

Commit ff10b17

Browse files
committed
work in progress
1 parent 29ab230 commit ff10b17

File tree

3 files changed

+15
-17
lines changed

3 files changed

+15
-17
lines changed

pom.xml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -128,20 +128,22 @@
128128
<artifactId>spring-boot-properties-migrator</artifactId>
129129
<scope>runtime</scope>
130130
</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>
139131
<!--
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+
-->
145147
<dependency>
146148
<groupId>org.springframework.boot</groupId>
147149
<artifactId>spring-boot-starter-web</artifactId>

src/main/java/org/woehlke/simpleworklist/config/ApplicationProperties.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,11 @@
33
import lombok.Getter;
44
import lombok.Setter;
55
import org.springframework.boot.context.properties.ConfigurationProperties;
6-
import org.springframework.stereotype.Component;
76
import org.springframework.validation.annotation.Validated;
87

98
import javax.validation.Valid;
10-
import javax.validation.constraints.NotEmpty;
119
import javax.validation.constraints.NotNull;
1210

13-
@Component
1411
@Validated
1512
@Getter
1613
@Setter

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import org.woehlke.simpleworklist.common.AuditModel;
2121
import org.woehlke.simpleworklist.common.ComparableById;
2222

23-
2423
@Entity
2524
@Table(
2625
name="task",

0 commit comments

Comments
 (0)