client-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.scientiamobile.wurflcloud</groupId>
<artifactId>client-java</artifactId>
<version>1.11.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.scientiamobile.wurflcloud</groupId>
<artifactId>client-java</artifactId>
<version>1.11.2</version>
<packaging>jar</packaging>
<name>wurfl-cloud-client (DEPRECATED)</name>
<url>http://www.scientiamobile.com/cloud</url>
<description>DEPRECATED: WURFL Cloud and its client libraries have been officially deprecated and decommissioned as of Q3 2023. No further updates, including security fixes, will be provided. Please migrate to WURFL Microservice (https://scientiamobile.com/wurfl-microservice/) or another supported WURFL device detection solution.</description>
<inceptionYear>2015</inceptionYear>
<scm>
<connection>scm:git:git://github.com/WURFL/wurfl-cloud-client-java.git</connection>
<developerConnection>scm:git:ssh://github.com:WURFL/wurfl-cloud-client-java.git</developerConnection>
<url>https://github.com/WURFL/wurfl-cloud-client-java</url>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
<license>
<name>GNU General Public License v2+</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>ScientiaMobile Inc.</name>
<url>http://www.scientiamobile.com</url>
</organization>
<developers>
<developer>
<id>luca.passani</id>
<name>Luca Passani</name>
<email>support@scientiamobile.com</email>
<organization>ScientiaMobile, Inc. Reston, VA, USA</organization>
<roles>
<role>Project Manager</role>
<role>Developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<testng.version>6.9.8</testng.version>
<logback.version>1.2.10</logback.version>
<slf4j.version>1.6.4</slf4j.version>
<jackson.version>2.10.2</jackson.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.5.1</version>
<optional>true</optional>
</dependency>
<!-- https://mvnrepository.com/artifact/com.jsoniter/jsoniter -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
<configuration>
<systemPropertyVariables>
<wurflcloudversion>${project.version}</wurflcloudversion>
</systemPropertyVariables>
<groups>unit,func</groups>
<argLine>-Xmx787m</argLine>
<properties>
<property>
<name>usedefaultlisteners</name>
<key>false</key>
</property>
</properties>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>2.1</version>
<configuration>
<outputEncoding>UTF-8</outputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/main/etc/header.txt</header>
<excludes>
<exclude>src/main/assembly/**/header-*.txt</exclude>
<exclude>.idea/**/*</exclude>
<exclude>**/*.bak</exclude>
<exclude>**/*.gz</exclude>
<exclude>**/*.zip</exclude>
<exclude>**/*.bz2</exclude>
<exclude>**/.*</exclude>
<exclude>**/*LICENSE*.txt</exclude>
<exclude>**/*_ua*.txt</exclude>
<exclude>**/CHANGELOG*</exclude>
<exclude>logs/**.*</exclude>
</excludes>
<properties>
<years>${project.inceptionYear}</years>
<organization.name>${project.organization.name}</organization.name>
<organization.url>${project.organization.url}</organization.url>
<organization.email>support@scientiamobile.com</organization.email>
</properties>
<mapping>
<yml>SCRIPT_STYLE</yml>
<mdxml>XML_STYLE</mdxml>
</mapping>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- check for license header in all (but excluded) files -->
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>