alfresco-rad
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.alfresco.maven</groupId> <artifactId>alfresco-rad</artifactId> <version>4.11.0</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> <artifactId>alfresco-rad</artifactId> <packaging>jar</packaging> <name>Rapid Application Development Support</name> <description>SDK module for Rapid Development support, such as Alfresco JUnit runner</description> <parent> <groupId>org.alfresco.maven</groupId> <artifactId>alfresco-sdk-aggregator</artifactId> <version>4.11.0</version> <relativePath>../../pom.xml</relativePath> </parent> <dependencyManagement> <dependencies> <dependency> <groupId>org.alfresco</groupId> <artifactId>${alfresco.bomDependency.artifactId}</artifactId> <version>${alfresco.platform.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Access to org.alfresco.service.ServiceRegistry --> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-repository</artifactId> <scope>provided</scope> </dependency> <!-- Bring in ApplicationContextAware, ApplicationContext etc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- Access to JUnit runner classes --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>compile</scope> </dependency> </dependencies> </project>