com.adobe.granite.translation.connector.msft.core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.translation.connector.msft.core</artifactId> <version>1.0.20</version> </dependency>
<?xml version="1.0"?><!-- /************************************************************************* * * ADOBE CONFIDENTIAL * __________________ * * Copyright 2014 Adobe Systems Incorporated * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Adobe Systems Incorporated and its suppliers, * if any. The intellectual and technical concepts contained * herein are proprietary to Adobe Systems Incorporated and its * suppliers and are protected by trade secret or copyright law. * Dissemination of this information or reproduction of this material * is strictly forbidden unless prior written permission is obtained * from Adobe Systems Incorporated. **************************************************************************/ --> <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> <!-- ======================================================================= --> <!-- P A R E N T P R O J E C T --> <!-- ======================================================================= --> <parent> <groupId>com.adobe.granite</groupId> <artifactId>parent</artifactId> <version>35</version> <relativePath /> </parent> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <artifactId>com.adobe.granite.translation.connector.msft.core</artifactId> <version>1.0.20</version> <packaging>bundle</packaging> <name>Granite Translation - Microsoft Connector Core Bundle</name> <description>Bundle for Microsoft Connector implementation of the Granite Translation API</description> <properties> <api.version>1.0.18</api.version> <core.version>1.0.14</core.version> <granite.java.version>6</granite.java.version> </properties> <scm> <connection>scm:git:git@git.corp.adobe.com:Granite/com.adobe.granite.translation.connector.msft.core.git</connection> <developerConnection>scm:git:git@git.corp.adobe.com:Granite/com.adobe.granite.translation.connector.msft.core.git</developerConnection> <url>https://git.corp.adobe.com/Granite/com.adobe.granite.translation.connector.msft.core/tree/master/</url> <tag>com.adobe.granite.translation.connector.msft.core-1.0.20</tag> </scm> <!-- ====================================================================== --> <!-- B U I L D D E F I N I T I O N --> <!-- ====================================================================== --> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Category>granite</Bundle-Category> <Private-Package> com.adobe.granite.translation.connector.msft.core.impl, com.adobe.granite.translation.connector.msft.core.impl.config, com.adobe.granite.translation.connector.msft.core.impl.util </Private-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <executions> <execution> <id>generate-scr-scrdescriptor</id> <goals> <goal>scr</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <!-- ================================================================== --> <!-- D E P E N D E N C I E S --> <!-- ================================================================== --> <dependencies> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.commons.osgi</artifactId> <version>2.2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.commons.json</artifactId> <version>2.0.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.xssprotection</artifactId> <version>5.5.14</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.crypto</artifactId> <version>1.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.8.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-jcr-commons</artifactId> <version>2.7.3</version> </dependency> <!-- the Translation API --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>com.adobe.granite.translation.api</artifactId> <version>${api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>com.adobe.granite.translation.core</artifactId> <version>${core.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>