Skip to content

Commit ad6b73b

Browse files
committed
Upgraded to GWT 2.8.2
1 parent 33b50ad commit ad6b73b

File tree

4 files changed

+66
-31
lines changed

4 files changed

+66
-31
lines changed

.gitignore

+3-1
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

pom.xml

+60-29
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,42 @@
55
<artifactId>processingjs-gwt-parent</artifactId>
66
<version>1.0.0-SNAPSHOT</version>
77
<name>Processingjs-GWT (Parent)</name>
8+
<description>A GWT wrapper for the Processing library</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.ProcessingJsGWTSample</gwt.module>
1718
<gwt.shortName>processingjsgwtsample</gwt.shortName>
1819
</properties>
1920

21+
<url>https://github.com/timeu/processing-js-gwt</url>
22+
<inceptionYear>2018</inceptionYear>
23+
<licenses>
24+
<license>
25+
<name>MIT License</name>
26+
<url>http://opensource.org/licenses/MIT</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
31+
<prerequisites>
32+
<maven>3.0.5</maven>
33+
</prerequisites>
34+
35+
2036
<distributionManagement>
2137
<repository>
22-
<id>repo</id>
23-
<url>${github.maven.repository}/releases/</url>
38+
<id>ossrh</id>
39+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2440
</repository>
2541
<snapshotRepository>
26-
<id>snapshot-repo</id>
27-
<url>${github.maven.repository}/snapshots/</url>
42+
<id>ossrh</id>
43+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
2844
</snapshotRepository>
2945
</distributionManagement>
3046

@@ -42,8 +58,7 @@
4258
<scm>
4359
<url>https://timeu@github.com/timeu/processing-js-gwt</url>
4460
<connection>scm:git:https://timeu@github.com/timeu/processing-js-gwt.git</connection>
45-
<developerConnection>scm:git:https://timeu@github.com/timeu/processing-js-gwt.git</developerConnection>
46-
<tag>HEAD</tag>
61+
<developerConnection>scm:git:ssh://git@github.com/timeu/processing-js-gwt.git</developerConnection>
4762
</scm>
4863

4964
<dependencyManagement>
@@ -81,16 +96,33 @@
8196
<plugins>
8297
<plugin>
8398
<groupId>org.apache.maven.plugins</groupId>
84-
<artifactId>maven-compiler-plugin</artifactId>
85-
<version>3.1</version>
99+
<artifactId>maven-release-plugin</artifactId>
100+
<version>3.0.0-M1</version>
86101
<configuration>
87-
<source>1.8</source>
88-
<target>1.8</target>
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>
89120
</configuration>
90121
</plugin>
91122
<plugin>
92123
<groupId>org.apache.maven.plugins</groupId>
93124
<artifactId>maven-gpg-plugin</artifactId>
125+
<version>1.6</version>
94126
<executions>
95127
<execution>
96128
<id>sign-artifacts</id>
@@ -101,10 +133,19 @@
101133
</execution>
102134
</executions>
103135
</plugin>
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-compiler-plugin</artifactId>
139+
<version>3.8.1</version>
140+
<configuration>
141+
<source>1.8</source>
142+
<target>1.8</target>
143+
</configuration>
144+
</plugin>
104145
<plugin>
105146
<groupId>net.ltgt.gwt.maven</groupId>
106147
<artifactId>gwt-maven-plugin</artifactId>
107-
<version>1.0-rc-4</version>
148+
<version>1.0.0</version>
108149
<extensions>true</extensions>
109150
<configuration>
110151
<devMode>false</devMode>
@@ -137,25 +178,15 @@
137178
</pluginManagement>
138179
<plugins>
139180
<plugin>
140-
<groupId>net.ltgt.gwt.maven</groupId>
141-
<artifactId>gwt-maven-plugin</artifactId>
142-
<extensions>true</extensions>
143-
</plugin>
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>
187+
</plugin>
144188
</plugins>
145189
</build>
146-
<repositories>
147-
<repository>
148-
<id>google-snapshots</id>
149-
<url>https://oss.sonatype.org/content/repositories/google-snapshots/</url>
150-
<releases>
151-
<enabled>false</enabled>
152-
</releases>
153-
<snapshots>
154-
<enabled>true</enabled>
155-
</snapshots>
156-
</repository>
157-
</repositories>
158-
159190
<modules>
160191
<module>processingjs-gwt</module>
161192
<module>processingjs-gwt-sample</module>

processingjs-gwt-sample/pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<packaging>gwt-app</packaging>
1111

1212
<name>ProcessingJs-GWT Sample Application</name>
13+
<description>A GWT wrapper for the Processing library (Sample app)</description>
1314

1415
<build>
1516
<plugins>
@@ -27,7 +28,7 @@
2728
<version>0.12</version>
2829
<configuration>
2930
<message>Creating site for ${project.version}</message>
30-
<outputDirectory>${project.build.directory}/${artifactId}-${version}/${gwt.shortName}</outputDirectory>
31+
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}/${gwt.shortName}</outputDirectory>
3132
</configuration>
3233
<executions>
3334
<execution>

processingjs-gwt/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>processingjs-gwt</artifactId>
1010
<packaging>gwt-lib</packaging>
1111
<name>Processingjs-GWT</name>
12+
<description>A GWT wrapper for the Processing library (Core library)</description>
1213

1314
<build>
1415
<plugins>

0 commit comments

Comments
 (0)