Skip to content

Commit 6d84cd7

Browse files
committed
Preparing for release
1 parent b2fb467 commit 6d84cd7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ Download [the latest JAR][1] or grab via Maven:
2525
<dependency>
2626
<groupId>com.imsweb</groupId>
2727
<artifactId>x12-parser</artifactId>
28-
<version>1.7</version>
28+
<version>1.8</version>
2929
</dependency>
3030
```
3131

3232
or via Gradle:
3333

3434
```groovy
35-
compile 'com.imsweb.com:x12-parser:1.7'
35+
compile 'com.imsweb.com:x12-parser:1.8'
3636
```
3737

3838
[1]: http://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=com.imsweb&a=x12-parser&v=LATEST

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
plugins {
22
id 'java-library'
33
id 'checkstyle'
4-
id "com.github.spotbugs" version "3.0.0"
4+
id "com.github.spotbugs" version "4.0.7"
55
id 'com.bmuschko.nexus' version '2.3.1' // prepares and copies artifacts to Sonotype OSS
66
id "io.codearte.nexus-staging" version "0.21.2" // logs into Sonotype OSS and does a "Close" and "Release"
77
id 'com.adarshr.test-logger' version '2.0.0'
88
id "com.github.ben-manes.versions" version "0.28.0"
99
}
1010

1111
group = 'com.imsweb'
12-
version = '1.7'
12+
version = '1.8'
1313
description = 'Java client library for parsing x12 files'
1414

1515
tasks.withType(JavaCompile) {
@@ -27,7 +27,7 @@ repositories {
2727
}
2828

2929
dependencies {
30-
api 'com.thoughtworks.xstream:xstream:1.4.11.1'
30+
api 'com.thoughtworks.xstream:xstream:1.4.12'
3131

3232
testImplementation 'junit:junit:4.13'
3333
testImplementation 'commons-io:commons-io:2.6'
@@ -106,6 +106,6 @@ nexusStaging {
106106
}
107107

108108
wrapper {
109-
gradleVersion = '6.2.1'
109+
gradleVersion = '6.3'
110110
distributionType = Wrapper.DistributionType.ALL
111111
}

gradle/wrapper/gradle-wrapper.jar

-1 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)