Skip to content

Commit 636b3c1

Browse files
authored
Merge pull request #165 from splunk/release/1.7.1
Release/1.7.1
2 parents 87368b5 + 83dd02e commit 636b3c1

File tree

8 files changed

+29
-24
lines changed

8 files changed

+29
-24
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Splunk Enterprise SDK for Java Changelog
22

3+
## Version 1.7.1
4+
5+
### Minor Changes
6+
* Dependency breaking changes are resolved.
7+
38
## Version 1.7.0
49

510
### New Features and APIs

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![Build Status](https://github.com/splunk/splunk-sdk-java/actions/workflows/release.yml/badge.svg?branch=master)
22
# The Splunk Software Development Kit for Java
33

4-
#### Version 1.7.0
4+
#### Version 1.7.1
55

66
The Splunk Software Development Kit (SDK) for Java contains library code and
77
examples designed to enable developers to build applications using Splunk.
@@ -75,7 +75,7 @@ To add the Splunk SDK for Java `.JAR` file as a dependency:
7575
<dependency>
7676
<groupId>com.splunk</groupId>
7777
<artifactId>splunk</artifactId>
78-
<version>1.7.0</version>
78+
<version>1.7.1</version>
7979
</dependency>
8080
</dependencies>
8181
```

deploy

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare -r scriptDirectory="$(dirname $(readlink -e $0))"
44
declare -r scriptName="$(basename $0)"
5-
declare -r version="1.7.0"
5+
declare -r version="1.7.1"
66

77
if [[ $# -ne 1 ]]; then
88
echo 1>&2 "Usage: ${scriptName} {local|staging||production}"

deploy.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@ deploy \<repository-name>
99

1010
##DESCRIPTION
1111

12-
Deploy transmits **target/splunk-1.7.0.jar**, **target/splunk-1.7.0-javadoc.jar**, and
13-
**target/splunk-1.7.0-sources.jar** to the **local**, **staging**, or **production**
12+
Deploy transmits **target/splunk-1.7.1.jar**, **target/splunk-1.7.1-javadoc.jar**, and
13+
**target/splunk-1.7.1-sources.jar** to the **local**, **staging**, or **production**
1414
maven repository. Repository names are mapped to locations as follows.
1515

1616
| repository-name | location |
1717
|-----------------|----------------------------------------------------------------|
1818
| local | file:///${HOME}/.m2/repository/ |
1919
| staging | http://stg-artifactory:8081/artifactory/devplat-staging/ | |
20-
| production | http://splunk.artifactoryonline.com/splunk/ext-releases-local/ |
20+
| production | https://splunk.jfrog.io/artifactory/ext-releases-local/ |
2121

2222
After deployment you should find this tree structure at the location of your repository
2323

24-
com/splunk/splunk/1.7.0/
25-
├── splunk-1.7.0-javadoc.jar
26-
├── splunk-1.7.0-javadoc.jar.md5
27-
├── splunk-1.7.0-javadoc.jar.sha1
28-
├── splunk-1.7.0-sources.jar
29-
├── splunk-1.7.0-sources.jar.md5
30-
├── splunk-1.7.0-sources.jar.sha1
31-
├── splunk-1.7.0.jar
32-
├── splunk-1.7.0.jar.md5
33-
├── splunk-1.7.0.jar.sha1
34-
├── splunk-1.7.0.pom
35-
├── splunk-1.7.0.pom.md5
36-
└── splunk-1.7.0.pom.sha1
24+
com/splunk/splunk/1.7.1/
25+
├── splunk-1.7.1-javadoc.jar
26+
├── splunk-1.7.1-javadoc.jar.md5
27+
├── splunk-1.7.1-javadoc.jar.sha1
28+
├── splunk-1.7.1-sources.jar
29+
├── splunk-1.7.1-sources.jar.md5
30+
├── splunk-1.7.1-sources.jar.sha1
31+
├── splunk-1.7.1.jar
32+
├── splunk-1.7.1.jar.md5
33+
├── splunk-1.7.1.jar.sha1
34+
├── splunk-1.7.1.pom
35+
├── splunk-1.7.1.pom.md5
36+
└── splunk-1.7.1.pom.sha1
3737

3838
Verify this structure prior to release.

examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>com.splunk</groupId>
3838
<artifactId>splunk</artifactId>
39-
<version>${version.number}</version>
39+
<version>1.7.1</version>
4040
<scope>provided</scope>
4141
</dependency>
4242
<dependency>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77

88
<properties>
9-
<version.number>1.7.0</version.number>
9+
<version.number>1.7.1</version.number>
1010
<maven.resources.overwrite>true</maven.resources.overwrite>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<maven.compiler.source>8</maven.compiler.source>
@@ -60,7 +60,7 @@
6060
<artifactId>maven-deploy-plugin</artifactId>
6161
<version>3.0.0-M1</version>
6262
<configuration>
63-
<skip>true</skip>
63+
<skip>false</skip>
6464
</configuration>
6565
</plugin>
6666
</plugins>

splunk/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>splunk</artifactId>
8-
<version>${version.number}</version>
8+
<version>1.7.1</version>
99
<parent>
1010
<artifactId>splunk-sdk-java</artifactId>
1111
<groupId>com.splunk</groupId>

splunk/src/main/java/com/splunk/HttpService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public boolean verify(String s, SSLSession sslSession) {
8080
private String prefix = null;
8181

8282
static Map<String, String> defaultHeader = new HashMap<String, String>() {{
83-
put("User-Agent", "splunk-sdk-java/1.7.0");
83+
put("User-Agent", "splunk-sdk-java/1.7.1");
8484
put("Accept", "*/*");
8585
}};
8686

0 commit comments

Comments
 (0)