Skip to content

Commit 45c33cb

Browse files
committed
fix gradle build jar options
1 parent 895fe51 commit 45c33cb

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ Graylog SDK Spring Boot Starter is available at the Central Maven Repository.
1313
<dependency>
1414
<groupId>com.joonsang.graylog</groupId>
1515
<artifactId>graylog-sdk-spring-boot-starter</artifactId>
16-
<version>2.0.1</version>
16+
<version>2.0.4</version>
1717
</dependency>
1818
```
1919

2020
**Gradle**
2121
```
22-
implementation group: 'com.joonsang.graylog', name: 'graylog-sdk-spring-boot-starter', version: '2.0.1'
22+
implementation group: 'com.joonsang.graylog', name: 'graylog-sdk-spring-boot-starter', version: '2.0.4'
2323
```
2424

2525
## Troubleshooting

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010

1111
subprojects {
1212
group = 'com.joonsang.graylog'
13-
version = '2.0.2'
13+
version = '2.0.4'
1414
sourceCompatibility = '11'
1515

1616
repositories {
@@ -27,4 +27,6 @@ bootJar {
2727

2828
jar {
2929
enabled = true
30+
archiveClassifier.set('')
31+
exclude('application.properties', 'sample.application.properties')
3032
}

graylog-sdk-spring-boot-starter/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,6 @@ bootJar {
109109

110110
jar {
111111
enabled = true
112+
archiveClassifier.set('')
112113
exclude('application.properties', 'sample.application.properties')
113114
}

graylog-sdk-spring-boot-starter/src/main/java/com/joonsang/graylog/sdk/spring/starter/search/Search.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ private Filter convertToFilter(List<String> streamIds) {
503503
* @param body JSON body
504504
* @param queryId Query ID
505505
* @throws GraylogServerException Search result not successful
506-
* @since 2.0.2
506+
* @since 2.0.4
507507
*/
508508
private void validateSearchResult(String body, String queryId) throws GraylogServerException {
509509
Boolean completedExceptionally = JsonPath.parse(body).read("$.execution.completed_exceptionally");

0 commit comments

Comments
 (0)