Skip to content

Commit

Permalink
Merge pull request #14 from WURFL/develop
Browse files Browse the repository at this point in the history
WURFL Java cloud client 1.0.9
  • Loading branch information
andreacastello authored Dec 19, 2017
2 parents 0baf8cb + 4d76dc3 commit 45ecc83
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.0.9
Ehn: Updated and improved Maven repo references in poms.

1.0.8
Fix: Some minor fixes to Servlet example
Enh: Removed references to brand_name/is_wireless_device from unit tests
Expand Down
4 changes: 2 additions & 2 deletions code/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.scientiamobile.wurflcloud</groupId>
<artifactId>client-java</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<packaging>jar</packaging>

<name>wurfl-cloud-client</name>
Expand Down Expand Up @@ -50,7 +50,7 @@
<repository>
<id>cloud-repository</id>
<name>ScientiaMobile Repository</name>
<url>http://maven.scientiamobile.com:8081/nexus/content/repositories/cloud-repository</url>
<url>https://maven.scientiamobile.com/repository/wurfl-cloud/</url>
</repository>
</distributionManagement>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public interface Constants {
/**
* The version of this client
*/
String CLIENT_VERSION = "1.0.8";
String CLIENT_VERSION = "1.0.9";

/**
* Accepted encoding enum.
Expand Down
19 changes: 16 additions & 3 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.scientiamobile.wurflcloud</groupId>
<artifactId>client-example</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<packaging>war</packaging>

<name>WURFL Cloud Client example webapp</name>
Expand Down Expand Up @@ -44,14 +44,27 @@
<timezone>-5</timezone>
</developer>
</developers>

<!-- Properties -->
<properties>
<!--<spring.version>2.5.6</spring.version>-->
<wurfl.cloud.version>${project.version}</wurfl.cloud.version>
</properties>

<dependencyManagement>
<repositories>
<repository>
<id>cloud-repository</id>
<name>ScientiaMobile Repository</name>
<url>https://maven.scientiamobile.com/repository/wurfl-cloud/</url>
</repository>
<repository>
<id>Central</id>
<name>Central</name>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
</repositories>

<dependencyManagement>
<dependencies>

<dependency>
Expand Down

0 comments on commit 45ecc83

Please sign in to comment.