com.smartling.aem.connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector</artifactId>
<version>5.9.41</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.parent</artifactId>
<version>5.9.41</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>com.smartling.aem.connector</artifactId>
<packaging>content-package</packaging>
<version>5.9.41</version>
<name>Smartling AEM Cloud Connector</name>
<description>Smartling Translation Connector for AEM Cloud</description>
<url>https://www.smartling.com/software/integrations/adobe-experience-manager/</url>
<scm>
<url>https://github.com/Smartling/aem6-translation-connector</url>
<connection>scm:git:git://github.com/Smartling/aem6-translation-connector.git</connection>
<developerConnection>scm:git:ssh://git@github.com/Smartling/aem6-translation-connector</developerConnection>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Smartling</name>
<organization>Smartling, Inc.</organization>
<url>https://www.smartling.com/</url>
<roles>
<role>Organization</role>
</roles>
</developer>
</developers>
<properties>
<install.application>/apps/smartling-connector-packages/application/install</install.application>
<install.content>/apps/smartling-connector-packages/content/install</install.content>
<vault.package.version>${project.version}</vault.package.version>
<vault.package.group>Smartling</vault.package.group>
<vault.package.company>Smartling</vault.package.company>
<aem.host>localhost</aem.host>
<aem.port>4502</aem.port>
<aem.user>admin</aem.user>
<aem.password>admin</aem.password>
<root.project.directory>${basedir}/../..</root.project.directory>
</properties>
<build>
<resources>
<!-- define the resources that will go into the package -->
<resource>
<directory>src/main/content/META-INF/vault/definition</directory>
<targetPath>../vault-work/META-INF/vault/definition</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>filevault-package-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<group>${vault.package.group}</group>
<name>Smartling-Translation-Connector</name>
<allowIndexDefinitions>true</allowIndexDefinitions>
<packageType>container</packageType>
<properties>
<description>
<![CDATA[
Smartling for Adobe Experience Manager Cloud<br>
The Smartling Translation Connector for AEM provides a seamless connection between Experience Manager and Smartling to create a powerful technology solution for creating multilingual content.<br>
For more information about Smartling visit <a href="www.smartling.com">www.smartling.com</a>.
]]>
</description>
<createdBy>${vault.package.company}</createdBy>
</properties>
<embeddeds>
<embedded>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.core</artifactId>
<target>${install.application}</target>
<type>jar</type>
</embedded>
<embedded>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.context</artifactId>
<target>${install.application}</target>
<type>jar</type>
</embedded>
<embedded>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.app</artifactId>
<target>${install.application}</target>
<type>zip</type>
</embedded>
<embedded>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.config</artifactId>
<target>${install.application}</target>
<type>zip</type>
</embedded>
<embedded>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.content</artifactId>
<target>${install.content}</target>
<type>zip</type>
</embedded>
</embeddeds>
</configuration>
</plugin>
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<verbose>true</verbose>
<failOnError>true</failOnError>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy-app</id>
<!--
when activated, this profile will deploy and install the built CQ package to the target server.
-->
<build>
<plugins>
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<executions>
<execution>
<id>install-package</id>
<goals>
<goal>install</goal>
</goals>
<configuration>
<failOnError>true</failOnError>
<packageFile>${project.build.directory}/${project.build.finalName}.zip</packageFile>
<targetURL>http://${aem.host}:${aem.port}/crx/packmgr/service.jsp</targetURL>
<userId>${aem.user}</userId>
<password>${aem.password}</password>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>gpg</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<gpgArguments>
<gpgArgument>--no-tty</gpgArgument>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>false</autoPublish>
<waitUntil>uploaded</waitUntil>
<checksums>required</checksums>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<id>cloudservice</id>
<build>
<plugins>
<plugin>
<groupId>com.adobe.aem</groupId>
<artifactId>aemanalyser-maven-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<id>analyse-project</id>
<phase>verify</phase>
<goals>
<goal>convert</goal>
<goal>aggregate</goal>
<goal>analyse</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>aem-sdk-api</artifactId>
<version>${aem.sdk.api.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.context</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.app</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.app.structure</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.config</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.smartling.aem</groupId>
<artifactId>com.smartling.aem.connector.content</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
</dependencies>
</project>