gxt-basic-support-4x-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sencha.gxt.archetypes</groupId> <artifactId>gxt-basic-support-4x-archetype</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>com.sencha.gxt.archetypes</groupId> <artifactId>gxt-basic-support-4x-archetype</artifactId> <version>1.0.2</version> <packaging>maven-archetype</packaging> <name>gxt-basic-support-4x-archetype</name> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.0.1</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.0.1</version> </plugin> </plugins> </pluginManagement> </build> <description>Very basic GXT maven setup</description> <url>https://github.com/sencha/gxt-archetypes</url> <developers> <developer> <id>sencha</id> <name>Sencha, Inc.</name> <email>info@sencha.com</email> <organization>Sencha, Inc.</organization> <organizationUrl>https://sencha.com</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com:sencha/gxt-archetypes.git</connection> <developerConnection>scm:git:git@github.com:sencha/gxt-archetypes.git</developerConnection> <url>https://github.com/sencha/gxt-archetypes</url> <tag>gxt-basic-support-4x-archetype-1.0.2</tag> </scm> <!-- Add this to the end of the project pom.xml --> <!-- This adds the tags that are needed to publish to central --> <!-- Be sure the scm, developer, organization tags exist in pom.xml --> <!-- Used for publishing Archetype --> <!-- 1. mvn clean --> <!-- 2. mvn release:prepare "-Dgpg.passphrase=XXXXXX" -DpushChanges=false -Ppublish --> <!-- 3. mvn release:perform "-Dgpg.passphrase=XXXXXX" -Ppublish --> <profiles> <profile> <id>publish</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.5</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</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>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>