Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmay4 committed Oct 6, 2023
1 parent 05bc34b commit c52f610
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,18 @@ items have formats and code structures specific to the data item.
To get started using the Pediatric Pediatric algorithm, instantiate a `Staging` instance:

```java
Staging staging=Staging.getInstance(TorontoDataProvider.getInstance(PediatricVersion.LATEST));
Staging staging=Staging.getInstance(PediatricDataProvider.getInstance(PediatricVersion.LATEST));
```

If a specific version is needed, the algorithm zip file can be downloaded and initialized using an `ExternalStagingFileDataProvider`.

| Version | Release | Algorithm ZIP |
|---------|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| 0.5 | [10.2.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.2.0) | [toronto-0.5.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.2.0/toronto-0.5.zip) |
| 0.4 | [10.1.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.1.0) | [toronto-0.4.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.1.0/toronto-0.4.zip) |
| 0.3 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [toronto-0.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/toronto-0.3.zip) |
| 0.2 | [9.1](https://github.com/imsweb/staging-client-java/releases/tag/v9.1) | [toronto-0.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v9.1/toronto-0.2.zip) |
| Version | Release | Algorithm ZIP |
|---------|------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
| 1.0 | [11.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v11.0.0) | [pediatric-1.0.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.0.0/pediatric-1.0.zip) |
| 0.5 | [10.2.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.2.0) | [toronto-0.5.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.2.0/toronto-0.5.zip) |
| 0.4 | [10.1.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.1.0) | [toronto-0.4.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.1.0/toronto-0.4.zip) |
| 0.3 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [toronto-0.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/toronto-0.3.zip) |
| 0.2 | [9.1](https://github.com/imsweb/staging-client-java/releases/tag/v9.1) | [toronto-0.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v9.1/toronto-0.2.zip) |

### EOD

Expand Down Expand Up @@ -161,7 +162,7 @@ Maven
<version>x.x.x</version>
</dependency><dependency>
<groupId>com.imsweb</groupId>
<artifactId>staging-client-java-toronto</artifactId>
<artifactId>staging-client-java-pediatric</artifactId>
<version>x.x.x</version>
</dependency>
```
Expand All @@ -172,7 +173,7 @@ Gradle
implementation 'com.imsweb:staging-client-java-cs:x.x.x'
implementation 'com.imsweb:staging-client-java-eod-public:x.x.x'
implementation 'com.imsweb:staging-client-java-tnm:x.x.x'
implementation 'com.imsweb:staging-client-java-toronto:x.x.x'
implementation 'com.imsweb:staging-client-java-pediatric:x.x.x'
```

## Usage
Expand Down
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ plugins {
id 'io.codearte.nexus-staging' version '0.30.0' // logs into Sonotype OSS and does a "Close" and "Release"
id 'com.github.spotbugs' version '5.0.14'
id 'com.adarshr.test-logger' version '3.2.0'
id 'com.github.ben-manes.versions' version '0.47.0'
id 'org.sonatype.gradle.plugins.scan' version '2.6.0'
id 'org.sonarqube' version '4.3.1.3277'
id 'com.github.ben-manes.versions' version '0.48.0'
id 'org.sonatype.gradle.plugins.scan' version '2.6.1'
id 'org.sonarqube' version '4.4.1.3373'
}

sonarqube {
Expand All @@ -14,6 +14,7 @@ sonarqube {
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.cpd.exclusions", "**/com/imsweb/staging/entities/impl/**"
property "sonar.coverage.exclusions", "**/UpdaterUtils.java"
property "sonar.gradle.skipCompile", "true"
}
}

Expand Down Expand Up @@ -42,7 +43,7 @@ subprojects {
apply plugin: "org.sonarqube"

group = 'com.imsweb'
version = '10.3.0'
version = '11.0.0'

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
Expand Down

0 comments on commit c52f610

Please sign in to comment.