alfresco-mvc-rest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gradecak.alfresco-mvc</groupId> <artifactId>alfresco-mvc-rest</artifactId> <version>9.0.0</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.gradecak.alfresco-mvc</groupId> <version>9.0.0</version> <artifactId>alfresco-mvc-parent</artifactId> <relativePath>../</relativePath> </parent> <artifactId>alfresco-mvc-rest</artifactId> <name>Alfresco MVC rest</name> <description>Glue between SpringMVC and Alfresco. This library enables the usage of Spring @MVC within Alfresco.</description> <dependencies> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-data-model</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-remote-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-repository</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> </project>