Skip to content

Commit b623d5c

Browse files
committed
Upgraded to GWT 2.8.2
1 parent 83283f8 commit b623d5c

File tree

4 files changed

+94
-60
lines changed

4 files changed

+94
-60
lines changed

Diff for: .gitignore

+2
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

Diff for: dygraphs-gwt-sample/pom.xml

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

99
<artifactId>dygraphs-gwt-sample</artifactId>
1010
<packaging>gwt-app</packaging>
11-
1211
<name>Dygraphs-GWT Sample Application</name>
12+
<description>GWT wrapper for Dygraphs (Sample App)</description>
1313

1414
<build>
1515
<plugins>

Diff for: dygraphs-gwt/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>dygraphs-gwt</artifactId>
1010
<packaging>gwt-lib</packaging>
1111
<name>Dygraphs-GWT</name>
12+
<description>GWT wrapper for Dygraphs (Core Library)</description>
1213

1314
<build>
1415
<plugins>

Diff for: pom.xml

+90-59
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,57 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
3-
3+
44
<groupId>com.github.timeu.gwt-libs.dygraphs-gwt</groupId>
55
<artifactId>dygraphs-gwt-parent</artifactId>
66
<version>1.0.0-SNAPSHOT</version>
77
<packaging>pom</packaging>
8-
98
<name>Dygraphs-GWT (Parent)</name>
109
<description>GWT wrapper for Dygraphs</description>
1110
<url>https://github.com/timeu/dygraphs-gwt</url>
12-
<organization>
13-
<name>GMI</name>
14-
<url>http://www.gmi.oeaw.ac.at</url>
15-
</organization>
16-
17-
<modules>
18-
<module>dygraphs-gwt</module>
19-
<module>dygraphs-gwt-sample</module>
20-
</modules>
21-
22-
2311

2412
<properties>
2513
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26-
<gwt.version>2.8.0-SNAPSHOT</gwt.version>
14+
<gwt.version>2.8.2</gwt.version>
2715
<gwt.module>sample.DygraphsGWTSample</gwt.module>
2816
<gwt.shortName>dygraphsgwtsample</gwt.shortName>
2917
<github.global.server>github</github.global.server>
3018
<github.maven.repository>file:///home/GMI/uemit.seren/Code/maven-repository/</github.maven.repository>
3119
</properties>
3220

33-
<licenses>
34-
<license>
35-
<name>The MIT License (MIT)</name>
36-
<url>http://opensource.org/licenses/MIT</url>
37-
<distribution>repo</distribution>
38-
</license>
39-
</licenses>
21+
<inceptionYear>2011</inceptionYear>
22+
<licenses>
23+
<license>
24+
<name>MIT License</name>
25+
<url>http://opensource.org/licenses/MIT</url>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
29+
30+
<prerequisites>
31+
<maven>3.0.5</maven>
32+
</prerequisites>
33+
34+
<organization>
35+
<name>GMI</name>
36+
<url>http://www.gmi.oeaw.ac.at</url>
37+
</organization>
38+
39+
40+
<distributionManagement>
41+
<repository>
42+
<id>ossrh</id>
43+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
44+
</repository>
45+
<snapshotRepository>
46+
<id>ossrh</id>
47+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
48+
</snapshotRepository>
49+
</distributionManagement>
4050

4151
<scm>
4252
<connection>scm:git:https://timeu@github.com/timeu/dygraphs-gwt.git</connection>
43-
<developerConnection>scm:git:https://timeu@github.com/timeu/dygraphs-gwt.git</developerConnection>
4453
<url>https://timeu@github.com/timeu/dygraphs-gwt</url>
54+
<developerConnection>scm:git:ssh://git@github.com/timeu/dygraphs-gwt</developerConnection>
4555
</scm>
4656

4757
<developers>
@@ -88,29 +98,55 @@
8898
<plugin>
8999
<groupId>org.apache.maven.plugins</groupId>
90100
<artifactId>maven-compiler-plugin</artifactId>
91-
<version>3.1</version>
101+
<version>3.8.1</version>
92102
<configuration>
93103
<source>1.8</source>
94104
<target>1.8</target>
95105
</configuration>
96106
</plugin>
97107
<plugin>
98-
<groupId>org.apache.maven.plugins</groupId>
99-
<artifactId>maven-gpg-plugin</artifactId>
100-
<executions>
101-
<execution>
102-
<id>sign-artifacts</id>
103-
<phase>verify</phase>
104-
<goals>
105-
<goal>sign</goal>
106-
</goals>
107-
</execution>
108-
</executions>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-release-plugin</artifactId>
110+
<version>3.0.0-M1</version>
111+
<configuration>
112+
<autoVersionSubmodules>true</autoVersionSubmodules>
113+
<tagNameFormat>v@{project.version}</tagNameFormat>
114+
</configuration>
109115
</plugin>
110-
<plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-site-plugin</artifactId>
119+
<version>3.7.1</version>
120+
</plugin>
121+
<plugin>
122+
<groupId>org.sonatype.plugins</groupId>
123+
<artifactId>nexus-staging-maven-plugin</artifactId>
124+
<version>1.6.8</version>
125+
<extensions>true</extensions>
126+
<configuration>
127+
<serverId>ossrh</serverId>
128+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
129+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
130+
</configuration>
131+
</plugin>
132+
<plugin>
133+
<groupId>org.apache.maven.plugins</groupId>
134+
<artifactId>maven-gpg-plugin</artifactId>
135+
<version>1.6</version>
136+
<executions>
137+
<execution>
138+
<id>sign-artifacts</id>
139+
<phase>verify</phase>
140+
<goals>
141+
<goal>sign</goal>
142+
</goals>
143+
</execution>
144+
</executions>
145+
</plugin>
146+
<plugin>
111147
<groupId>net.ltgt.gwt.maven</groupId>
112148
<artifactId>gwt-maven-plugin</artifactId>
113-
<version>1.0-rc-6</version>
149+
<version>1.0.0</version>
114150
<extensions>true</extensions>
115151
<configuration>
116152
<startupUrls>
@@ -138,27 +174,22 @@
138174
</plugin>
139175
</plugins>
140176
</pluginManagement>
177+
<plugins>
178+
<plugin>
179+
<groupId>org.apache.maven.plugins</groupId>
180+
<artifactId>maven-gpg-plugin</artifactId>
181+
</plugin>
182+
<plugin>
183+
<groupId>org.sonatype.plugins</groupId>
184+
<artifactId>nexus-staging-maven-plugin</artifactId>
185+
</plugin>
186+
</plugins>
141187
</build>
142-
<distributionManagement>
143-
<repository>
144-
<id>repo</id>
145-
<url>${github.maven.repository}/releases/</url>
146-
</repository>
147-
<snapshotRepository>
148-
<id>snapshot-repo</id>
149-
<url>${github.maven.repository}/snapshots/</url>
150-
</snapshotRepository>
151-
</distributionManagement>
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-
</project>
188+
189+
190+
191+
<modules>
192+
<module>dygraphs-gwt</module>
193+
<module>dygraphs-gwt-sample</module>
194+
</modules>
195+
</project>

0 commit comments

Comments
 (0)