-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
60 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
11 | ||
17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
<groupId>io.holunda.testing</groupId> | ||
<artifactId>camunda-bpm-jgiven-parent</artifactId> | ||
<version>0.4.1</version> | ||
<version>1.19.0</version> | ||
<packaging>pom</packaging> | ||
|
||
|
||
|
@@ -15,14 +15,13 @@ | |
|
||
|
||
<properties> | ||
<camunda.version>7.18.0</camunda.version> | ||
<jgiven.version>1.2.5</jgiven.version> | ||
<junit.version>4.13.2</junit.version> | ||
<camunda.version>7.19.0</camunda.version> | ||
<jgiven.version>1.3.0</jgiven.version> | ||
<assertj.version>3.24.2</assertj.version> | ||
<jgiven-kotlin.version>1.2.5.0</jgiven-kotlin.version> | ||
<jgiven-kotlin.version>1.3.0.0</jgiven-kotlin.version> | ||
|
||
<java.version>11</java.version> | ||
<kotlin.version>1.8.10</kotlin.version> | ||
<java.version>17</java.version> | ||
<kotlin.version>1.9.10</kotlin.version> | ||
<kotlin.compiler.incremental>true</kotlin.compiler.incremental> | ||
<kotlin.compiler.jvmTarget>${java.version}</kotlin.compiler.jvmTarget> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
|
@@ -56,11 +55,6 @@ | |
<artifactId>jgiven-junit5</artifactId> | ||
<version>${jgiven.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${junit.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-core</artifactId> | ||
|
@@ -107,13 +101,16 @@ | |
<build> | ||
<defaultGoal>clean package</defaultGoal> | ||
|
||
<sourceDirectory>src/main/kotlin</sourceDirectory> | ||
<testSourceDirectory>src/test/kotlin</testSourceDirectory> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<!-- Enforce correct Java and Maven --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
<version>3.2.1</version> | ||
<version>3.4.1</version> | ||
<executions> | ||
<execution> | ||
<id>enforce-maven</id> | ||
|
@@ -123,7 +120,7 @@ | |
<configuration> | ||
<rules> | ||
<requireMavenVersion> | ||
<version>3.6.0</version> | ||
<version>3.9.0</version> | ||
</requireMavenVersion> | ||
<requireJavaVersion> | ||
<version>${java.version}</version> | ||
|
@@ -138,7 +135,7 @@ | |
<!-- cleaning --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>3.3.1</version> | ||
</plugin> | ||
|
||
<plugin> | ||
|
@@ -152,12 +149,10 @@ | |
<target>${java.version}</target> | ||
</configuration> | ||
<executions> | ||
<!-- Replacing default-compile as it is treated specially by maven --> | ||
<execution> | ||
<id>default-compile</id> | ||
<phase>none</phase> | ||
</execution> | ||
<!-- Replacing default-testCompile as it is treated specially by maven --> | ||
<execution> | ||
<id>default-testCompile</id> | ||
<phase>none</phase> | ||
|
@@ -182,20 +177,20 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<version>3.1.2</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-failsafe-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<version>3.1.2</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<!-- resources --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<version>3.3.1</version> | ||
<configuration> | ||
<encoding>UTF-8</encoding> | ||
</configuration> | ||
|
@@ -205,7 +200,7 @@ | |
<!-- git flow --> | ||
<groupId>com.amashchenko.maven.plugin</groupId> | ||
<artifactId>gitflow-maven-plugin</artifactId> | ||
<version>1.19.0</version> | ||
<version>1.20.0</version> | ||
<configuration> | ||
<gitFlowConfig> | ||
<productionBranch>master</productionBranch> | ||
|
@@ -229,8 +224,8 @@ | |
<version>${kotlin.version}</version> | ||
<configuration> | ||
<jvmTarget>${java.version}</jvmTarget> | ||
<languageVersion>1.5</languageVersion> | ||
<apiVersion>1.5</apiVersion> | ||
<languageVersion>1.9</languageVersion> | ||
<apiVersion>1.9</apiVersion> | ||
<compilerPlugins> | ||
<plugin>spring</plugin> | ||
<plugin>jpa</plugin> | ||
|
@@ -301,7 +296,7 @@ | |
<!-- javadoc for kotlin --> | ||
<groupId>org.jetbrains.dokka</groupId> | ||
<artifactId>dokka-maven-plugin</artifactId> | ||
<version>1.8.10</version> | ||
<version>1.9.0</version> | ||
<executions> | ||
<execution> | ||
<phase>test</phase> | ||
|
@@ -317,7 +312,7 @@ | |
<!-- source from kotlin --> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<version>3.4.0</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-sources</phase> | ||
|
@@ -337,7 +332,7 @@ | |
<!-- attach sources --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.2.1</version> | ||
<version>3.3.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
|
@@ -357,7 +352,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--batch</arg> | ||
|
@@ -380,7 +375,7 @@ | |
<!-- Deploy --> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<version>3.1.1</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
|
@@ -408,7 +403,7 @@ | |
<!-- Install --> | ||
<plugin> | ||
<artifactId>maven-install-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<version>3.1.1</version> | ||
</plugin> | ||
|
||
</plugins> | ||
|
@@ -521,6 +516,13 @@ | |
<organization>Holisticon AG</organization> | ||
<organizationUrl>https://www.holisticon.de</organizationUrl> | ||
</developer> | ||
<developer> | ||
<id>jangalinski</id> | ||
<name>Jan Galinski</name> | ||
<email>[email protected]</email> | ||
<organization>Holisticon AG</organization> | ||
<organizationUrl>https://www.holisticon.de</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
|
||
|