Skip to content

Commit

Permalink
bump mvn 0.18.1 (#570)
Browse files Browse the repository at this point in the history
* bump mvn 0.18.1

* bump mvn 0.18.1

* v0.21.12

* s3 integration fix missing streaming v2 config

* bump mvn 0.18.2

* cosys integration add wrongly removed spring application name

* chore: mvn auto version bump to 0.18.3-SNAPSHOT

* s3 integration add missing annotation for MessageProcessor

* chore: mvn auto version bump to 0.18.4-SNAPSHOT

* #601: fix process instance sorting (#606)

* chore: mvn auto version bump to 0.18.5-SNAPSHOT

* #609: add description to process instance overview

* v0.21.13

* Bugfix(#616): email integration for release (#626)

* refactor: remove auth from email-integration-example

* bugfix(#616): email attachments are invalid

* bugfix(#616): test email attachments

* bugfix(#616): fix example

* chore: mvn auto version bump to 0.18.6-SNAPSHOT

---------

Co-authored-by: DigiWF Github Bot <[email protected]>
Co-authored-by: StephanStrehlerCGI <[email protected]>
Co-authored-by: stephan.strehler <[email protected]>
Co-authored-by: Lukas Mösle <[email protected]>
  • Loading branch information
5 people authored Sep 8, 2023
1 parent 149877e commit 37855c4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
spring:
application:
name: @project.artifactId@

io:
muenchendigital:
digiwf:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
import lombok.RequiredArgsConstructor;
import lombok.val;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.messaging.Message;

import javax.validation.ConstraintViolationException;
import java.util.Map;
import java.util.function.Consumer;

@Configuration
@RequiredArgsConstructor
public class MessageProcessor {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ io:
unused-files: 0 15 10 16 * ?
expired-files: 0 15 10 15 * ?
proxyEnabled: 'false'
message:
incidentDestination: "dwf-connector-incident-${DIGIWF_ENV}"
bpmnErrorDestination: "dwf-connector-bpmnerror-${DIGIWF_ENV}"
correlateMessageDestination: "dwf-connector-${DIGIWF_ENV}"
typeMappings:
createPresignedUrl: "createPresignedUrl"

server:
port: "${S3_INTEGRATION_SERVER_PORT:8086}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package de.muenchen.oss.digiwf.s3.integration;

import de.muenchen.oss.digiwf.s3.integration.adapter.in.streaming.CreatePresignedUrlEvent;
import de.muenchen.oss.digiwf.s3.integration.application.port.in.CreatePresignedUrlsInPort;
import de.muenchen.oss.digiwf.spring.security.authentication.UserAuthenticationProvider;
import de.muenchen.oss.digiwf.spring.security.autoconfiguration.SpringSecurityAutoConfiguration;
Expand All @@ -10,8 +11,11 @@
import org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.messaging.Message;
import org.springframework.test.context.ActiveProfiles;

import java.util.function.Consumer;

import static org.assertj.core.api.Assertions.assertThat;

@SpringBootTest(
Expand All @@ -33,9 +37,12 @@ public class ServiceIntegrationTest {
@Autowired(required = false)
private CreatePresignedUrlsInPort port;

@Autowired(required = false)
private Consumer<Message<CreatePresignedUrlEvent>> createPresignedUrl;

@Test
void starts_service() {
assertThat(port).isNotNull();
assertThat(createPresignedUrl).isNotNull();
}

}

0 comments on commit 37855c4

Please sign in to comment.