weblicht-nentities-ws-dw-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.clarin.weblicht</groupId> <artifactId>weblicht-nentities-ws-dw-archetype</artifactId> <version>1.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"> <modelVersion>4.0.0</modelVersion> <groupId>eu.clarin.weblicht</groupId> <artifactId>weblicht-nentities-ws-dw-archetype</artifactId> <version>1.4</version> <packaging>maven-archetype</packaging> <name>weblicht-nentities-ws-dw-archetype</name> <description>An archetype for creating weblicht web services with dropwizard. This archetype provides debian and redhat packaging.</description> <url>https://github.com/weblicht/weblicht-nentities-ws-dw-archetype</url> <licenses> <license> <name>LGPL 3.0</name> <url>http://www.gnu.org/licenses/lgpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Wei Qiu</name> <email>wei.qiu@uni-tuebingen.de</email> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <url>https://arc.sfs.uni-tuebingen.de/summary/clarind!libraries!weblicht-nentities-ws-dw-archetype.git</url> <connection>https://arc.sfs.uni-tuebingen.de/r/clarind/libraries/weblicht-nentities-ws-dw-archetype.git</connection> <developerConnection>scm:git:https://arc.sfs.uni-tuebingen.de/git/clarind/libraries/weblicht-nentities-ws-dw-archetype.git</developerConnection> <tag>weblicht-nentities-ws-dw-archetype-1.4</tag> </scm> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </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-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.8.1</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>