Skip to content

Commit 3a17d22

Browse files
committed
Updated the Versions and Maven repo guide on getting started.
1 parent dc2bb0d commit 3a17d22

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ crashlytics-build.properties
103103
.idea/
104104
.idea/
105105
.idea/
106+
.idea/

.idea/artifacts/gwt_material_demo_war.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/gwt_material_demo_war_exploded.xml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/gwt/material/design/demo/client/application/dto/DataHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static List<Hero> getAllHeroes(){
5050

5151
public static List<Version> getAllVersions() {
5252
List<Version> versions = new ArrayList<>();
53-
versions.add(new Version("1.5.0-SNAPSHOT", "Ongoing", Version.VersionLink.CORE_1_5_SNAPSHOT.getName(), Version.VersionLink.ADDINS_1_5_SNAPSHOT.getName(), Version.VersionLink.THEME_1_5.getName(), "deep-orange"));
53+
versions.add(new Version("1.5.0", "April 2016", Version.VersionLink.CORE_1_5_0.getName(), Version.VersionLink.ADDINS_1_5_0.getName(), Version.VersionLink.THEME_1_5_0.getName(), "deep-orange"));
5454
versions.add(new Version("1.4.1", "January 2016", Version.VersionLink.CORE_1_4_1.getName(), null, Version.VersionLink.THEME_1_4.getName(), "red"));
5555
versions.add(new Version("1.4", "November 2015", Version.VersionLink.CORE_1_4.getName(), null, Version.VersionLink.THEME_1_4.getName(), "purple"));
5656
versions.add(new Version("1.3.3", "July 2015", Version.VersionLink.CORE_1_3_3.getName(), null, null, "pink"));

src/main/java/gwt/material/design/demo/client/application/dto/Version.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Version implements Serializable {
3232
public enum VersionLink{
3333

3434
// FOR gwt-material Core
35-
CORE_1_5_SNAPSHOT("https://oss.sonatype.org/content/repositories/snapshots/com/github/gwtmaterialdesign/gwt-material/1.5.0-SNAPSHOT/"),
35+
CORE_1_5_0("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material/1.5.0"),
3636
CORE_1_4_1("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material/1.4.1"),
3737
CORE_1_4("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material/1.4"),
3838
CORE_1_3_3("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material/1.3.3"),
@@ -44,10 +44,10 @@ public enum VersionLink{
4444

4545
// FOR gwt-material Themes
4646
THEME_1_4("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material-themes/1.4"),
47-
THEME_1_5("https://oss.sonatype.org/content/repositories/snapshots/com/github/gwtmaterialdesign/gwt-material-themes/1.5.0-SNAPSHOT/"),
47+
THEME_1_5_0("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material-themes/1.5.0"),
4848

4949
// FOR gwt-material Addins
50-
ADDINS_1_5_SNAPSHOT("https://oss.sonatype.org/content/repositories/snapshots/com/github/gwtmaterialdesign/gwt-material-addins/1.5.0-SNAPSHOT/");
50+
ADDINS_1_5_0("http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material-addins/1.5.0");
5151

5252
String name;
5353
VersionLink(String name) {

src/main/java/gwt/material/design/demo/client/application/gettingstarted/GettingStartedView.ui.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
&emsp;&lt;dependency><br/>
3333
&emsp;&lt;groupId>com.github.gwtmaterialdesign&lt;/groupId><br/>
3434
&emsp;&lt;artifactId>gwt-material&lt;/artifactId><br/>
35-
&emsp;&lt;version>1.5.0-SNAPSHOT&lt;/version><br/>
35+
&emsp;&lt;version>1.5.0&lt;/version><br/>
3636
&lt;/dependency>
3737
</demo:PrettyPre>
3838
</m:MaterialPanel>
3939
<m:MaterialPanel>
4040
<m:MaterialTitle title="Download the JAR (Alternative)"
4141
description="If you are not using maven you can download the latest Jar Release easily and add it in your classpath."/>
42-
<m:MaterialButton ui:field="btnDownloadGWTMaterial" backgroundColor="blue" waves="LIGHT" iconType="FILE_DOWNLOAD" iconPosition="RIGHT" text="Download 1.5.0" enabled="false"/>
42+
<m:MaterialButton ui:field="btnDownloadGWTMaterial" backgroundColor="blue" waves="LIGHT" iconType="FILE_DOWNLOAD" iconPosition="RIGHT" text="Download 1.5.0"/>
4343
</m:MaterialPanel>
4444

4545
<m:MaterialTitle title="Wiki" description="A brief information about gwt-material using Github Wikis" />

src/main/resources/gwt/material/design/demo/client/resources/MaterialConstants.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apkUrl=http://gwt-material.appspot.com/bin/gwtmaterial.apk
22
rawSourceUrl=http://gwt-material.appspot.com/bin/materialize-v0.96.1.zip
3-
sourceUrl=http://central.maven.org/maven2/com/github/gwtmaterialdesign/gwt-material/1.4/gwt-material-1.4.jar
3+
sourceUrl=http://central.maven.org/maven2/com/github/gwtmaterialdesign/gwt-material/1.5.0/gwt-material-1.5.0.jar
44
gitterUrl=https://gitter.im/GwtMaterialDesign/gwt-material
55
weatherIconsUrl=http://gwt-material.appspot.com/bin/weather
66
mavenUrl=http://mvnrepository.com/artifact/com.github.gwtmaterialdesign/gwt-material

0 commit comments

Comments
 (0)