-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
58 lines (56 loc) · 2.28 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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.gwasviewer</groupId>
<artifactId>gwasviewer-parent</artifactId>
<version>1.0.1-SNAPSHOT</version>
</parent>
<artifactId>gwasviewer-sample</artifactId>
<packaging>gwt-app</packaging>
<name>GWASViewer Sample Application</name>
<description>A GWT based visualization for a Manhattan plots (Sample 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.gwasviewer</groupId>
<artifactId>gwasviewer</artifactId>
<type>gwt-lib</type>
</dependency>
</dependencies>
</project>