diff --git a/README.md b/README.md
index 710661050..86c858b07 100644
--- a/README.md
+++ b/README.md
@@ -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
@@ -161,7 +162,7 @@ Maven
x.x.x
com.imsweb
-staging-client-java-toronto
+staging-client-java-pediatric
x.x.x
```
@@ -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
diff --git a/build.gradle b/build.gradle
index d80a958e5..1d52bf198 100644
--- a/build.gradle
+++ b/build.gradle
@@ -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 {
@@ -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"
}
}
@@ -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'