Skip to content

Commit f77ea62

Browse files
committed
Update to GWT 2.8.2
1 parent fcb7648 commit f77ea62

File tree

4 files changed

+66
-36
lines changed

4 files changed

+66
-36
lines changed

Diff for: .gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,9 @@ gwt-unitCache/
1616
# more caches and things from deploy #
1717
war/WEB-INF/deploy/
1818
war/WEB-INF/classes/
19+
*.iml
20+
.vscode
21+
.idea
22+
.project
23+
.classpath
24+
.settings

Diff for: gwasviewer-sample/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<artifactId>gwasviewer-sample</artifactId>
1010
<packaging>gwt-app</packaging>
11-
1211
<name>GWASViewer Sample Application</name>
12+
<description>A GWT based visualization for a Manhattan plots (Sample App)</description>
1313

1414
<build>
1515
<plugins>
@@ -27,7 +27,7 @@
2727
<version>0.12</version>
2828
<configuration>
2929
<message>Creating site for ${project.version}</message>
30-
<outputDirectory>${project.build.directory}/${artifactId}-${version}/${gwt.shortName}</outputDirectory>
30+
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}/${gwt.shortName}</outputDirectory>
3131
</configuration>
3232
<executions>
3333
<execution>

Diff for: gwasviewer/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>gwasviewer</artifactId>
1010
<packaging>gwt-lib</packaging>
1111
<name>GWASViewer</name>
12+
<description>A GWT based visualization for a Manhattan plots (Core Library)</description>
1213

1314
<build>
1415
<plugins>

Diff for: pom.xml

+57-34
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
<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">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
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">
23
<modelVersion>4.0.0</modelVersion>
34
<groupId>com.github.timeu.gwt-libs.gwasviewer</groupId>
45
<artifactId>gwasviewer-parent</artifactId>
56
<version>1.0.0-SNAPSHOT</version>
67
<name>GWASViewer (Parent)</name>
78
<packaging>pom</packaging>
9+
<description>A GWT based visualization for a Manhattan plots</description>
10+
<url>https://github.com/timeu/GWASViewer</url>
11+
<inceptionYear>2011</inceptionYear>
812

913
<properties>
1014
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1115
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
12-
<gwt.version>2.8.0-SNAPSHOT</gwt.version>
16+
<gwt.version>2.8.2</gwt.version>
1317
<github.global.server>github</github.global.server>
1418
<github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
1519
<gwt.module>sample.GWASViewer</gwt.module>
@@ -19,6 +23,16 @@
1923
<gwt-charts.version>0.9.10</gwt-charts.version>
2024
<ldviewer.version>1.0.0-SNAPSHOT</ldviewer.version>
2125
</properties>
26+
<distributionManagement>
27+
<repository>
28+
<id>ossrh</id>
29+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
30+
</repository>
31+
<snapshotRepository>
32+
<id>ossrh</id>
33+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
34+
</snapshotRepository>
35+
</distributionManagement>
2236

2337
<developers>
2438
<developer>
@@ -32,6 +46,14 @@
3246
<url>http://www.gmi.oeaw.ac.at</url>
3347
</organization>
3448

49+
<licenses>
50+
<license>
51+
<name>MIT License</name>
52+
<url>http://opensource.org/licenses/MIT</url>
53+
<distribution>repo</distribution>
54+
</license>
55+
</licenses>
56+
3557

3658

