Skip to content

Commit ed07839

Browse files
authored
customize maven pom
1 parent c2bb2ff commit ed07839

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

build.gradle

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,23 @@ publishing {
5050
publications {
5151
maven(MavenPublication) {
5252
from components.java
53+
54+
pom {
55+
name = project.name
56+
description = 'spring security oauth2 test toolkit'
57+
url = "https://github.com/ahunigel/${project.name}"
58+
developers {
59+
developer {
60+
id = 'ahunigel'
61+
name = 'Nigel Zheng'
62+
63+
}
64+
}
65+
scm {
66+
connection = "scm:git:[email protected]:ahunigel/${project.name}.git"
67+
url = "https://github.com/ahunigel/${project.name}"
68+
}
69+
}
5370
}
5471
}
55-
}
72+
}

0 commit comments

Comments
 (0)