sakai-portal-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sakaiproject.portal</groupId> <artifactId>sakai-portal-impl</artifactId> <version>23.3</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> <parent> <artifactId>portal</artifactId> <groupId>org.sakaiproject.portal</groupId> <version>23.3</version> <relativePath>../../pom.xml</relativePath> </parent> <name>sakai-portal-impl</name> <groupId>org.sakaiproject.portal</groupId> <artifactId>sakai-portal-impl</artifactId> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.sakaiproject.edu-services.course-management</groupId> <artifactId>coursemanagement-api</artifactId> </dependency> <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> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sakai-portal-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sakai-portal-render-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sakai-portal-util</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.presence</groupId> <artifactId>sakai-presence-api</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.entitybroker</groupId> <artifactId>entitybroker-api</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.entitybroker</groupId> <artifactId>entitybroker-utils</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.profile2</groupId> <artifactId>profile2-api</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.pasystem</groupId> <artifactId>pasystem-api</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.basiclti</groupId> <artifactId>basiclti-api</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <!-- required for unit tests --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>jtidy</groupId> <artifactId>jtidy</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> </dependency> <dependency> <groupId>org.sakaiproject.velocity</groupId> <artifactId>sakai-velocity-util</artifactId> </dependency> <dependency> <groupId>xom</groupId> <artifactId>xom</artifactId> <version>1.1</version> <exclusions> <exclusion> <groupId>xalan</groupId> <artifactId>xalan</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/bundle</directory> <includes> <include>**/*.config</include> <include>**/*.properties</include> </includes> </resource> <resource> <directory>${basedir}/src/java</directory> <includes> <include>**/*.vm</include> </includes> </resource> </resources> <testSourceDirectory>src/test/java</testSourceDirectory> <testResources> <testResource> <directory>${basedir}/src/test/resources</directory> <includes> <include>**/*.*</include> </includes> <filtering>false</filtering> </testResource> <!--includes: **/*Test --> </testResources> <sourceDirectory>src/java</sourceDirectory> </build> </project>