Skip to content

deploy latest version #341

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 47 commits into from
Aug 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
2442b82
work
thomaswoehlke Jul 30, 2022
67f0547
work
thomaswoehlke Jul 31, 2022
402df68
[maven-release-plugin] prepare release v2.3.49
thomaswoehlke Jul 31, 2022
cae8334
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Jul 31, 2022
3093e41
work
thomaswoehlke Aug 16, 2022
94810c2
work
thomaswoehlke Aug 16, 2022
1605a8a
work
thomaswoehlke Aug 18, 2022
a9ad6f4
work
thomaswoehlke Aug 18, 2022
cf1fdf1
work
thomaswoehlke Aug 18, 2022
9e27ea3
work
thomaswoehlke Aug 19, 2022
8c1afbc
work
thomaswoehlke Aug 19, 2022
38fffc4
work
thomaswoehlke Aug 19, 2022
894e007
work
thomaswoehlke Aug 19, 2022
c863a37
work
thomaswoehlke Aug 19, 2022
d3e6000
work
thomaswoehlke Aug 19, 2022
b72219d
work
thomaswoehlke Aug 19, 2022
c72a88b
work
thomaswoehlke Aug 19, 2022
cd66aa3
work
thomaswoehlke Aug 19, 2022
b36cf79
work
thomaswoehlke Aug 19, 2022
33811b5
work
thomaswoehlke Aug 19, 2022
c0a6f0d
work
thomaswoehlke Aug 20, 2022
9113764
[maven-release-plugin] prepare release v2.3.50
thomaswoehlke Aug 20, 2022
219073f
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Aug 20, 2022
043b6c2
work
thomaswoehlke Aug 20, 2022
44201f7
[maven-release-plugin] prepare release v2.3.51
thomaswoehlke Aug 20, 2022
f2c1bfb
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Aug 20, 2022
1d5fc84
work
thomaswoehlke Aug 20, 2022
6e60cd2
work
thomaswoehlke Aug 20, 2022
aa953eb
work
thomaswoehlke Aug 20, 2022
26f2183
work
thomaswoehlke Aug 20, 2022
3525c79
work
thomaswoehlke Aug 20, 2022
e7d84d4
work
thomaswoehlke Aug 20, 2022
b90c84f
work
thomaswoehlke Aug 20, 2022
d77cdb0
work
thomaswoehlke Aug 20, 2022
209f1c8
[maven-release-plugin] prepare release v2.3.52
thomaswoehlke Aug 20, 2022
f3ac8a7
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Aug 20, 2022
c5656bb
work
thomaswoehlke Aug 21, 2022
221d8ab
work
thomaswoehlke Aug 21, 2022
f8724b9
work
thomaswoehlke Aug 21, 2022
425cf25
work
thomaswoehlke Aug 21, 2022
7ec84a6
work
thomaswoehlke Aug 21, 2022
269bc69
work
thomaswoehlke Aug 21, 2022
d028773
work
thomaswoehlke Aug 21, 2022
45c5b04
work
thomaswoehlke Aug 21, 2022
a00829b
work
thomaswoehlke Aug 21, 2022
30b10db
[maven-release-plugin] prepare release v2.3.53
thomaswoehlke Aug 21, 2022
c878594
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Aug 21, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .idea/dataSources.local.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Xmx2048m
1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Dorg.slf4j.simpleLogger.showThreadName=true -Djava.awt.headless=true -DdownloadSources=true -e
8 changes: 6 additions & 2 deletions etc/build.sh → build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ function composeDown() {
./mvnw docker-compose:down
}

function showSettings() {
echo $JAVA_HOME
}

