aem-authoring-toolkit-assets
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.exadel.aem</groupId> <artifactId>aem-authoring-toolkit-assets</artifactId> <version>1.2.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>aem-authoring-toolkit</artifactId> <groupId>com.exadel.aem</groupId> <version>1.2.1</version> </parent> <name>${project.prettyName} Assets (Client Libraries)</name> <artifactId>aem-authoring-toolkit-assets</artifactId> <packaging>content-package</packaging> <properties> <sonar.skip>true</sonar.skip> </properties> <build> <sourceDirectory>src/main/content/jcr_root/apps/authoring-toolkit/depends-on/js</sourceDirectory> <resources> <resource> <directory>src/main/content/jcr_root</directory> <filtering>false</filtering> <excludes> <exclude>**/.vlt</exclude> <exclude>**/.vltignore</exclude> </excludes> </resource> <resource> <directory>${basedir}/src/main/content/META-INF</directory> <targetPath>../vault-work/META-INF</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile><id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile><id>install-assets</id> <build> <plugins> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <executions> <execution><id>build-assets</id> <phase>install</phase> <goals><goal>install</goal></goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>