symphony-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.symphonyoss.symphony</groupId>
<artifactId>symphony-java-client</artifactId>
<version>1.1.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright 2016 The Symphony Software Foundation
~
~ Licensed to The Symphony Software Foundation (SSF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.symphonyoss.symphony</groupId>
<artifactId>symphony-java-client</artifactId>
<version>1.1.4</version>
<name>Symphony Java Client</name>
<packaging>pom</packaging>
<url>https://github.com/symphonyoss/symphony-java-client</url>
<description>A Symphony Agent API client written in Java</description>
<parent>
<groupId>org.symphonyoss</groupId>
<artifactId>symphonyoss</artifactId>
<version>9</version>
</parent>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/symphonyoss/symphony-java-client.git</connection>
<developerConnection>scm:git:git@github.com:symphonyoss/symphony-java-client.git</developerConnection>
<url>https://github.com/symphonyoss/symphony-java-client</url>
<tag>symphony-java-client-1.1.4</tag>
</scm>
<developers>
<developer>
<id>ftarsillo</id>
<name>Frank Tarsillo</name>
<email />
<url>http://github.com/ftarsillo</url>
<organization>Symphony Software Foundation</organization>
<organizationUrl>http://symphony.foundation</organizationUrl>
<timezone />
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>maoo</id>
<name>Maurizio Pillitu</name>
<email>maoo@symphony.foundation</email>
<url>http://github.com/maoo</url>
<organization>Symphony Software Foundation</organization>
<organizationUrl>http://symphony.foundation</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<modules>
<module>symphony-client</module>
</modules>
<properties>
<whitesource.product>Symphony Java Client</whitesource.product>
<slfj4-version>1.7.21</slfj4-version>
<jaxrs-version>2.1</jaxrs-version>
<junit-version>4.12</junit-version>
<mokito-version>2.4.0</mokito-version>
<powermock-version>1.7.0RC2</powermock-version>
<jsoup-version>1.11.2</jsoup-version>
<jackson.version>2.9.4</jackson.version>
</properties>
<dependencies>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${jaxrs-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slfj4-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slfj4-version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mokito-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>${powermock-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup-version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
</project>