Skip to content

Commit 1995fe2

Browse files
committed
Release 0.0.1
1 parent f804e20 commit 1995fe2

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

annotations/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ publishing {
2424
}
2525
}
2626
pom {
27+
name = 'MapStruct Spring Annotations'
28+
description = 'Spring-specific annotations for MapStruct'
29+
url = 'https://mapstruct.org/'
30+
packaging = 'jar'
31+
2732
licenses {
2833
license {
2934
name = 'The Apache License, Version 2.0'
@@ -40,13 +45,13 @@ publishing {
4045
scm {
4146
connection = 'scm:git:git://[email protected]:mapstruct/mapstruct-spring-extensions.git'
4247
developerConnection = 'scm:git:ssh://[email protected]:mapstruct/mapstruct-spring-extensions.git'
48+
url = 'https://github.com/mapstruct/mapstruct-spring-extensions'
4349
}
4450
}
4551
}
4652
}
4753
repositories {
4854
maven {
49-
// change URLs to point to your repos, e.g. http://my.org/repo
5055
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
5156
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
5257
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ subprojects {
2626
apply plugin: "jacoco"
2727

2828
group = 'org.mapstruct.extensions.spring'
29-
version = '0.0.1-SNAPSHOT'
29+
version = '0.0.1'
3030

3131
dependencies {
3232
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.1'

extensions/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ publishing {
3333
}
3434
}
3535
pom {
36+
name = 'MapStruct Spring Extensions'
37+
description = 'Spring-specific MapStruct extensions'
38+
url = 'https://mapstruct.org/'
39+
packaging = 'jar'
40+
3641
licenses {
3742
license {
3843
name = 'The Apache License, Version 2.0'
@@ -54,7 +59,6 @@ publishing {
5459
}
5560
repositories {
5661
maven {
57-
// change URLs to point to your repos, e.g. http://my.org/repo
5862
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
5963
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
6064
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

0 commit comments

Comments
 (0)