Skip to content

Commit d0f47df

Browse files
committed
Updated to GWT 2.8.2
1 parent 3ed1864 commit d0f47df

File tree

4 files changed

+85
-53
lines changed

4 files changed

+85
-53
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ gwt-unitCache/
1616
# more caches and things from deploy #
1717
war/WEB-INF/deploy/
1818
war/WEB-INF/classes/
19+
*.iml
20+
.vscode

geneviewer-sample/pom.xml

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

99
<artifactId>geneviewer-sample</artifactId>
1010
<packaging>gwt-app</packaging>
11-
1211
<name>GeneViewer Sample Application</name>
12+
<description>A GWT based visualization for a Gene track (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>

geneviewer/pom.xml

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

1314
<build>
1415
<!-- required until https://github.com/tbroyer/gwt-maven-plugin/issues/33 is fixed -->

pom.xml

Lines changed: 80 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
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">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>com.github.timeu.gwt-libs.geneviewer</groupId>
4-
<artifactId>geneviewer-parent</artifactId>
5-
<version>1.0.0-SNAPSHOT</version>
6-
<name>GeneViewer (Parent)</name>
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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.github.timeu.gwt-libs.geneviewer</groupId>
5+
<artifactId>geneviewer-parent</artifactId>
6+
<version>1.0.0-SNAPSHOT</version>
7+
<name>GeneViewer (Parent)</name>
78
<packaging>pom</packaging>
9+
<description>A GWT based visualization for a Gene track</description>
10+
<url>https://github.com/timeu/GeneViewer</url>
11+
<inceptionYear>2011</inceptionYear>
812

9-
<properties>
10-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
12-
<gwt.version>2.8.0-SNAPSHOT</gwt.version>
13-
<github.global.server>github</github.global.server>
14-
<github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
15-
<gwt.module>sample.GeneViewerSample</gwt.module>
16-
<gwt.shortName>geneviewersample</gwt.shortName>
17-
<processing.version>1.0.0-SNAPSHOT</processing.version>
18-
</properties>
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16+
<gwt.version>2.8.2</gwt.version>
17+
<github.global.server>github</github.global.server>
18+
<github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
19+
<gwt.module>sample.GeneViewerSample</gwt.module>
20+
<gwt.shortName>geneviewersample</gwt.shortName>
21+
<processing.version>1.0.0-SNAPSHOT</processing.version>
22+
</properties>
23+
<distributionManagement>
24+
<repository>
25+
<id>ossrh</id>
26+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
27+
</repository>
28+
<snapshotRepository>
29+
<id>ossrh</id>
30+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
31+
</snapshotRepository>
32+
</distributionManagement>
1933

2034
<developers>
2135
<developer>
@@ -29,7 +43,17 @@
2943
<url>http://www.gmi.oeaw.ac.at</url>
3044
</organization>
3145

46+
<licenses>
47+
<license>
48+
<name>MIT License</name>
49+
<url>http://opensource.org/licenses/MIT</url>
50+
<distribution>repo</distribution>
51+
</license>
52+
</licenses>
3253

54+
<prerequisites>
55+
<maven>3.0.5</maven>
56+
</prerequisites>
3357

3458
<dependencyManagement>
3559
<dependencies>
@@ -66,7 +90,7 @@
6690
<dependency>
6791
<groupId>com.google.gwt.gwtmockito</groupId>
6892
<artifactId>gwtmockito</artifactId>
69-
<version>1.1.5</version>
93+
<version>1.1.9</version>
7094
<scope>test</scope>
7195
</dependency>
7296
</dependencies>
@@ -84,15 +108,41 @@
84108
<plugin>
85109
<groupId>org.apache.maven.plugins</groupId>
86110
<artifactId>maven-compiler-plugin</artifactId>
87-
<version>3.1</version>
111+
<version>3.8.1</version>
88112
<configuration>
89113
<source>1.8</source>
90114
<target>1.8</target>
91115
</configuration>
92116
</plugin>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-release-plugin</artifactId>
120+
<version>3.0.0-M1</version>
121+
<configuration>
122+
<autoVersionSubmodules>true</autoVersionSubmodules>
123+
<tagNameFormat>v@{project.version}</tagNameFormat>
124+
</configuration>
125+
</plugin>
126+
<plugin>
127+
<groupId>org.apache.maven.plugins</groupId>
128+
<artifactId>maven-site-plugin</artifactId>
129+
<version>3.7.1</version>
130+
</plugin>
131+
<plugin>
132+
<groupId>org.sonatype.plugins</groupId>
133+
<artifactId>nexus-staging-maven-plugin</artifactId>
134+
<version>1.6.8</version>
135+
<extensions>true</extensions>
136+
<configuration>
137+
<serverId>ossrh</serverId>
138+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
139+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
140+
</configuration>
141+
</plugin>
93142
<plugin>
94143
<groupId>org.apache.maven.plugins</groupId>
95144
<artifactId>maven-gpg-plugin</artifactId>
145+
<version>1.6</version>
96146
<executions>
97147
<execution>
98148
<id>sign-artifacts</id>
@@ -106,7 +156,7 @@
106156
<plugin>
107157
<groupId>net.ltgt.gwt.maven</groupId>
108158
<artifactId>gwt-maven-plugin</artifactId>
109-
<version>1.0-rc-4</version>
159+
<version>1.0.0</version>
110160
<extensions>true</extensions>
111161
<configuration>
112162
<devMode>false</devMode>
@@ -140,44 +190,23 @@
140190
</pluginManagement>
141191
<plugins>
142192
<plugin>
143-
<groupId>net.ltgt.gwt.maven</groupId>
144-
<artifactId>gwt-maven-plugin</artifactId>
145-
<extensions>true</extensions>
193+
<groupId>org.apache.maven.plugins</groupId>
194+
<artifactId>maven-gpg-plugin</artifactId>
195+
</plugin>
196+
<plugin>
197+
<groupId>org.sonatype.plugins</groupId>
198+
<artifactId>nexus-staging-maven-plugin</artifactId>
146199
</plugin>
147200
</plugins>
148201
</build>
149-
<repositories>
150-
<repository>
151-
<id>google-snapshots</id>
152-
<url>https://oss.sonatype.org/content/repositories/google-snapshots/</url>
153-
<releases>
154-
<enabled>false</enabled>
155-
</releases>
156-
<snapshots>
157-
<enabled>true</enabled>
158-
</snapshots>
159-
</repository>
160-
</repositories>
161-
162-
<distributionManagement>
163-
<repository>
164-
<id>repo</id>
165-
<url>${github.maven.repository}/releases/</url>
166-
</repository>
167-
<snapshotRepository>
168-
<id>snapshot-repo</id>
169-
<url>${github.maven.repository}/snapshots/</url>
170-
</snapshotRepository>
171-
</distributionManagement>
172202

173203
<modules>
174204
<module>geneviewer</module>
175205
<module>geneviewer-sample</module>
176206
</modules>
177-
<scm>
178-
<url>https://timeu@github.com/timeu/geneviewer</url>
179-
<connection>scm:git@github.com:timeu/geneviewer.git</connection>
180-
<developerConnection>scm:git@github.com:timeu/geneviewer.git</developerConnection>
181-
<tag>HEAD</tag>
182-
</scm>
207+
<scm>
208+
<url>https://timeu@github.com/timeu/geneviewer</url>
209+
<connection>scm:git@github.com:timeu/geneviewer.git</connection>
210+
<developerConnection>scm:git:ssh://git@github.com/timeu/geneviewer.git</developerConnection>
211+
</scm>
183212
</project>

0 commit comments

Comments
 (0)