openapi-vertx-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.redhat.consulting</groupId> <artifactId>openapi-vertx-archetype</artifactId> <version>1.0.17</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>com.redhat.consulting</groupId> <artifactId>openapi-vertx-archetype</artifactId> <version>1.0.17</version> <packaging>maven-archetype</packaging> <description>OpenAPI And Vert.x Bootstrap Archetype</description> <url>https://github.com/redhat-appdev-practice/openapi-vertx-archetype</url> <name>openapi-vertx-archetype</name> <!-- License must be present--> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>At least one license must be present. Here is an example of ASL v. 2.0</comments> </license> </licenses> <!-- Source code management information is mandatory as well.--> <scm> <connection>scm:git:git@github.com:redhat-appdev-practice/openapi-vertx-archetype.git</connection> <url>scm:git:git@github.com:redhat-appdev-practice/openapi-vertx-archetype.git</url> <developerConnection>scm:git:https://github.com/redhat-appdev-practice/openapi-vertx-archetype.git</developerConnection> <tag>r1.0.17</tag> </scm> <!-- At least one developer should be mentioned --> <developers> <developer> <id>josphill</id> <name>Deven Phillips</name> <organization>Red Hat</organization> </developer> </developers> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.2.0</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.2.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>jboss-staging</serverId> <nexusUrl>https://repository.jboss.org/nexus/</nexusUrl> <stagingProfileId>2161b7b8da0080</stagingProfileId> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> <dependencies> <!-- TODO: Remove after OSSRH-66257, NEXUS-26993 are fixed, possibly via https://github.com/sonatype/nexus-maven-plugins/pull/91 --> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.15</version> </dependency> </dependencies> </plugin> <plugin> <groupId>io.github.phillipuniverse</groupId> <artifactId>githook-maven-plugin</artifactId> <version>1.0.5</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>install</goal> </goals> <configuration> <hooks> <pre-push><![CDATA[ PROJECT_VERSION=$(mvn -B --quiet help:evaluate -Dexpression=project.version -DforceStdout | sed 's@-SNAPSHOT@@g') grep "${PROJECT_VERSION}" README.md >> /dev/null if [ $? -ne 0 ]; then echo "Error: README examples show incorrect versions" exit $? fi ]]></pre-push> </hooks> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>