trello4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.trygvis.trello4j</groupId>
<artifactId>trello4j</artifactId>
<version>1.0-2013.10.19</version>
</dependency><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>
<parent>
<groupId>io.trygvis</groupId>
<artifactId>trygvis-parent</artifactId>
<version>1</version>
</parent>
<groupId>io.trygvis.trello4j</groupId>
<artifactId>trello4j</artifactId>
<version>1.0-2013.10.19</version>
<name>trello4j</name>
<url>https://github.com/joelso/trello4j</url>
<description>
Java wrapper around Trello API.
A fork of the fork https://github.com/johanmynhardt/trello4j.
</description>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/trygvis/trello4j</url>
<connection>scm:git:git://github.com/trygvis/trello4j.git</connection>
<developerConnection>scm:git:https://github.com/trygvis/trello4j.git</developerConnection>
<tag>trello4j-1.0-2013.10.19</tag>
</scm>
<developers>
<developer>
<id>joelso</id>
<name>Joel</name>
<email>joel@frostdigital.se</email>
<url>http://frostdigital.se/</url>
<roles>
<role>lead</role>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.2.2.RELEASE</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.2.2.RELEASE</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
</project>