gwt-bootstrap-tour
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.christianlacerda</groupId>
<artifactId>gwt-bootstrap-tour</artifactId>
<version>0.10.1</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.github.christianlacerda</groupId>
<artifactId>gwt-bootstrap-tour</artifactId>
<version>0.10.1</version>
<name>Gwt Bootstrap Tour</name>
<description>This is a Google Web Toolkit wrapper library for BootstrapTour JavaScript project.</description>
<url>http://christianlacerda.github.io/gwt-bootstrap-tour/</url>
<developers>
<developer>
<name>Christian Lacerda</name>
<email>christian.mails@gmail.com</email>
<organization>Ooboo</organization>
<organizationUrl>http://www.ooboo.com.br</organizationUrl>
</developer>
</developers>
<properties>
<project.encoding>UTF-8</project.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<source.version>1.7</source.version>
<target.version>1.7</target.version>
<gwt.version>2.6.1</gwt.version>
<gwt-maven-plugin.version>2.6.1</gwt-maven-plugin.version>
</properties>
<scm>
<connection>scm:git:git@github.com:christianlacerda/gwt-bootstrap-tour.git</connection>
<developerConnection>scm:git:git@github.com:christianlacerda/gwt-bootstrap-tour.git</developerConnection>
<url>http://github.com/christianlacerda/gwt-bootstrap-tour</url>
<tag>gwt-bootstrap-tour-0.10.1</tag>
</scm>
<licenses>
<license>
<name>Apache License Version 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.java</include>
<include>**/*.gwt.xml</include>
<include>**/*.js</include>
<include>**/*.css</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${source.version}</source>
<target>${target.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.5</version>
<configuration>
<licenseName>apache_v2</licenseName>
<inceptionYear>2013</inceptionYear>
<organizationName>Tap2Ask</organizationName>
<projectName>GwtBootstrapTour</projectName>
<includes>
<include>**/*.java</include>
<include>**/*.xml</include>
</includes>
</configuration>
<executions>
<execution>
<id>license</id>
<phase>process-sources</phase>
<goals>
<goal>update-file-header</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<!-- comment out for now because doesn't work on JDK < 8 -->
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
<encoding>${project.build.sourceEncoding}</encoding>
<locale>en</locale>
<linksource>true</linksource>
<validateLinks>true</validateLinks>
<links>
<link>https://github.com/gwtproject/gwt/tree/master/doc/validation-package-list</link>
</links>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>