shortenedurl-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sakaiproject.shortenedurl</groupId>
<artifactId>shortenedurl-impl</artifactId>
<version>11.4</version>
</dependency><?xml version="1.0"?>
<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>
<name>Sakai Shortened URL Service Implementations</name>
<groupId>org.sakaiproject.shortenedurl</groupId>
<artifactId>shortenedurl-impl</artifactId>
<packaging>jar</packaging>
<properties>
<deploy.target />
</properties>
<parent>
<groupId>org.sakaiproject.shortenedurl</groupId>
<artifactId>shortenedurl</artifactId>
<version>11.4</version>
</parent>
<dependencies>
<!-- internal dependencies -->
<dependency>
<groupId>org.sakaiproject.shortenedurl</groupId>
<artifactId>shortenedurl-api</artifactId>
</dependency>
<!-- shared external dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<!-- kernel dependencies -->
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-kernel-api</artifactId>
</dependency>
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-component-manager</artifactId>
</dependency>
<dependency>
<groupId>org.sakaiproject.kernel</groupId>
<artifactId>sakai-kernel-util</artifactId>
</dependency>
<!-- entity broker dependency -->
<dependency>
<groupId>org.sakaiproject.entitybroker</groupId>
<artifactId>entitybroker-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- bundled dependencies -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<!-- java 1.5 requires this at compilation time for org.apache.http.impl.client.DefaultHttpClient -->
<dependency>
<groupId>net.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
</dependency>
</dependencies>
<build />
</project>