doc-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ch.ubique.openapi</groupId>
<artifactId>doc-annotations</artifactId>
<version>1.0.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?> <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"> <properties> <java.version>1.8</java.version> <pluginVersion>1.0.0</pluginVersion> </properties> <modelVersion>4.0.0</modelVersion> <groupId>ch.ubique.openapi</groupId> <artifactId>doc-annotations</artifactId> <version>1.0.4</version> <name>doc-annotations</name> <description>Annotations for documentation of API</description> <url>https://github.com/UbiqueInnovation/springboot-swagger3-annotations</url> <licenses> <license> <name>The MIT License</name> <url>https://raw.githubusercontent.com/UbiqueInnovation/springboot-swagger3-annotations/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>ubamrein</id> <name>Patrick Amrein</name> <email>amrein@ubique.ch</email> <organization>Ubique Innovation AG</organization> <organizationUrl>https://www.ubique.ch/</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:git://github.com:UbiqueInnovation/springboot-swagger3-annotations.git</connection> <developerConnection>scm:git:git://github.com:UbiqueInnovation/springboot-swagger3-annotations.git</developerConnection> <url>https://github.com/UbiqueInnovation/springboot-swagger3-annotations</url> <tag>HEAD</tag> </scm> <dependencies></dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>8</source> <release>8</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>bintray-ubique-oss-springboot-swagger3</id> <name>ubique-oss-springboot-swagger3-annotations</name> <url>https://api.bintray.com/maven/ubique-oss/springboot-swagger3/springboot-swagger3-annotations/;publish=1</url> </repository> </distributionManagement> </project>