magento-graphql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.commerce.cif</groupId> <artifactId>magento-graphql</artifactId> <version>11.1.0-magento244ee</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2018 Adobe. All rights reserved. This file is licensed to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <groupId>com.adobe.commerce.cif</groupId> <artifactId>magento-graphql</artifactId> <version>11.1.0-magento244ee</version> <packaging>bundle</packaging> <name>Magento GraphQL data models and query builders</name> <description>AEM bundle for the Magento GraphQL data models and query builders</description> <url>https://github.com/adobe/commerce-cif-magento-graphql</url> <scm> <connection>scm:git:https://github.com/adobe/commerce-cif-magento-graphql</connection> <developerConnection>scm:git:git@github.com:adobe/commerce-cif-magento-graphql.git</developerConnection> <url>https://github.com/adobe/commerce-cif-magento-graphql</url> <tag>magento-graphql-11.1.0-magento244ee</tag> </scm> <organization> <name>Adobe</name> <url>https://www.adobe.com</url> </organization> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <aem.host>localhost</aem.host> <aem.port>4502</aem.port> <aem.contextPath /> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>**/*</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.3.0</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package> com.adobe.cq.commerce.magento.graphql, com.adobe.cq.commerce.magento.graphql.gson, com.shopify.graphql.support </Export-Package> </instructions> </configuration> <executions> <execution> <id>baseline</id> <goals> <goal>baseline</goal> </goals> <configuration> <logResults>false</logResults> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <version>0.12</version> <configuration> <addDefaultLicenseMatchers>true</addDefaultLicenseMatchers> <excludes combine.children="append"> <!-- don't check anything in target --> <exclude>target/*</exclude> <exclude>README.md</exclude> <exclude>src/test/resources/**/*</exclude> <exclude>**/*.md</exclude> <exclude>.circleci/*</exclude> </excludes> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <!-- Maven release plugins --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.3.2</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.1</version> </dependency> </dependencies> <configuration> <scmCommentPrefix>@releng [maven-scm] :</scmCommentPrefix> <preparationGoals>clean install</preparationGoals> <goals>deploy</goals> </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>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <!-- Fixes JavaDoc build error with Java 11 --> <source>8</source> <quiet>true</quiet> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>maven-sling-plugin</artifactId> <version>2.1.0</version> <configuration> <slingUrl>http://${aem.host}:${aem.port}${aem.contextPath}/system/console</slingUrl> </configuration> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>2.9.0</version> <executions> <execution> <id>verify-code-formatting</id> <phase>verify</phase> <goals> <goal>validate</goal> </goals> <configuration> <configFile>eclipse-formatter.xml</configFile> <encoding>UTF-8</encoding> </configuration> </execution> </executions> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> <version>1.4.1</version> <configuration> <groups>java, javax, org</groups> <staticGroups>*</staticGroups> <staticAfter>true</staticAfter> <removeUnused>true</removeUnused> </configuration> <executions> <execution> <id>verify-import-sorting</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.annotation</artifactId> <version>6.0.1</version> <scope>provided</scope> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> <scope>test</scope> </dependency> </dependencies> <profiles> <!-- GPG Signature on release --> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>format-code</id> <build> <plugins> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>2.9.0</version> <executions> <execution> <id>format-code</id> <phase>compile</phase> <goals> <goal>format</goal> </goals> <configuration> <configFile>eclipse-formatter.xml</configFile> <encoding>UTF-8</encoding> </configuration> </execution> </executions> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> <version>1.4.1</version> <configuration> <groups>java, javax, org</groups> <staticGroups>*</staticGroups> <staticAfter>true</staticAfter> <removeUnused>true</removeUnused> </configuration> <executions> <execution> <id>sort-imports</id> <phase>compile</phase> <goals> <goal>sort</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <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> <developers> <developer> <name>Mark J. Becker</name> <email>mabecker@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> <developer> <name>Markus Haack</name> <email>mhaack@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> <developer> <name>Christophe Jelger</name> <email>jelger@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> <developer> <name>Daniel Platon</name> <email>platon@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> <developer> <name>Levente Santha</name> <email>sntha@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> </developers> </project>