Maven Repository - POM file for Web Service portal-rest-api 1.0.0-M3 1.0.0-M3

Summary

Portal REST API.

Utility to call the portal's (uPortal's) REST APIs from within a webapp in the same container..

Declaration

Here is the list of declaration for portal-rest-api. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jasig.portlet.utils</groupId>
   <artifactId>portal-rest-api</artifactId>
   <version>1.0.0-M3</version>
</dependency>

If you think this Maven repository POM file listing for portal-rest-api is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The portal-rest-api-1.0.0-M3 has 7 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Logjcl-over-slf4j 1.6.2
JCL 1.1.1 implementation over SLF4J
12
Logslf4j-api 1.6.2
The slf4j API
513
Logslf4j-log4j12 1.6.2
The slf4j log4j-12 binding
117
Loglog4j 1.2.16
Apache Log4j 1.2
683
JUnitjunit 4.8.2
JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java.
919




Packages

The following packages are defined in the portal-rest-api-1.0.0-M3.jar

org.jasig.portlet.utils.rest

POM File Source

Here is the content of the POM file.

<?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">

    <parent>
        <groupId>org.jasig.portlet.utils</groupId>
        <artifactId>portlet-utils-parent</artifactId>
        <version>1.0.0-M3</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>portal-rest-api</artifactId>
    <packaging>jar</packaging>
    
    <name>Portal REST API</name>
    <description>Utility to call the portal's (uPortal's) REST APIs from within a webapp in the same container.</description>

    <properties>
        <slf4j.version>1.6.2</slf4j.version>
        <log4j.version>1.2.16</log4j.version>
    </properties>
  
    <dependencies>
        <dependency>
          <groupId>javax.portlet</groupId>
          <artifactId>portlet-api</artifactId>
          <version>2.0</version>
        </dependency>
        <dependency>
          <groupId>javax.servlet</groupId>
          <artifactId>servlet-api</artifactId>
          <version>2.5</version>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>jcl-over-slf4j</artifactId>
          <version>${slf4j.version}</version>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
          <version>${slf4j.version}</version>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-log4j12</artifactId>
          <version>${slf4j.version}</version>
        </dependency>
        <dependency>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
          <version>${log4j.version}</version>
        </dependency>
    
    
        <!-- ===== Test Dependencies ====================================== -->
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.8.2</version>
        </dependency>
    </dependencies>
</project>