ldviewer-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.timeu.gwt-libs.ldviewer</groupId>
<artifactId>ldviewer-sample</artifactId>
<version>1.0.0</version>
</dependency><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>
<parent>
<groupId>com.github.timeu.gwt-libs.ldviewer</groupId>
<artifactId>ldviewer-parent</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>ldviewer-sample</artifactId>
<packaging>gwt-app</packaging>
<name>LDViewer Sample Application</name>
<description>A GWT based visualization for LD (Samnple App)</description>
<build>
<plugins>
<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<configuration>
<moduleName>${gwt.module}</moduleName>
<moduleShortName>${gwt.shortName}</moduleShortName>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<configuration>
<message>Creating site for ${project.version}</message>
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}/${gwt.shortName}</outputDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
<groupId>com.github.timeu.gwt-libs.ldviewer</groupId>
<artifactId>ldviewer</artifactId>
<type>gwt-lib</type>
</dependency>
</dependencies>
</project>