Skip to content

Commit 580f19f

Browse files
committedOct 3, 2024·
Migrate Zip sample from SI-Extensions
* Migrate `cafe-scripted` to GraalVM Polyglot * Fix emails for authors * Upgrade some deps
1 parent 8cbb631 commit 580f19f

File tree

75 files changed

+4354
-741
lines changed

Some content is hidden

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

75 files changed

+4354
-741
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ This is a good place to get started. The samples here are technically motivated
7575
* **ws-outbound-gateway** - Shows outbound web services support using the **Web Service Outbound Gateway**, **Content Enricher**, Composed Message Processor (**Chain**)
7676
* **xml** - Example demonstrates various aspects of the **Xml** support using an **XPath Splitter**, **XPath Router**, **XSLT Transformer** as well as **XPath Expression** support
7777
* **xmpp** - Show the support for [**XMPP**](https://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol) (formerly known as Jabber) using e.g. GoogleTalk
78+
* **zip** - Show the support for zip files manipulations
7879

7980
## Intermediate
8081

‎advanced/advanced-testing-examples/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.springframework.integration.samples</groupId>
55
<artifactId>advanced-testing-examples</artifactId>
6-
<version>6.2.0</version>
6+
<version>6.4.0</version>
77
<url>https://github.com/spring-projects/spring-integration-samples</url>
88
<organization>
99
<name>Spring IO</name>
@@ -20,23 +20,23 @@
2020
<developer>
2121
<id>artembilan</id>
2222
<name>Artem Bilan</name>
23-
<email>abilan@vmware.com</email>
23+
<email>artem.bilan@broadcom.com</email>
2424
<roles>
2525
<role>project lead</role>
2626
</roles>
2727
</developer>
2828
<developer>
2929
<id>garyrussell</id>
3030
<name>Gary Russell</name>
31-
<email>grussell@vmware.com</email>
31+
<email>github@gprussell.net</email>
3232
<roles>
3333
<role>project lead emeritus</role>
3434
</roles>
3535
</developer>
3636
<developer>
3737
<id>markfisher</id>
3838
<name>Mark Fisher</name>
39-
<email>markfisher@vmware.com</email>
39+
<email>mark.ryan.fisher@gmail.com</email>
4040
<roles>
4141
<role>project founder and lead emeritus</role>
4242
</roles>
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>org.apache.logging.log4j</groupId>
7373
<artifactId>log4j-core</artifactId>
74-
<version>2.21.1</version>
74+
<version>2.23.1</version>
7575
<scope>compile</scope>
7676
</dependency>
7777
<dependency>
@@ -89,7 +89,7 @@
8989
<dependency>
9090
<groupId>org.mockito</groupId>
9191
<artifactId>mockito-core</artifactId>
92-
<version>5.7.0</version>
92+
<version>5.12.0</version>
9393
<scope>test</scope>
9494
</dependency>
9595
<dependency>
@@ -123,28 +123,28 @@
123123
<dependency>
124124
<groupId>org.junit</groupId>
125125
<artifactId>junit-bom</artifactId>
126-
<version>5.10.1</version>
126+
<version>5.11.1</version>
127127
<scope>import</scope>
128128
<type>pom</type>
129129
</dependency>
130130
<dependency>
131131
<groupId>com.fasterxml.jackson</groupId>
132132
<artifactId>jackson-bom</artifactId>
133-
<version>2.15.3</version>
133+
<version>2.18.0</version>
134134
<scope>import</scope>
135135
<type>pom</type>
136136
</dependency>
137137
<dependency>
138138
<groupId>org.springframework</groupId>
139139
<artifactId>spring-framework-bom</artifactId>
140-
<version>6.1.0</version>
140+
<version>6.2.0-SNAPSHOT</version>
141141
<scope>import</scope>
142142
<type>pom</type>
143143
</dependency>
144144
<dependency>
145145
<groupId>org.springframework.integration</groupId>
146146
<artifactId>spring-integration-bom</artifactId>
147-
<version>6.2.0</version>
147+
<version>6.4.0-SNAPSHOT</version>
148148
<scope>import</scope>
149149
<type>pom</type>
150150
</dependency>

0 commit comments

Comments
 (0)
Please sign in to comment.