Skip to content

Commit 1e1fa50

Browse files
committed
release 1.0.1-beta
1 parent 1cd0a4f commit 1e1fa50

File tree

3 files changed

+160
-6
lines changed

3 files changed

+160
-6
lines changed

autoconfigure/pom.xml

Lines changed: 79 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66

77
<groupId>io.mzlnk.springframework</groupId>
88
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-autoconfigure</artifactId>
9-
<version>1.0-beta</version>
9+
<version>1.0.1-beta</version>
10+
<packaging>jar</packaging>
1011

1112
<name>multi-tenant-oauth2-resource-server-spring-boot-autoconfiguration</name>
1213
<description>Spring Boot autoconfiguration 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>
1415

1516
<inceptionYear>2021</inceptionYear>
1617

@@ -35,6 +36,26 @@
3536
</developer>
3637
</developers>
3738

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+
3859
<properties>
3960
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4061
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -105,4 +126,60 @@
105126
</dependencies>
106127
</dependencyManagement>
107128

129+
<build>
130+
<plugins>
131+
<plugin>
132+
<groupId>org.apache.maven.plugins</groupId>
133+
<artifactId>maven-javadoc-plugin</artifactId>
134+
<version>3.2.0</version>
135+
<executions>
136+
<execution>
137+
<id>attach-javadocs</id>
138+
<goals>
139+
<goal>jar</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
<plugin>
145+
<groupId>org.apache.maven.plugins</groupId>
146+
<artifactId>maven-source-plugin</artifactId>
147+
<version>3.2.1</version>
148+
<executions>
149+
<execution>
150+
<id>attach-sources</id>
151+
<goals>
152+
<goal>jar</goal>
153+
</goals>
154+
</execution>
155+
</executions>
156+
</plugin>
157+
<plugin>
158+
<groupId>org.apache.maven.plugins</groupId>
159+
<artifactId>maven-gpg-plugin</artifactId>
160+
<version>1.6</version>
161+
<executions>
162+
<execution>
163+
<id>sign-artifacts</id>
164+
<phase>verify</phase>
165+
<goals>
166+
<goal>sign</goal>
167+
</goals>
168+
</execution>
169+
</executions>
170+
</plugin>
171+
<plugin>
172+
<groupId>org.sonatype.plugins</groupId>
173+
<artifactId>nexus-staging-maven-plugin</artifactId>
174+
<version>1.6.8</version>
175+
<extensions>true</extensions>
176+
<configuration>
177+
<serverId>ossrh</serverId>
178+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
179+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
180+
</configuration>
181+
</plugin>
182+
</plugins>
183+
</build>
184+
108185
</project>

demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<name>multi-tenant-oauth2-resource-server-spring-boot-starter-demo</name>
1818
<description>Sample demo for multi-tenant OAuth2 resource server Spring Boot starter</description>
19-
<url>https://github.com/mzlnk/spring-boot-multi-tenant-oauth2-resource-server</url>
19+
<url>https://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter</url>
2020

2121
<inceptionYear>2021</inceptionYear>
2222

starter/pom.xml

Lines changed: 80 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66

77
<groupId>io.mzlnk.springframework</groupId>
88
<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>
1011

1112
<name>multi-tenant-oauth2-resource-server-spring-boot-starter</name>
1213
<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>
1415

1516
<inceptionYear>2021</inceptionYear>
1617

@@ -35,6 +36,26 @@
3536
</developer>
3637
</developers>
3738

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+
3859
<parent>
3960
<groupId>org.springframework.boot</groupId>
4061
<artifactId>spring-boot-starter-parent</artifactId>
@@ -47,7 +68,7 @@
4768
<maven.compiler.target>15</maven.compiler.target>
4869

4970
<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>
5172
</properties>
5273

5374
<dependencies>
@@ -75,4 +96,60 @@
7596
</dependency>
7697
</dependencies>
7798

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+
78155
</project>

0 commit comments

Comments
 (0)