Skip to content

Commit 8b7e3eb

Browse files
committed
Finalize with 1.5.0 release
1 parent 93d72ab commit 8b7e3eb

File tree

292 files changed

+6442
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

292 files changed

+6442
-56
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,5 @@ crashlytics-build.properties
101101

102102

103103
.idea/
104+
.idea/
105+
.idea/

.utility/update_demo_site.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ git clone --quiet --branch=gh-pages https://[email protected]/GwtMaterialDesi
2424
cd gh-pages
2525

2626
# remove the GwtMaterialDemo directories from git.
27-
if [[ -d ./snapshot/gwtmaterialdemo ]]; then
28-
git rm -rf ./snapshot/gwtmaterialdemo
27+
if [[ -d ./gwtmaterialdemo ]]; then
28+
git rm -rf ./gwtmaterialdemo
2929
fi
30-
if [[ -f ./snapshot/index.html ]]; then
31-
git rm -rf ./snapshot/index.html
30+
if [[ -f ./index.html ]]; then
31+
git rm -rf ./index.html
3232
fi
33-
if [[ -d ./snapshot/META-INF ]]; then
34-
git rm -rf ./snapshot/META-INF
33+
if [[ -d ./META-INF ]]; then
34+
git rm -rf ./META-INF
3535
fi
36-
if [[ -d ./snapshot/WEB-INF ]]; then
37-
git rm -rf ./snapshot/WEB-INF
36+
if [[ -d ./WEB-INF ]]; then
37+
git rm -rf ./WEB-INF
3838
fi
3939

4040
# copy the new GwtMaterialDemo the snapshot dir.
41-
unzip -u $TRAVIS_BUILD_DIR/target/gwt-material-demo-*.war -d ./snapshot/
42-
rm -rf ./snapshot/META-INF
43-
rm -rf ./snapshot/WEB-INF
41+
unzip -u $TRAVIS_BUILD_DIR/target/gwt-material-demo-*.war -d ./
42+
rm -rf ./META-INF
43+
rm -rf ./WEB-INF
4444

4545
git add -f .
4646
git commit -m "Auto-push demo to gh-pages successful. (Travis build: $TRAVIS_BUILD_NUMBER)"

pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<parent>
5+
<artifactId>gwt-material-parent</artifactId>
6+
<groupId>com.github.gwtmaterialdesign</groupId>
7+
<version>1.5.0</version>
8+
</parent>
9+
410
<modelVersion>4.0.0</modelVersion>
511

612
<groupId>com.github.gwtmaterialdesign</groupId>
713
<artifactId>gwt-material-demo</artifactId>
814
<packaging>war</packaging>
9-
<version>1.5.0-SNAPSHOT</version>
10-
<name>GwtMaterial - Demo</name>
11-
<description>GWT Material Design - Demo</description>
15+
<version>1.5.0</version>
16+
<name>Gwt Material Demo</name>
17+
<description>Showcase for gwt-material</description>
1218

1319
<prerequisites>
1420
<maven>3.2.3</maven>
@@ -29,7 +35,7 @@
2935
<gwt.version>2.7.0</gwt.version>
3036
<gwtp.version>1.5.1</gwtp.version>
3137
<gin.version>2.1.2</gin.version>
32-
<gwt-material.version>1.5.0-SNAPSHOT</gwt-material.version>
38+
<gwt-material.version>1.5.0</gwt-material.version>
3339

3440
<gwt.style>PRETTY</gwt.style>
3541

src/main/java/com/google/gwt/uibinder/rebind/XMLElement.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,27 @@
1515
*/
1616
package com.google.gwt.uibinder.rebind;
1717

18+
/*
19+
* #%L
20+
* GwtMaterial
21+
* %%
22+
* Copyright (C) 2015 - 2016 GwtMaterialDesign
23+
* %%
24+
* Licensed under the Apache License, Version 2.0 (the "License");
25+
* you may not use this file except in compliance with the License.
26+
* You may obtain a copy of the License at
27+
*
28+
* http://www.apache.org/licenses/LICENSE-2.0
29+
*
30+
* Unless required by applicable law or agreed to in writing, software
31+
* distributed under the License is distributed on an "AS IS" BASIS,
32+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33+
* See the License for the specific language governing permissions and
34+
* limitations under the License.
35+
* #L%
36+
*/
37+
38+
1839
import com.google.gwt.core.ext.UnableToCompleteException;
1940
import com.google.gwt.core.ext.typeinfo.JClassType;
2041
import com.google.gwt.core.ext.typeinfo.JType;

0 commit comments

Comments
 (0)