websight-rest-swagger-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.ds.websight</groupId> <artifactId>websight-rest-swagger-maven-plugin</artifactId> <version>1.0.2</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"> <modelVersion>4.0.0</modelVersion> <groupId>pl.ds.websight</groupId> <artifactId>websight-rest-swagger-maven-plugin</artifactId> <version>1.0.2</version> <packaging>maven-plugin</packaging> <name>WebSight Swagger Maven Plugin</name> <description>Rest Swagger Plugin is a plugin for generating Rest API specification by scanning WebSight Rest actions in modules the plugin is enabled for.</description> <url>https://bitbucket.org/teamds-workspace/websight-rest-swagger-plugin</url> <organization> <name>Dynamic Solutions sp. z o.o. sp. k.</name> <url>https://ds.pl</url> </organization> <licenses> <license> <name>GNU Affero General Public License v3.0</name> <url>https://bitbucket.org/teamds-workspace/websight-rest-swagger-plugin/src/main/LICENSE</url> </license> </licenses> <developers> <developer> <name>Michal Cukierman</name> <email>michal.cukierman@ds.pl</email> <organization>Dynamic Solutions</organization> <organizationUrl>https://www.ds.pl/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:ssh://git@bitbucket.org/teamds-workspace/websight-rest-swagger-plugin.git</connection> <developerConnection>scm:git:ssh://git@bitbucket.org/teamds-workspace/websight-rest-swagger-plugin.git</developerConnection> <url>https://bitbucket.org/teamds-workspace/websight-rest-swagger-plugin</url> <tag>v1.0.2</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>pl.ds.websight</groupId> <artifactId>websight-rest-framework</artifactId> <version>1.0.2</version> </dependency> <dependency> <groupId>pl.ds.websight</groupId> <artifactId>websight-request-parameters-support</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>3.3.9</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.3.9</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.3.9</version> <exclusions> <exclusion> <artifactId>org.eclipse.sisu.plexus</artifactId> <groupId>org.eclipse.sisu</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.11</version> </dependency> <dependency> <groupId>ru.vyarus</groupId> <artifactId>generics-resolver</artifactId> <version>3.0.3</version> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.http.servlet-api</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.18.4</version> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.models.api</artifactId> <version>1.3.8</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.11.2</version> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-models</artifactId> <version>2.1.5</version> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.5</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArgs> <arg>-Xlint</arg> </compilerArgs> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.0</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> <configuration> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> <showErrors>true</showErrors> <streamLogs>false</streamLogs> <properties> <https.protocols>${https.protocols}</https.protocols> </properties> <goals> <goal>clean</goal> <goal>package</goal> </goals> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>1.8</source> </configuration> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sign-maven-plugin</artifactId> <version>0.3.0</version> <executions> <execution> <goals> <goal>sign</goal> </goals> <configuration> <skipNoKey>true</skipNoKey> <keyFile>${user.home}/.m2/sign-key-ds.asc</keyFile> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>license-management</id> <phase>process-sources</phase> <goals> <goal>update-project-license</goal> </goals> </execution> </executions> <configuration> <licenseName>agpl_v3</licenseName> <licenseFile>${project.basedir}/LICENSE</licenseFile> <generateBundle>true</generateBundle> <bundleLicensePath>META-INF/LICENSE</bundleLicensePath> <excludedScopes>test</excludedScopes> <inceptionYear>2020</inceptionYear> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>mavenCentralRelease</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M6</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <scmCommentPrefix>WS-1 [skip ci] [maven]</scmCommentPrefix> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>