aem-authoring-toolkit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.exadel.aem</groupId> <artifactId>aem-authoring-toolkit</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> <groupId>com.exadel.aem</groupId> <artifactId>aem-authoring-toolkit</artifactId> <version>1.2.1</version> <name>${project.prettyName}</name> <description>Automates generating rich and responsive authoring interfaces for Adobe Experience Manager (TM) via Maven-powered build and deployment workflow</description> <url>https://github.com/exadel-inc/aem-authoring-toolkit</url> <organization> <name>Exadel, Inc.</name> <url>https://exadel.com</url> </organization> <developers> <developer> <id>edmtp</id> <name>Exadel DMTP Team</name> <organization>Exadel, Inc.</organization> <organizationUrl>https://exadel.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Europe/Minsk</timezone> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/exadel-inc/aem-authoring-toolkit.git</connection> <developerConnection>scm:git:git@github.com:exadel-inc/aem-authoring-toolkit.git</developerConnection> <url>https://github.com/exadel-inc/aem-authoring-toolkit</url> <tag>HEAD</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <issueManagement> <system>Github</system> <url>https://github.com/exadel-inc/aem-authoring-toolkit/issues</url> </issueManagement> <packaging>pom</packaging> <modules> <module>aem-authoring-toolkit-api</module> <module>aem-authoring-toolkit-plugin</module> <module>aem-authoring-toolkit-assets</module> </modules> <properties> <project.prettyName>AEM Authoring Toolkit</project.prettyName> <project.vendor>Exadel</project.vendor> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.jdkSpec>1.8</project.build.jdkSpec> <sonar.projectKey>${project.artifactId}</sonar.projectKey> <sonar.java.binaries>target/classes</sonar.java.binaries> <aem.host>localhost</aem.host> <aem.port>4502</aem.port> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <source>${project.build.jdkSpec}</source> <target>${project.build.jdkSpec}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.2</version> <configuration> <archive> <manifestEntries> <Built-By>${project.vendor}</Built-By> <Build-Jdk>${java.version}</Build-Jdk> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-Name>${project.name}</Bundle-Name> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Bundle-License>http://www.apache.org/licenses/LICENSE-2.0.txt</Bundle-License> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <configuration> <includeEmptyDirs>true</includeEmptyDirs> </configuration> </plugin> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <version>0.0.24</version> <extensions>true</extensions> <configuration> <group>${project.parent.artifactId}</group> <properties> <name>${project.name}</name> <description>${project.name}</description> <version>${project.version}</version> <packagePath>${project.artifactId}-${project.version}.zip</packagePath> </properties> <filterSource>src/main/content/META-INF/vault/filter.xml</filterSource> <targetURL>http://${aem.host}:${aem.port}/crx/packmgr/service.jsp</targetURL> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> <autoDropAfterRelease>true</autoDropAfterRelease> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile><id>test</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.5</version> <executions> <execution><id>agent</id> <goals><goal>prepare-agent</goal></goals> </execution> <execution><id>report</id> <goals><goal>report</goal></goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </profile> <profile><id>deploy</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution><id>attach-sources</id> <phase>package</phase> <goals><goal>jar-no-fork</goal></goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <encoding>UTF-8</encoding> </configuration> <executions> <execution><id>attach-javadoc</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution><id>sign-artifacts</id> <phase>verify</phase> <goals><goal>sign</goal></goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile><id>install-assets</id> <activation> <activeByDefault>false</activeByDefault> </activation> </profile> </profiles> <pluginRepositories> <pluginRepository> <id>adobe</id> <name>Adobe Public Repository</name> <url>http://repo.adobe.com/nexus/content/groups/public/</url> <layout>default</layout> </pluginRepository> </pluginRepositories> </project>