Skip to content

Commit 70bbb0a

Browse files
committed
Corrected MapStruct dependencies to final released versions.
1 parent 4dfc140 commit 70bbb0a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

examples/classname/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependencies {
44
implementation project(":annotations")
55
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
66
compileOnly 'javax.annotation:jsr250-api:1.0'
7-
implementation 'org.mapstruct:mapstruct:1.4.0.CR1'
8-
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.CR1'
7+
implementation 'org.mapstruct:mapstruct:1.4.0.Final'
8+
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Final'
99
implementation 'org.springframework:spring-core:5.0.0.RELEASE'
1010
implementation 'org.springframework:spring-context:5.0.0.RELEASE'
1111
testImplementation 'org.springframework:spring-test:5.0.0.RELEASE'

examples/noconfig/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ dependencies {
33
implementation project(":examples:model")
44
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
55
compileOnly 'javax.annotation:jsr250-api:1.0'
6-
implementation 'org.mapstruct:mapstruct:1.4.0.CR1'
7-
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.CR1'
6+
implementation 'org.mapstruct:mapstruct:1.4.0.Final'
7+
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Final'
88
implementation 'org.springframework:spring-core:5.0.0.RELEASE'
99
implementation 'org.springframework:spring-context:5.0.0.RELEASE'
1010
testImplementation 'org.springframework:spring-test:5.0.0.RELEASE'

examples/packagename-and-classname/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependencies {
44
implementation project(":annotations")
55
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
66
compileOnly 'javax.annotation:jsr250-api:1.0'
7-
implementation 'org.mapstruct:mapstruct:1.4.0.CR1'
8-
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.CR1'
7+
implementation 'org.mapstruct:mapstruct:1.4.0.Final'
8+
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Final'
99
implementation 'org.springframework:spring-core:5.0.0.RELEASE'
1010
implementation 'org.springframework:spring-context:5.0.0.RELEASE'
1111
testImplementation 'org.springframework:spring-test:5.0.0.RELEASE'

examples/packagename/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependencies {
44
implementation project(":examples:model")
55
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
66
compileOnly 'javax.annotation:jsr250-api:1.0'
7-
implementation 'org.mapstruct:mapstruct:1.4.0.CR1'
8-
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.CR1'
7+
implementation 'org.mapstruct:mapstruct:1.4.0.Final'
8+
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Final'
99
implementation 'org.springframework:spring-core:5.0.0.RELEASE'
1010
implementation 'org.springframework:spring-context:5.0.0.RELEASE'
1111
testImplementation 'org.springframework:spring-test:5.0.0.RELEASE'

extensions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
implementation 'com.squareup:javapoet:1.12.1'
77
implementation 'org.apache.commons:commons-lang3:3.10'
88

9-
testImplementation 'org.mapstruct:mapstruct:1.4.0.CR1'
9+
testImplementation 'org.mapstruct:mapstruct:1.4.0.Final'
1010
testImplementation 'org.assertj:assertj-core:3.15.0'
1111
testImplementation 'commons-io:commons-io:2.6'
1212
testImplementation 'com.google.guava:guava:28.2-jre'

0 commit comments

Comments
 (0)