|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - <groupId>org.springdoc</groupId> |
| 3 | + <groupId>org.thingsboard</groupId> |
4 | 4 | <artifactId>springdoc-openapi</artifactId>
|
5 |
| - <version>2.4.0</version> |
| 5 | + <version>2.4.0TB</version> |
6 | 6 | <packaging>pom</packaging>
|
7 | 7 | <name>Spring openapi documentation</name>
|
8 | 8 | <description>Spring openapi documentation</description>
|
|
21 | 21 | </license>
|
22 | 22 | </licenses>
|
23 | 23 |
|
| 24 | + <organization> |
| 25 | + <name>ThingsBoard</name> |
| 26 | + <url>https://thingsboard.io/</url> |
| 27 | + </organization> |
| 28 | + |
24 | 29 | <developers>
|
25 | 30 | <developer>
|
26 | 31 | <name>Badr NASS LAHSEN</name>
|
27 | 32 | <email>support@springdoc.org</email>
|
28 | 33 | <organization>springdoc</organization>
|
29 | 34 | <organizationUrl>https://springdoc.org/</organizationUrl>
|
30 | 35 | </developer>
|
| 36 | + <developer> |
| 37 | + <id>ikulikov</id> |
| 38 | + <name>Igor Kulikov</name> |
| 39 | + <email>ikulikov@thingsboard.io</email> |
| 40 | + <organization>ThingsBoard</organization> |
| 41 | + <organizationUrl>https://thingsboard.io/</organizationUrl> |
| 42 | + </developer> |
31 | 43 | </developers>
|
32 | 44 |
|
33 | 45 | <scm>
|
34 |
| - <url>git@github.com:springdoc/springdoc-openapi.git</url> |
35 |
| - <connection>scm:git:git@github.com:springdoc/springdoc-openapi.git</connection> |
36 |
| - <developerConnection>scm:git:git@github.com:springdoc/springdoc-openapi.git |
| 46 | + <url>git@github.com:thingsboard/springdoc-openapi.git</url> |
| 47 | + <connection>scm:git:git@github.com:thingsboard/springdoc-openapi.git</connection> |
| 48 | + <developerConnection>scm:git:git@github.com:thingsboard/springdoc-openapi.git |
37 | 49 | </developerConnection>
|
38 |
| - <tag>v2.4.0</tag> |
| 50 | + <tag>v2.4.0TB</tag> |
39 | 51 | </scm>
|
40 | 52 | <distributionManagement>
|
41 | 53 | <snapshotRepository>
|
42 | 54 | <id>ossrh</id>
|
43 |
| - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 55 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
44 | 56 | </snapshotRepository>
|
45 | 57 | <repository>
|
46 | 58 | <id>ossrh</id>
|
47 |
| - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 59 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
48 | 60 | </repository>
|
49 | 61 | </distributionManagement>
|
50 | 62 |
|
|
54 | 66 | <module>springdoc-openapi-starter-webflux-api</module>
|
55 | 67 | <module>springdoc-openapi-starter-webmvc-ui</module>
|
56 | 68 | <module>springdoc-openapi-starter-webflux-ui</module>
|
| 69 | + <module>springdoc-swagger-ui</module> |
57 | 70 | </modules>
|
58 | 71 |
|
59 | 72 | <properties>
|
60 | 73 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
61 | 74 | <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
62 | 75 | <nexus-staging-maven-plugin>1.6.8</nexus-staging-maven-plugin>
|
63 | 76 | <swagger-api.version>2.2.20</swagger-api.version>
|
64 |
| - <swagger-ui.version>5.11.8</swagger-ui.version> |
| 77 | + <swagger-ui.version>5.12.0TB</swagger-ui.version> |
65 | 78 | <gmavenplus-plugin.version>1.13.1</gmavenplus-plugin.version>
|
66 | 79 | <jaxb-impl.version>2.1</jaxb-impl.version>
|
67 | 80 | <javax.jws-api.version>1.1</javax.jws-api.version>
|
|
79 | 92 | <artifactId>swagger-core-jakarta</artifactId>
|
80 | 93 | <version>${swagger-api.version}</version>
|
81 | 94 | </dependency>
|
82 |
| - <!-- swagger ui --> |
83 |
| - <dependency> |
84 |
| - <groupId>org.webjars</groupId> |
85 |
| - <artifactId>swagger-ui</artifactId> |
86 |
| - <version>${swagger-ui.version}</version> |
87 |
| - </dependency> |
88 | 95 | <dependency>
|
89 | 96 | <groupId>javax.xml</groupId>
|
90 | 97 | <artifactId>jaxb-impl</artifactId>
|
|
125 | 132 | </dependency>
|
126 | 133 | <!-- SpringDoc -->
|
127 | 134 | <dependency>
|
128 |
| - <groupId>org.springdoc</groupId> |
| 135 | + <groupId>org.thingsboard</groupId> |
129 | 136 | <artifactId>springdoc-openapi-starter-common</artifactId>
|
130 | 137 | <version>${project.version}</version>
|
131 | 138 | </dependency>
|
132 | 139 | <dependency>
|
133 |
| - <groupId>org.springdoc</groupId> |
| 140 | + <groupId>org.thingsboard</groupId> |
134 | 141 | <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
|
135 | 142 | <version>${project.version}</version>
|
136 | 143 | </dependency>
|
137 | 144 | <dependency>
|
138 |
| - <groupId>org.springdoc</groupId> |
| 145 | + <groupId>org.thingsboard</groupId> |
139 | 146 | <artifactId>springdoc-openapi-starter-webflux-api</artifactId>
|
140 | 147 | <version>${project.version}</version>
|
141 | 148 | </dependency>
|
142 | 149 | <dependency>
|
143 |
| - <groupId>org.springdoc</groupId> |
| 150 | + <groupId>org.thingsboard</groupId> |
144 | 151 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
145 | 152 | <version>${project.version}</version>
|
146 | 153 | </dependency>
|
147 | 154 | <dependency>
|
148 |
| - <groupId>org.springdoc</groupId> |
| 155 | + <groupId>org.thingsboard</groupId> |
149 | 156 | <artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
|
150 | 157 | <version>${project.version}</version>
|
151 | 158 | </dependency>
|
| 159 | + <!-- swagger ui --> |
| 160 | + <dependency> |
| 161 | + <groupId>org.thingsboard</groupId> |
| 162 | + <artifactId>springdoc-swagger-ui</artifactId> |
| 163 | + <version>${project.version}</version> |
| 164 | + </dependency> |
152 | 165 | </dependencies>
|
153 | 166 | </dependencyManagement>
|
154 | 167 | <dependencies>
|
|
264 | 277 | </execution>
|
265 | 278 | </executions>
|
266 | 279 | </plugin>
|
267 |
| - <plugin> |
268 |
| - <groupId>org.sonatype.plugins</groupId> |
269 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
270 |
| - <version>${nexus-staging-maven-plugin}</version> |
271 |
| - <extensions>true</extensions> |
272 |
| - <configuration> |
273 |
| - <serverId>ossrh</serverId> |
274 |
| - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
275 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
276 |
| - </configuration> |
277 |
| - <dependencies> |
278 |
| - <dependency> |
279 |
| - <groupId>com.thoughtworks.xstream</groupId> |
280 |
| - <artifactId>xstream</artifactId> |
281 |
| - <version>1.4.15</version> |
282 |
| - </dependency> |
283 |
| - </dependencies> |
284 |
| - </plugin> |
285 | 280 | <plugin>
|
286 | 281 | <artifactId>maven-release-plugin</artifactId>
|
287 | 282 | <version>${maven-release-plugin.version}</version>
|
|
0 commit comments