Author: wkeil Date: Sun Dec 20 13:05:39 2015 New Revision: 1721024 URL: http://svn.apache.org/viewvc?rev=1721024&view=rev Log: DMAP-186: Some arguments like debug/log won't work in Java Console
Task-Url: https://issues.apache.org/jira/browse/DMAP-186 Added: devicemap/trunk/clients/1.0/java/console/NOTICE Modified: devicemap/trunk/clients/1.0/java/NOTICE devicemap/trunk/clients/1.0/java/README devicemap/trunk/clients/1.0/java/console/pom.xml devicemap/trunk/clients/1.0/java/console/src/main/java/org/apache/devicemap/console/Main.java devicemap/trunk/clients/1.0/java/pom.xml Modified: devicemap/trunk/clients/1.0/java/NOTICE URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/java/NOTICE?rev=1721024&r1=1721023&r2=1721024&view=diff ============================================================================== --- devicemap/trunk/clients/1.0/java/NOTICE (original) +++ devicemap/trunk/clients/1.0/java/NOTICE Sun Dec 20 13:05:39 2015 @@ -1,5 +1,5 @@ Apache DeviceMap -Copyright 2014 The Apache Software Foundation +Copyright 2014-2015 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). Modified: devicemap/trunk/clients/1.0/java/README URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/java/README?rev=1721024&r1=1721023&r2=1721024&view=diff ============================================================================== --- devicemap/trunk/clients/1.0/java/README (original) +++ devicemap/trunk/clients/1.0/java/README Sun Dec 20 13:05:39 2015 @@ -45,6 +45,6 @@ devicemap-data JAR file: <dependency> <groupId>org.apache.devicemap</groupId> <artifactId>devicemap-data</artifactId> - <version>1.0.1</version> + <version>1.0.3</version> </dependency> Added: devicemap/trunk/clients/1.0/java/console/NOTICE URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/java/console/NOTICE?rev=1721024&view=auto ============================================================================== --- devicemap/trunk/clients/1.0/java/console/NOTICE (added) +++ devicemap/trunk/clients/1.0/java/console/NOTICE Sun Dec 20 13:05:39 2015 @@ -0,0 +1,8 @@ +============= +Bundled APIs: +============= +This module uses the Airlift Airline framework. +It is licensed under Apache 2 as well. + +The source code of Airline is available at +https://github.com/airlift/airline Modified: devicemap/trunk/clients/1.0/java/console/pom.xml URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/java/console/pom.xml?rev=1721024&r1=1721023&r2=1721024&view=diff ============================================================================== --- devicemap/trunk/clients/1.0/java/console/pom.xml (original) +++ devicemap/trunk/clients/1.0/java/console/pom.xml Sun Dec 20 13:05:39 2015 @@ -22,7 +22,7 @@ <artifactId>devicemap-java-console</artifactId> <packaging>jar</packaging> <name>Apache DeviceMap Java Console</name> - <description>Apache DeviceMap Java API</description> + <description>Apache DeviceMap Java Console App</description> <url>http://devicemap.apache.org/</url> <properties> @@ -41,6 +41,10 @@ <artifactId>devicemap-client</artifactId> </dependency> <dependency> + <groupId>io.airlift</groupId> + <artifactId>airline</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> Modified: devicemap/trunk/clients/1.0/java/console/src/main/java/org/apache/devicemap/console/Main.java URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/java/console/src/main/java/org/apache/devicemap/console/Main.java?rev=1721024&r1=1721023&r2=1721024&view=diff ============================================================================== --- devicemap/trunk/clients/1.0/java/console/src/main/java/org/apache/devicemap/console/Main.java (original) +++ devicemap/trunk/clients/1.0/java/console/src/main/java/org/apache/devicemap/console/Main.java Sun Dec 20 13:05:39 2015 @@ -34,6 +34,7 @@ import org.apache.devicemap.loader.impl. /** * @author Reza Naghibi * @author Werner Keil + * @version 1.1.1 */ public class Main { Modified: devicemap/trunk/clients/1.0/java/pom.xml URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/java/pom.xml?rev=1721024&r1=1721023&r2=1721024&view=diff ============================================================================== --- devicemap/trunk/clients/1.0/java/pom.xml (original) +++ devicemap/trunk/clients/1.0/java/pom.xml Sun Dec 20 13:05:39 2015 @@ -52,6 +52,11 @@ <version>${project.version}</version> </dependency> <dependency> + <groupId>io.airlift</groupId> + <artifactId>airline</artifactId> + <version>0.7</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version>
