Skip to content

Commit d9ebac6

Browse files
committed
Mavenized project and updated version to 0.3.0
1 parent bd579e2 commit d9ebac6

File tree

13 files changed

+106
-128
lines changed

13 files changed

+106
-128
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
December 10, 2011 - Release 0.3.0
2+
* GWASGeneViewer (Feature): Library mavenized
3+
* Dygraph (lib): Upgraded to Dygraph library version 0.6.0 (Maven)
4+
* GeneViewer (lib): Upgraded to GeneViewer library version 0.3.0 (Maven)
5+
16
November 11, 2011 - Release 0.2.9
27
* GeneViewer (lib) : upgraded to new GeneViewer library version (0.2.8)
38
* Dygraph (lib) : upgraded to new Dygraph library version (0.5)

build.xml

Lines changed: 0 additions & 118 deletions
This file was deleted.

gwasgeneviewer-noredist.jar

-20.8 KB
Binary file not shown.

gwasgeneviewer.jar

-234 KB
Binary file not shown.

lib/README

Whitespace-only changes.

lib/dygraph-gwt.jar

-51.8 KB
Binary file not shown.

lib/geneviewer.jar

-92.3 KB
Binary file not shown.

lib/processing-js-gwt.jar

-70.4 KB
Binary file not shown.

pom.xml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>at.gmi.nordborglab.widgets</groupId>
5+
<artifactId>gwasgeneviewer</artifactId>
6+
<version>0.3.0-SNAPSHOT</version>
7+
<name>GWASGeneViewer</name>
8+
9+
<properties>
10+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
12+
<gwtVersion>2.4.0</gwtVersion>
13+
<maven.compiler.source>1.6</maven.compiler.source>
14+
<maven.compiler.target>1.6</maven.compiler.target>
15+
<github.maven.repository>file:///srv/uemit.seren/repository/maven-repository/</github.maven.repository>
16+
</properties>
17+
18+
<repositories>
19+
<repository>
20+
<id>gwt-google-apis</id>
21+
<url>https://maven.alfresco.com/nexus/content/repositories/activiti-thirdparty/</url>
22+
</repository>
23+
<repository>
24+
<id>nordborglab-snapshots</id>
25+
<url>https://github.com/timeu/maven-repos/raw/master/snapshots/</url>
26+
</repository>
27+
</repositories>
28+
29+
30+
31+
32+
<dependencies>
33+
<dependency>
34+
<groupId>junit</groupId>
35+
<artifactId>junit</artifactId>
36+
<version>3.8.1</version>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.google.gwt</groupId>
41+
<artifactId>gwt-user</artifactId>
42+
<version>${gwtVersion}</version>
43+
<scope>provided</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.google.gwt.google-apis</groupId>
47+
<artifactId>gwt-visualization</artifactId>
48+
<version>1.1.2</version>
49+
<scope>provided</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>at.gmi.nordborglab.widgets</groupId>
53+
<artifactId>geneviewer</artifactId>
54+
<version>0.3.0-SNAPSHOT</version>
55+
<scope>provided</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.danvk</groupId>
59+
<artifactId>dygraph</artifactId>
60+
<version>0.6.0-SNAPSHOT</version>
61+
<scope>provided</scope>
62+
</dependency>
63+
</dependencies>
64+
65+
<distributionManagement>
66+
<repository>
67+
<id>repo</id>
68+
<url>${github.maven.repository}/releases/</url>
69+
</repository>
70+
<snapshotRepository>
71+
<id>snapshot-repo</id>
72+
<url>${github.maven.repository}/snapshots/</url>
73+
</snapshotRepository>
74+
</distributionManagement>
75+
76+
77+
<organization>
78+
<name>GMI</name>
79+
<url>http://www.gmi.oeaw.ac.at</url>
80+
</organization>
81+
<build>
82+
<resources>
83+
<resource>
84+
<directory>src/main/java</directory>
85+
</resource>
86+
<resource>
87+
<directory>src/main/resources</directory>
88+
</resource>
89+
</resources>
90+
</build>
91+
<dependencyManagement>
92+
<dependencies>
93+
<dependency><groupId>org.danvk</groupId><artifactId>dygraph</artifactId><version>0.6.0-SNAPSHOT</version></dependency>
94+
</dependencies>
95+
</dependencyManagement>
96+
<scm>
97+
<url>https://timeu@github.com/timeu/GeneViewer.git</url>
98+
<connection>https://timeu@github.com/timeu/GeneViewer.git</connection>
99+
<developerConnection>https://timeu@github.com/timeu/GeneViewer.git</developerConnection>
100+
</scm>
101+
</project>

war/WEB-INF/web.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)