Skip to content

Commit f57915b

Browse files
Merge pull request #348 from Spring-Framework-Java-Apps/master
update
2 parents 555b147 + 27e6c55 commit f57915b

File tree

221 files changed

+354
-293329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+354
-293329
lines changed

.idea/jarRepositories.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: java $JAVA_OPTS -Dspring.profiles.active=default -jar target/simpleworklist.jar
1+
web: java $JAVA_OPTS -Dserver.port=9010 -Dspring.profiles.active=default -jar target/simpleworklist.jar
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pom.xml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.woehlke</groupId>
66
<artifactId>simpleworklist</artifactId>
7-
<version>2.3.56-SNAPSHOT</version>
7+
<version>2.3.58-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<parent>
@@ -683,10 +683,16 @@
683683
<optional>true</optional>
684684
</dependency>
685685
<!-- spring-boot-starter -->
686+
<dependency>
687+
<groupId>org.springframework.boot</groupId>
688+
<artifactId>spring-boot-starter-actuator</artifactId>
689+
</dependency>
690+
<!--
686691
<dependency>
687692
<groupId>org.springframework.boot</groupId>
688693
<artifactId>spring-boot-starter-jta-atomikos</artifactId>
689694
</dependency>
695+
-->
690696
<dependency>
691697
<groupId>org.springframework.boot</groupId>
692698
<artifactId>spring-boot-starter-data-jdbc</artifactId>
@@ -706,6 +712,12 @@
706712
<dependency>
707713
<groupId>org.springframework.boot</groupId>
708714
<artifactId>spring-boot-starter-thymeleaf</artifactId>
715+
<exclusions>
716+
<exclusion>
717+
<groupId>nz.net.ultraq.thymeleaf</groupId>
718+
<artifactId>thymeleaf-layout-dialect</artifactId>
719+
</exclusion>
720+
</exclusions>
709721
</dependency>
710722
<dependency>
711723
<groupId>org.springframework.boot</groupId>
@@ -850,7 +862,10 @@
850862
<dependency>
851863
<groupId>org.postgresql</groupId>
852864
<artifactId>postgresql</artifactId>
853-
<scope>provided</scope>
865+
</dependency>
866+
<dependency>
867+
<groupId>com.zaxxer</groupId>
868+
<artifactId>HikariCP</artifactId>
854869
</dependency>
855870

856871
<dependency>
@@ -1341,7 +1356,7 @@
13411356
<files>
13421357
<file>${project.basedir}/README.md</file>
13431358
<file>${project.basedir}/LICENSE</file>
1344-
<file>${project.basedir}/src/main/docker/docker-compose.yml</file>
1359+
<file>${project.basedir}/etc/docker/docker-compose.yml</file>
13451360
<file>${project.basedir}/app.json</file>
13461361
<file>${project.basedir}/_config.yml</file>
13471362
<file>${project.basedir}/Procfile</file>
@@ -1357,11 +1372,11 @@
13571372
<file>${project.basedir}/src/site/site.xml</file>
13581373
<file>${project.basedir}/build.sh</file>
13591374
<file>${project.basedir}/etc/run.sh</file>
1360-
<file>${project.basedir}/src/main/bash/psql.sh</file>
1375+
<file>${project.basedir}/etc/bash/psql.sh</file>
13611376
<file>${project.basedir}/etc/docker-start.sh</file>
13621377
<file>${project.basedir}/etc/docker-stop.sh</file>
1363-
<file>${project.basedir}/src/main/sql/db-createdb-and-user-linux.sql</file>
1364-
<file>${project.basedir}/src/main/sql/db-createdb-and-user-win10.sql</file>
1378+
<file>${project.basedir}/etc/sql/db-createdb-and-user-linux.sql</file>
1379+
<file>${project.basedir}/etc/sql/db-createdb-and-user-win10.sql</file>
13651380
</files>
13661381
</requireFilesExist>
13671382
</rules>

0 commit comments

Comments
 (0)