File tree Expand file tree Collapse file tree 7 files changed +18
-17
lines changed
packagename-and-classname Expand file tree Collapse file tree 7 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: "maven-publish"
22apply plugin : " signing"
33
44dependencies {
5- compileOnly' org.springframework:spring-core:5.0.0.RELEASE'
5+ compileOnly ' org.springframework:spring-core:5.0.0.RELEASE'
66}
77
88java {
@@ -31,7 +31,9 @@ publishing {
3131 }
3232 developers {
3333 developer {
34+ id = ' RayBan'
3435 name = ' Raimund Klein'
36+ 3537 }
3638 }
3739 scm {
@@ -52,6 +54,9 @@ publishing {
5254}
5355
5456signing {
57+ required { gradle. taskGraph. hasTask(" uploadArchives" ) }
58+ sign configurations. archives
59+ useGpgCmd()
5560 sign publishing. publications. mavenJava
5661}
5762
@@ -60,7 +65,6 @@ javadoc {
6065 options. addBooleanOption(' html5' , true )
6166 }
6267 options. links = [
63- " https://docs.oracle.com/javase/8/docs/api/" ,
6468 " https://docs.spring.io/spring/docs/5.0.0.RELEASE/javadoc-api/"
6569 ]
6670}
Original file line number Diff line number Diff line change @@ -21,9 +21,6 @@ allprojects {
2121 repositories {
2222 jcenter()
2323 mavenCentral()
24- maven {
25- url " https://oss.sonatype.org/content/repositories/snapshots"
26- }
2724 }
2825}
2926
Original file line number Diff line number Diff 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-SNAPSHOT '
8- annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0-SNAPSHOT '
7+ implementation ' org.mapstruct:mapstruct:1.4.0.CR1 '
8+ annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0.CR1 '
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'
Original file line number Diff line number Diff 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-SNAPSHOT '
7- annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0-SNAPSHOT '
6+ implementation ' org.mapstruct:mapstruct:1.4.0.CR1 '
7+ annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0.CR1 '
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'
Original file line number Diff line number Diff 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-SNAPSHOT '
8- annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0-SNAPSHOT '
7+ implementation ' org.mapstruct:mapstruct:1.4.0.CR1 '
8+ annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0.CR1 '
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'
Original file line number Diff line number Diff 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-SNAPSHOT '
8- annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0-SNAPSHOT '
7+ implementation ' org.mapstruct:mapstruct:1.4.0.CR1 '
8+ annotationProcessor ' org.mapstruct:mapstruct-processor:1.4.0.CR1 '
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'
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: "signing"
33
44dependencies {
55 implementation project(" :annotations" )
6- implementation ' org.mapstruct:mapstruct:1.4.0-SNAPSHOT '
6+ implementation ' org.mapstruct:mapstruct:1.4.0.CR1 '
77 implementation ' com.squareup:javapoet:1.12.1'
88 implementation ' org.apache.commons:commons-lang3:3.10'
99
@@ -44,9 +44,9 @@ publishing {
4444 }
4545 }
4646 scm {
47- connection = ' scm:git:git://git@ github.com: mapstruct/mapstruct-spring-extensions.git'
48- developerConnection = ' scm:git:ssh ://git@ github.com: mapstruct/mapstruct-spring-extensions.git'
49- // url = 'http ://example .com/my-library/ '
47+ connection = ' scm:git:git://github.com/ mapstruct/mapstruct-spring-extensions.git'
48+ developerConnection = ' scm:git:git ://github.com/ mapstruct/mapstruct-spring-extensions.git'
49+ url = ' https ://github .com/mapstruct/mapstruct-spring-extensions '
5050 }
5151 }
5252 }
You can’t perform that action at this time.
0 commit comments