function firstSetup() {
export JAVA_OPTS=$JAVA_OPTS_RUN_DEFAULT
showSettings
Expand Down Expand Up @@ -56,9 +60,9 @@ function boot_run() {

function main() {
# firstSetup
#setupTravis
setupTravis
#buildJar
boot_run
#boot_run
}

main
172 changes: 130 additions & 42 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

<groupId>org.woehlke</groupId>
<artifactId>simpleworklist</artifactId>
<version>2.3.49-SNAPSHOT</version>
<version>2.3.54-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.2</version>
<version>2.7.3</version>
</parent>

<scm>
Expand Down Expand Up @@ -73,23 +73,19 @@
<properties>
<java.version>11</java.version>
<version.maven>3.6.3</version.maven>
<pmdVersion>6.46.0</pmdVersion>

<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>

<spring-boot.repackage.layout>JAR</spring-boot.repackage.layout>
<version.spring-boot-maven-plugin>${project.parent.version}</version.spring-boot-maven-plugin>
<version.thymeleaf-testing>3.1.0.M2</version.thymeleaf-testing>
<version.thymeleaf-spring-data-dialect>3.5.0</version.thymeleaf-spring-data-dialect>

<spring-boot-maven-plugin.version>${project.parent.version}</spring-boot-maven-plugin.version>

<thymeleaf-testing.version>3.1.0.M2</thymeleaf-testing.version>
<thymeleaf-spring-data-dialect.version>3.5.0</thymeleaf-spring-data-dialect.version>

<!-- Webjars -->
<webjars.jquery.version>3.6.0</webjars.jquery.version>
<webjars.popper.js.version>2.9.3</webjars.popper.js.version>
<webjars.bootstrap.version>5.1.3</webjars.bootstrap.version>
<webjars.font-awesome.version>6.1.1</webjars.font-awesome.version>
<webjars.bootstrap.version>5.2.0</webjars.bootstrap.version>
<webjars.font-awesome.version>6.1.2</webjars.font-awesome.version>
<webjars.ckeditor.version>31.0.0</webjars.ckeditor.version>
<opencsv.version>5.3</opencsv.version>

Expand All @@ -100,6 +96,7 @@
<groovy-all.version>2.4.21</groovy-all.version>
<hamcrest.version>2.2</hamcrest.version>
<jsoup.version>1.14.2</jsoup.version>
<pmdVersion>6.46.0</pmdVersion>

<!-- SCM and Releasing -->
<version.org.apache.maven.scm>1.13.0</version.org.apache.maven.scm>
Expand All @@ -112,19 +109,24 @@
<docker-compose-maven-plugin.ignorePullFailures>true</docker-compose-maven-plugin.ignorePullFailures>
<docker-compose-maven-plugin.detachedMode>true</docker-compose-maven-plugin.detachedMode>

<!-- Maven Plugins -->


<maven-release-plugin.version>3.0.0-M6</maven-release-plugin.version>

<!-- Maven Reports for Site -->
<maven-site-plugin.version>3.12.0</maven-site-plugin.version>
<maven-project-info-reports-plugin.version>3.3.0</maven-project-info-reports-plugin.version>
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
<maven-jxr-plugin.version>3.2.0</maven-jxr-plugin.version>
<version.maven-site-plugin>3.12.0</version.maven-site-plugin>
<version.maven-project-info-reports-plugin>3.3.0</version.maven-project-info-reports-plugin>
<version.maven-checkstyle-plugin>3.1.2</version.maven-checkstyle-plugin>
<version.maven-jxr-plugin>3.2.0</version.maven-jxr-plugin>
<maven-pmd-plugin.version>3.17.0</maven-pmd-plugin.version>
<spotbugs-maven-plugin.version>4.7.0.0</spotbugs-maven-plugin.version>
<maven-surefire-report-plugin.version>3.0.0-M7</maven-surefire-report-plugin.version>
<asciidoctor-maven-plugin.version>2.2.2</asciidoctor-maven-plugin.version>
<doxia-module-markdown.version>1.11.1</doxia-module-markdown.version>
<maven-enforcer-plugin.version>3.1.0</maven-enforcer-plugin.version>
<version.spotbugs-maven-plugin>4.7.0.0</version.spotbugs-maven-plugin>
<version.maven-surefire-report-plugin>3.0.0-M7</version.maven-surefire-report-plugin>
<version.asciidoctor-maven-plugin>2.2.2</version.asciidoctor-maven-plugin>
<version.doxia-module-markdown>1.11.1</version.doxia-module-markdown>
<version.maven-enforcer-plugin>3.1.0</version.maven-enforcer-plugin>
<version.plantuml-maven-plugin>1.5.2</version.plantuml-maven-plugin>
<version.net.sourceforge.plantuml>1.2022.6</version.net.sourceforge.plantuml>
</properties>

<repositories>
Expand Down Expand Up @@ -362,13 +364,13 @@
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-testing</artifactId>
<version>${thymeleaf-testing.version}</version>
<version>${version.thymeleaf-testing}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.jpenren</groupId>
<artifactId>thymeleaf-spring-data-dialect</artifactId>
<version>${thymeleaf-spring-data-dialect.version}</version>
<version>${version.thymeleaf-spring-data-dialect}</version>
</dependency>

<!-- compile -->
Expand Down Expand Up @@ -451,7 +453,7 @@
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
<version>${version.maven-enforcer-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -511,35 +513,35 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot-maven-plugin.version}</version>
<version>${version.spring-boot-maven-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site-plugin.version}</version>
<version>${version.maven-site-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven-project-info-reports-plugin.version}</version>
<version>${version.maven-project-info-reports-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven-jxr-plugin.version}</version>
<version>${version.maven-jxr-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle-plugin.version}</version>
<version>${version.maven-checkstyle-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
<exclusions>
Expand All @@ -552,7 +554,7 @@
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs-maven-plugin.version}</version>
<version>${version.spotbugs-maven-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
Expand All @@ -579,14 +581,14 @@
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven-surefire-report-plugin.version}</version>
<version>${version.maven-surefire-report-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor-maven-plugin.version}</version>
<version>${version.asciidoctor-maven-plugin}</version>
<type>maven-plugin</type>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -635,7 +637,7 @@
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>${doxia-module-markdown.version}</version>
<version>${version.doxia-module-markdown}</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -1115,7 +1117,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
<version>${version.maven-enforcer-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -1145,7 +1147,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot-maven-plugin.version}</version>
<version>${version.spring-boot-maven-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -1155,22 +1157,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${maven-project-info-reports-plugin.version}</version>
<version>${version.maven-project-info-reports-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven-jxr-plugin.version}</version>
<version>${version.maven-jxr-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle-plugin.version}</version>
<version>${version.maven-checkstyle-plugin}</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs-maven-plugin.version}</version>
<version>${version.spotbugs-maven-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -1180,7 +1182,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>${maven-surefire-report-plugin.version}</version>
<version>${version.maven-surefire-report-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -1190,7 +1192,7 @@
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>${asciidoctor-maven-plugin.version}</version>
<version>${version.asciidoctor-maven-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -1236,7 +1238,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site-plugin.version}</version>
<version>${version.maven-site-plugin}</version>
<!--
<dependencies>
<dependency>
Expand Down Expand Up @@ -1348,7 +1350,7 @@
<file>${project.basedir}/src/site/markdown/REQUIREMENTS_NONFUNCTIONAL.md</file>
<file>${project.basedir}/src/site/markdown/TODO.md</file>
<file>${project.basedir}/src/site/site.xml</file>
<file>${project.basedir}/etc/build.sh</file>
<file>${project.basedir}/build.sh</file>
<file>${project.basedir}/etc/run.sh</file>
<file>${project.basedir}/src/main/bash/psql.sh</file>
<file>${project.basedir}/etc/docker-start.sh</file>
Expand Down Expand Up @@ -1877,4 +1879,90 @@
</plugins>
</reporting>


<profiles>

<profile>
<id>war</id>
<properties>
<skip.unit.tests>false</skip.unit.tests>
<skip.integration.tests>true</skip.integration.tests>
</properties>
<build>
<finalName>petclinic</finalName>
<defaultGoal>clean install</defaultGoal>
</build>
</profile>

<profile>
<id>uml</id>
<properties>
<skip.unit.tests>true</skip.unit.tests>
<skip.integration.tests>true</skip.integration.tests>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.funthomas424242</groupId>
<artifactId>plantuml-maven-plugin</artifactId>
<version>${version.plantuml-maven-plugin}</version>
<type>maven-plugin</type>
<exclusions>
<exclusion>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sourceforge.plantuml</groupId>
<artifactId>plantuml</artifactId>
<version>${version.net.sourceforge.plantuml}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.funthomas424242</groupId>
<artifactId>plantuml-maven-plugin</artifactId>
<type>maven-plugin</type>
</dependency>
<dependency>
<groupId>net.sourceforge.plantuml</groupId>
<artifactId>plantuml</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean com.github.funthomas424242:plantuml-maven-plugin:generate</defaultGoal>
<plugins>
<plugin>
<groupId>com.github.funthomas424242</groupId>
<artifactId>plantuml-maven-plugin</artifactId>
<version>${version.plantuml-maven-plugin}</version>
<configuration>
<truncatePattern>src/main/*</truncatePattern>
<sourceFiles>
<directory>${basedir}</directory>
<includes>
<include>src/main/plantuml/**/*.puml</include>
</includes>
</sourceFiles>
</configuration>
<dependencies>
<dependency>
<groupId>net.sourceforge.plantuml</groupId>
<artifactId>plantuml</artifactId>
<version>${version.net.sourceforge.plantuml}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>

</profiles>

</project>
Loading