Skip to content

Commit 09ab094

Browse files
committed
Upgraded to GWT 2.8.2
1 parent dc1176e commit 09ab094

File tree

4 files changed

+59
-32
lines changed

4 files changed

+59
-32
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ pom.xml.next
66
release.properties
77
dependency-reduced-pom.xml
88
buildNumber.properties
9-
.mvn/timing.properties
9+
.mvn/timing.properties
10+
*.iml
11+
.vscode

ldviewer-sample/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<artifactId>ldviewer-sample</artifactId>
1010
<packaging>gwt-app</packaging>
11-
1211
<name>LDViewer Sample Application</name>
12+
<description>A GWT based visualization for LD (Samnple 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>

ldviewer/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>ldviewer</artifactId>
1010
<packaging>gwt-lib</packaging>
1111
<name>LDViewer</name>
12+
<description>A GWT based visualization for LD (Core Library)</description>
1213

1314
<build>
1415
<plugins>

pom.xml

Lines changed: 53 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,34 @@
55
<artifactId>ldviewer-parent</artifactId>
66
<version>1.0.0-SNAPSHOT</version>
77
<name>LDViewer (Parent)</name>
8+
<description>A GWT based visualization for LD</description>
89
<packaging>pom</packaging>
910

1011
<properties>
1112
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1213
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13-
<gwt.version>2.8.0-SNAPSHOT</gwt.version>
14+
<gwt.version>2.8.2</gwt.version>
1415
<github.global.server>github</github.global.server>
1516
<github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
1617
<gwt.module>sample.LDViewerSample</gwt.module>
1718
<gwt.shortName>ldviewersample</gwt.shortName>
1819
<processing.version>1.0.0-SNAPSHOT</processing.version>
1920
</properties>
2021

22+
<url>https://github.com/timeu/ldviewer</url>
23+
<inceptionYear>2018</inceptionYear>
24+
<licenses>
25+
<license>
26+
<name>MIT License</name>
27+
<url>http://opensource.org/licenses/MIT</url>
28+
<distribution>repo</distribution>
29+
</license>
30+
</licenses>
31+
32+
<prerequisites>
33+
<maven>3.0.5</maven>
34+
</prerequisites>
35+
2136
<developers>
2237
<developer>
2338
<id>timeu</id>
@@ -33,15 +48,14 @@
3348

3449
<distributionManagement>
3550
<repository>
36-
<id>repo</id>
37-
<url>${github.maven.repository}/releases/</url>
51+
<id>ossrh</id>
52+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
3853
</repository>
3954
<snapshotRepository>
40-
<id>snapshot-repo</id>
41-
<url>${github.maven.repository}/snapshots/</url>
55+
<id>ossrh</id>
56+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
4257
</snapshotRepository>
4358
</distributionManagement>
44-
4559
<dependencyManagement>
4660
<dependencies>
4761
<dependency>
@@ -71,7 +85,7 @@
7185
<dependency>
7286
<groupId>com.google.gwt.gwtmockito</groupId>
7387
<artifactId>gwtmockito</artifactId>
74-
<version>1.1.5</version>
88+
<version>1.1.9</version>
7589
<scope>test</scope>
7690
</dependency>
7791
</dependencies>
@@ -82,13 +96,33 @@
8296
<plugins>
8397
<plugin>
8498
<groupId>org.apache.maven.plugins</groupId>
85-
<artifactId>maven-surefire-plugin</artifactId>
86-
<version>2.18.1</version>
99+
<artifactId>maven-release-plugin</artifactId>
100+
<version>3.0.0-M1</version>
101+
<configuration>
102+
<autoVersionSubmodules>true</autoVersionSubmodules>
103+
<tagNameFormat>v@{project.version}</tagNameFormat>
104+
</configuration>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-site-plugin</artifactId>
109+
<version>3.7.1</version>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.sonatype.plugins</groupId>
113+
<artifactId>nexus-staging-maven-plugin</artifactId>
114+
<version>1.6.8</version>
115+
<extensions>true</extensions>
116+
<configuration>
117+
<serverId>ossrh</serverId>
118+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
119+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
120+
</configuration>
87121
</plugin>
88122
<plugin>
89123
<groupId>org.apache.maven.plugins</groupId>
90124
<artifactId>maven-compiler-plugin</artifactId>
91-
<version>3.1</version>
125+
<version>3.8.1</version>
92126
<configuration>
93127
<source>1.8</source>
94128
<target>1.8</target>
@@ -97,6 +131,7 @@
97131
<plugin>
98132
<groupId>org.apache.maven.plugins</groupId>
99133
<artifactId>maven-gpg-plugin</artifactId>
134+
<version>1.6</version>
100135
<executions>
101136
<execution>
102137
<id>sign-artifacts</id>
@@ -110,7 +145,7 @@
110145
<plugin>
111146
<groupId>net.ltgt.gwt.maven</groupId>
112147
<artifactId>gwt-maven-plugin</artifactId>
113-
<version>1.0-rc-4</version>
148+
<version>1.0.0</version>
114149
<extensions>true</extensions>
115150
<configuration>
116151
<devMode>false</devMode>
@@ -143,33 +178,22 @@
143178
</pluginManagement>
144179
<plugins>
145180
<plugin>
146-
<groupId>net.ltgt.gwt.maven</groupId>
147-
<artifactId>gwt-maven-plugin</artifactId>
148-
<extensions>true</extensions>
181+
<groupId>org.apache.maven.plugins</groupId>
182+
<artifactId>maven-gpg-plugin</artifactId>
183+
</plugin>
184+
<plugin>
185+
<groupId>org.sonatype.plugins</groupId>
186+
<artifactId>nexus-staging-maven-plugin</artifactId>
149187
</plugin>
150188
</plugins>
151189
</build>
152-
<repositories>
153-
<repository>
154-
<id>google-snapshots</id>
155-
<url>https://oss.sonatype.org/content/repositories/google-snapshots/</url>
156-
<releases>
157-
<enabled>false</enabled>
158-
</releases>
159-
<snapshots>
160-
<enabled>true</enabled>
161-
</snapshots>
162-
</repository>
163-
</repositories>
164-
165190
<modules>
166191
<module>ldviewer</module>
167192
<module>ldviewer-sample</module>
168193
</modules>
169194
<scm>
170195
<url>https://timeu@github.com/timeu/ldviewer</url>
171196
<connection>scm:git:https://timeu@github.com/timeu/ldviewer.git</connection>
172-
<developerConnection>scm:git:https://timeu@github.com/timeu/ldviewer.git</developerConnection>
173-
<tag>HEAD</tag>
197+
<developerConnection>scm:git:ssh://git@github.com/timeu/ldviewer.git</developerConnection>
174198
</scm>
175199
</project>

0 commit comments

Comments
 (0)