universal.client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kaazing</groupId>
<artifactId>universal.client</artifactId>
<version>1.0.8</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> <parent> <groupId>org.kaazing</groupId> <artifactId>community</artifactId> <version>2.20</version> </parent> <groupId>org.kaazing</groupId> <artifactId>universal.client</artifactId> <name>Kaazing Java Universal Client</name> <version>1.0.8</version> <packaging>jar</packaging> <url>https://github.com/kaazing/universal-client</url> <description>Universal Client</description> <scm> <url>https://github.com/kaazing/universal-client</url> <connection>scm:git:https://github.com/kaazing/universal-client.git</connection> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.testSource>1.8</maven.compiler.testSource> <maven.compiler.testTarget>1.8</maven.compiler.testTarget> <enforcer.skip>true</enforcer.skip> </properties> <dependencies> <dependency> <groupId>com.kaazing</groupId> <artifactId>enterprise.java.client.all</artifactId> <version>4.1.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>kaazing</id> <repositories> <repository> <id>kaazing-enterprise-repository</id> <name>kaazing-enterprise-repository</name> <url>https://repository.kaazing.com/maven/</url> </repository> </repositories> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> </profiles> </project>