Skip to content

Commit

Permalink
Release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Chessray committed Nov 30, 2020
1 parent f804e20 commit 1995fe2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 6 additions & 1 deletion annotations/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ publishing {
}
}
pom {
name = 'MapStruct Spring Annotations'
description = 'Spring-specific annotations for MapStruct'
url = 'https://mapstruct.org/'
packaging = 'jar'

licenses {
license {
name = 'The Apache License, Version 2.0'
Expand All @@ -40,13 +45,13 @@ publishing {
scm {
connection = 'scm:git:git://[email protected]:mapstruct/mapstruct-spring-extensions.git'
developerConnection = 'scm:git:ssh://[email protected]:mapstruct/mapstruct-spring-extensions.git'
url = 'https://github.com/mapstruct/mapstruct-spring-extensions'
}
}
}
}
repositories {
maven {
// change URLs to point to your repos, e.g. http://my.org/repo
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ subprojects {
apply plugin: "jacoco"

group = 'org.mapstruct.extensions.spring'
version = '0.0.1-SNAPSHOT'
version = '0.0.1'

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.1'
Expand Down
6 changes: 5 additions & 1 deletion extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ publishing {
}
}
pom {
name = 'MapStruct Spring Extensions'
description = 'Spring-specific MapStruct extensions'
url = 'https://mapstruct.org/'
packaging = 'jar'

licenses {
license {
name = 'The Apache License, Version 2.0'
Expand All @@ -54,7 +59,6 @@ publishing {
}
repositories {
maven {
// change URLs to point to your repos, e.g. http://my.org/repo
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
Expand Down

0 comments on commit 1995fe2

Please sign in to comment.