Skip to content

Commit

Permalink
Set to release version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirostar committed May 2, 2023
1 parent dbb178c commit f221cf1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repositories {

```groovy
dependencies {
implementation 'org.dcm4che:dcm4che-typeddicom-lib-std:0.5.2-SNAPSHOT'
implementation 'org.dcm4che:dcm4che-typeddicom-lib-std:0.5.2'
}
```

Expand All @@ -41,7 +41,7 @@ repositories {

```kotlin
dependencies {
implementation("org.dcm4che:dcm4che-typeddicom-lib-std:0.5.2-SNAPSHOT")
implementation("org.dcm4che:dcm4che-typeddicom-lib-std:0.5.2")
}
```

Expand All @@ -60,7 +60,7 @@ dependencies {
<dependency>
<groupId>org.dcm4che</groupId>
<artifactId>dcm4che-typeddicom</artifactId>
<version>0.5.2-SNAPSHOT</version>
<version>0.5.2</version>
</dependency>
```
### Use private tags with the gradle plugin
Expand All @@ -78,7 +78,7 @@ buildscript {
plugins {
id 'java-library'
id 'org.dcm4che.typeddicom-java-generator' version '0.5.2-SNAPSHOT'
id 'org.dcm4che.typeddicom-java-generator' version '0.5.2'
}
generateTypeddicomJavaSources {
Expand All @@ -99,7 +99,7 @@ buildscript {

plugins {
id("java-library")
id("org.dcm4che.typeddicom-java-generator") version "0.5.2-SNAPSHOT"
id("org.dcm4che.typeddicom-java-generator") version "0.5.2"
}

generateTypeddicomJavaSources {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

public class TypeddicomPublisherPlugin implements Plugin<Project> {
private static final String TYPEDDICOM_GROUP = "org.dcm4che";
private static final String TYPEDDICOM_VERSION = "0.5.2-SNAPSHOT";
private static final String TYPEDDICOM_VERSION = "0.5.2";

private static final String STANDARD_PUBLICATION_NAME = "mavenJava";
private static final String GRADLE_PLUGIN_PUBLICATION_NAME = "pluginMaven";
Expand Down

0 comments on commit f221cf1

Please sign in to comment.