Skip to content

Commit c51d19d

Browse files
committed
Preparation for 2.1 release
1 parent 3b32442 commit c51d19d

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ cache:
77
- $HOME/.m2
88
before_install:
99
# install the gwt-material-jquery library
10-
- git clone -b release_2.1 https://github.com/GwtMaterialDesign/gwt-material-jquery.git
10+
- git clone -b master https://github.com/GwtMaterialDesign/gwt-material-jquery.git
1111
- cd gwt-material-jquery
1212
- mvn install -DskipTests=true -DdryRun=true
1313
- cd ..
1414
# install the gwt-material library
15-
- git clone -b release_2.1 https://github.com/GwtMaterialDesign/gwt-material.git
15+
- git clone -b master https://github.com/GwtMaterialDesign/gwt-material.git
1616
- cd gwt-material
1717
- mvn install -DskipTests=true -DdryRun=true
1818
- cd ..

.utility/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -ev
3-
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "feature/amcharts" ]; then
3+
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
44
echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username><password>\${env.OSSRH_PASS}</password></server></servers></settings>" > ~/settings.xml
55
mvn deploy --settings ~/settings.xml
66
fi

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,21 @@ AmCharts Official Documentation can be found [here](https://docs.amcharts.com/3/
1313

1414

1515
## Maven
16+
### Current Version
17+
```xml
18+
<dependency>
19+
<groupId>com.github.gwtmaterialdesign</groupId>
20+
<artifactId>gwt-material-amcharts</artifactId>
21+
<version>2.1</version>
22+
</dependency>
23+
```
24+
1625
### Snapshot Version 2.1-SNAPSHOT
1726
```xml
1827
<dependency>
1928
<groupId>com.github.gwtmaterialdesign</groupId>
2029
<artifactId>gwt-material-amcharts</artifactId>
21-
<version>2.1-SNAPSHOT</version>
30+
<version>2.2-SNAPSHOT</version>
2231
</dependency>
2332
```
2433

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>com.github.gwtmaterialdesign</groupId>
88
<artifactId>gwt-material-parent</artifactId>
9-
<version>2.1-SNAPSHOT</version>
9+
<version>2.1</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>
1313

1414
<groupId>com.github.gwtmaterialdesign</groupId>
1515
<artifactId>gwt-material-amcharts</artifactId>
16-
<version>2.1-SNAPSHOT</version>
16+
<version>2.1</version>
1717
<packaging>jar</packaging>
1818

1919
<name>gwt-material-amcharts</name>

0 commit comments

Comments
 (0)