3759
<dependencyManagement>
@@ -78,7 +100,7 @@
78100
<dependency>
79101
<groupId>com.google.gwt.gwtmockito</groupId>
80102
<artifactId>gwtmockito</artifactId>
81-
<version>1.1.5</version>
103+
<version>1.1.9</version>
82104
<scope>test</scope>
83105
</dependency>
84106
</dependencies>
@@ -90,13 +112,33 @@
90112
<plugins>
91113
<plugin>
92114
<groupId>org.apache.maven.plugins</groupId>
93-
<artifactId>maven-surefire-plugin</artifactId>
94-
<version>2.18.1</version>
115+
<artifactId>maven-release-plugin</artifactId>
116+
<version>3.0.0-M1</version>
117+
<configuration>
118+
<autoVersionSubmodules>true</autoVersionSubmodules>
119+
<tagNameFormat>v@{project.version}</tagNameFormat>
120+
</configuration>
121+
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-site-plugin</artifactId>
125+
<version>3.7.1</version>
126+
</plugin>
127+
<plugin>
128+
<groupId>org.sonatype.plugins</groupId>
129+
<artifactId>nexus-staging-maven-plugin</artifactId>
130+
<version>1.6.8</version>
131+
<extensions>true</extensions>
132+
<configuration>
133+
<serverId>ossrh</serverId>
134+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
135+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
136+
</configuration>
95137
</plugin>
96138
<plugin>
97139
<groupId>org.apache.maven.plugins</groupId>
98140
<artifactId>maven-compiler-plugin</artifactId>
99-
<version>3.1</version>
141+
<version>3.8.1</version>
100142
<configuration>
101143
<source>1.8</source>
102144
<target>1.8</target>
@@ -105,6 +147,7 @@
105147
<plugin>
106148
<groupId>org.apache.maven.plugins</groupId>
107149
<artifactId>maven-gpg-plugin</artifactId>
150+
<version>1.6</version>
108151
<executions>
109152
<execution>
110153
<id>sign-artifacts</id>
@@ -118,7 +161,7 @@
118161
<plugin>
119162
<groupId>net.ltgt.gwt.maven</groupId>
120163
<artifactId>gwt-maven-plugin</artifactId>
121-
<version>1.0-rc-6</version>
164+
<version>1.0.0</version>
122165
<extensions>true</extensions>
123166
<configuration>
124167
<failOnError>true</failOnError>
@@ -150,35 +193,15 @@
150193
</pluginManagement>
151194
<plugins>
152195
<plugin>
153-
<groupId>net.ltgt.gwt.maven</groupId>
154-
<artifactId>gwt-maven-plugin</artifactId>
155-
<extensions>true</extensions>
196+
<groupId>org.apache.maven.plugins</groupId>
197+
<artifactId>maven-gpg-plugin</artifactId>
198+
</plugin>
199+
<plugin>
200+
<groupId>org.sonatype.plugins</groupId>
201+
<artifactId>nexus-staging-maven-plugin</artifactId>
156202
</plugin>
157203
</plugins>
158204
</build>
159-
<repositories>
160-
<repository>
161-
<id>google-snapshots</id>
162-
<url>https://oss.sonatype.org/content/repositories/google-snapshots/</url>
163-
<releases>
164-
<enabled>false</enabled>
165-
</releases>
166-
<snapshots>
167-
<enabled>true</enabled>
168-
</snapshots>
169-
</repository>
170-
</repositories>
171-
172-
<distributionManagement>
173-
<repository>
174-
<id>repo</id>
175-
<url>${github.maven.repository}/releases/</url>
176-
</repository>
177-
<snapshotRepository>
178-
<id>snapshot-repo</id>
179-
<url>${github.maven.repository}/snapshots/</url>
180-
</snapshotRepository>
181-
</distributionManagement>
182205

183206
<modules>
184207
<module>gwasviewer</module>
@@ -187,7 +210,7 @@
187210
<scm>
188211
<url>https://timeu@github.com/timeu/gwasviewer</url>
189212
<connection>scm:git:git@github.com:timeu/gwasviewer.git</connection>
190-
<developerConnection>scm:git@github.com:timeu/gwasviewer.git</developerConnection>
213+
<developerConnection>scm:git:ssh://git@github.com/timeu/gwasviewer.git</developerConnection>
191214
<tag>HEAD</tag>
192215
</scm>
193216
</project>

0 commit comments

Comments
 (0)