6
6
7
7
<groupId >io.mzlnk.springframework</groupId >
8
8
<artifactId >multi-tenant-oauth2-resource-server-spring-boot-starter</artifactId >
9
- <version >1.0-beta</version >
9
+ <version >1.0.1-beta</version >
10
+ <packaging >jar</packaging >
10
11
11
12
<name >multi-tenant-oauth2-resource-server-spring-boot-starter</name >
12
13
<description >Spring Boot starter for multi-tenant OAuth2 resource server</description >
13
- <url >https://github.com/mzlnk/spring-boot- multi-tenant-oauth2-resource-server</url >
14
+ <url >https://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter </url >
14
15
15
16
<inceptionYear >2021</inceptionYear >
16
17
35
36
</developer >
36
37
</developers >
37
38
39
+ <scm >
40
+ <connection >scm:git:git://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter.git
41
+ </connection >
42
+ <developerConnection >
43
+ scm:git:ssh://github.com:mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter.git
44
+ </developerConnection >
45
+ <url >https://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter/tree/master</url >
46
+ </scm >
47
+
48
+ <distributionManagement >
49
+ <snapshotRepository >
50
+ <id >ossrh</id >
51
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
52
+ </snapshotRepository >
53
+ <repository >
54
+ <id >ossrh</id >
55
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
56
+ </repository >
57
+ </distributionManagement >
58
+
38
59
<parent >
39
60
<groupId >org.springframework.boot</groupId >
40
61
<artifactId >spring-boot-starter-parent</artifactId >
47
68
<maven .compiler.target>15</maven .compiler.target>
48
69
49
70
<oauth2-oidc-sdk .version>6.23</oauth2-oidc-sdk .version>
50
- <multi-tenant-oauth2-resource-server-spring-boot-autoconfigure .version>1.0</multi-tenant-oauth2-resource-server-spring-boot-autoconfigure .version>
71
+ <multi-tenant-oauth2-resource-server-spring-boot-autoconfigure .version>1.0.1-beta </multi-tenant-oauth2-resource-server-spring-boot-autoconfigure .version>
51
72
</properties >
52
73
53
74
<dependencies >
75
96
</dependency >
76
97
</dependencies >
77
98
99
+ <build >
100
+ <plugins >
101
+ <plugin >
102
+ <groupId >org.apache.maven.plugins</groupId >
103
+ <artifactId >maven-javadoc-plugin</artifactId >
104
+ <version >3.2.0</version >
105
+ <executions >
106
+ <execution >
107
+ <id >attach-javadocs</id >
108
+ <goals >
109
+ <goal >jar</goal >
110
+ </goals >
111
+ </execution >
112
+ </executions >
113
+ </plugin >
114
+ <plugin >
115
+ <groupId >org.apache.maven.plugins</groupId >
116
+ <artifactId >maven-source-plugin</artifactId >
117
+ <version >3.2.1</version >
118
+ <executions >
119
+ <execution >
120
+ <id >attach-sources</id >
121
+ <goals >
122
+ <goal >jar</goal >
123
+ </goals >
124
+ </execution >
125
+ </executions >
126
+ </plugin >
127
+ <plugin >
128
+ <groupId >org.apache.maven.plugins</groupId >
129
+ <artifactId >maven-gpg-plugin</artifactId >
130
+ <version >1.6</version >
131
+ <executions >
132
+ <execution >
133
+ <id >sign-artifacts</id >
134
+ <phase >verify</phase >
135
+ <goals >
136
+ <goal >sign</goal >
137
+ </goals >
138
+ </execution >
139
+ </executions >
140
+ </plugin >
141
+ <plugin >
142
+ <groupId >org.sonatype.plugins</groupId >
143
+ <artifactId >nexus-staging-maven-plugin</artifactId >
144
+ <version >1.6.8</version >
145
+ <extensions >true</extensions >
146
+ <configuration >
147
+ <serverId >ossrh</serverId >
148
+ <nexusUrl >https://s01.oss.sonatype.org/</nexusUrl >
149
+ <autoReleaseAfterClose >false</autoReleaseAfterClose >
150
+ </configuration >
151
+ </plugin >
152
+ </plugins >
153
+ </build >
154
+
78
155
</project >
0 commit comments