Skip to content

Commit 25ca3d1

Browse files
Add HowToBrowseAQueue snippet. (#31)
Update solace-messaging-client dependency to 1.2.0 Update Copyright year to 2023 everywhere.
1 parent 165e9be commit 25ca3d1

File tree

43 files changed

+136
-43
lines changed

Some content is hidden

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

43 files changed

+136
-43
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ repositories {
5252

5353
dependencies {
5454
// Solace Messaging API for Java Dependencies
55-
implementation group: 'com.solace', name: 'solace-messaging-client', version: '1.1.0'
55+
implementation group: 'com.solace', name: 'solace-messaging-client', version: '1.2.0'
5656

5757
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.2'
5858
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.2'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<dependency>
1111
<groupId>com.solace</groupId>
1212
<artifactId>solace-messaging-client</artifactId>
13-
<version>1.1.0</version>
13+
<version>1.2.0</version>
1414
</dependency>
1515
<dependency>
1616
<groupId>org.apache.logging.log4j</groupId>

src/main/java/com/solace/samples/java/HelloWorld.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of

src/main/java/com/solace/samples/java/patterns/DirectProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of

src/main/java/com/solace/samples/java/patterns/DirectPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of

src/main/java/com/solace/samples/java/patterns/DirectSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of

src/main/java/com/solace/samples/java/patterns/GuaranteedBlockingPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of

src/main/java/com/solace/samples/java/patterns/GuaranteedNonBlockingPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of

src/main/java/com/solace/samples/java/patterns/GuaranteedProcessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -233,4 +233,4 @@ public void onPublishReceipt(PublishReceipt publishReceipt) {
233233
}
234234
}
235235

236-
}
236+
}

src/main/java/com/solace/samples/java/patterns/GuaranteedSubscriber.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2022 Solace Corporation. All rights reserved.
2+
* Copyright 2021-2023 Solace Corporation. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -139,4 +139,4 @@ public static void main(String... args) throws InterruptedException, IOException
139139
System.out.println("Main thread quitting.");
140140
}
141141

142-
}
142+
}

0 commit comments

Comments
 (0)