Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release/1.0.0.0'
Browse files Browse the repository at this point in the history
* origin/release/1.0.0.0:
  release 1.0.0.0
  update dependencies
  update dependencies
  add link to wiki
  reset version to SNAPSHOT
  • Loading branch information
wetret committed Dec 14, 2023
2 parents 6f6a08a + e0efb78 commit 6fa8b34
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -2,6 +2,10 @@

In this repository you will find the process to transfer data-sets of an approved data usage project from a DIC to a DMS.

## Documentation

The documentation of the process including the description, the deployment and configuration guides as well as instructions on how to start a process instance can be found in the [wiki](https://github.com/medizininformatik-initiative/mii-process-data-transfer/wiki).

## Development
Branching follows the git-flow model, for the latest development version see branch [develop](https://github.com/medizininformatik-initiative/mii-process-data-transfer/tree/develop).

Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Expand Up @@ -6,14 +6,14 @@

<groupId>de.medizininformatik-initiative</groupId>
<artifactId>mii-process-data-transfer</artifactId>
<version>1.0.0.0-RC2</version>
<version>1.0.0.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compileSource>17</compileSource>
<compileTarget>17</compileTarget>

<dsf.version>1.2.0</dsf.version>
<dsf.version>1.3.1</dsf.version>
<testSetup.location>../mii-processes-test-setup</testSetup.location>
</properties>

Expand Down Expand Up @@ -45,13 +45,13 @@
<dependency>
<groupId>de.medizininformatik-initiative</groupId>
<artifactId>mii-processes-common</artifactId>
<version>1.0.0.0-RC2</version>
<version>1.0.0.0</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
<version>2.0.9</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -91,7 +91,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -113,7 +113,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -141,12 +141,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.1</version>
<version>3.3.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down
Expand Up @@ -13,7 +13,7 @@
public class DataTransferProcessPluginDefinition implements ProcessPluginDefinition
{
public static final String VERSION = "1.0.0.0";
public static final LocalDate RELEASE_DATE = LocalDate.of(2022, 9, 13);
public static final LocalDate RELEASE_DATE = LocalDate.of(2023, 12, 14);

@Override
public String getName()
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/bpe/send.bpmn
Expand Up @@ -31,7 +31,7 @@
<bpmn:incoming>Flow_1txtbeg</bpmn:incoming>
<bpmn:outgoing>Flow_1c71l1d</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0f9vpum">
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">PT45M</bpmn:timeDuration>
<bpmn:timeDuration xsi:type="bpmn:tFormalExpression">PT5M</bpmn:timeDuration>
</bpmn:timerEventDefinition>
</bpmn:intermediateCatchEvent>
<bpmn:endEvent id="DataSendEndEvent" name="end data send process">
Expand Down

0 comments on commit 6fa8b34

Please sign in to comment.