google-merchant-center-mule-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.viplgoswami1</groupId>
<artifactId>google-merchant-center-mule-connector</artifactId>
<version>1.0.4</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.viplgoswami1</groupId>
<artifactId>google-merchant-center-mule-connector</artifactId>
<version>1.0.4</version>
<packaging>jar</packaging>
<name>Google Merchant Center MuleSoft Connector</name>
<description>MuleSoft custom connector for Google Merchant Center Products API. Supports OAuth 2.0 and Bearer token authentication.</description>
<url>https://github.com/viplgoswami1/google-merchant-center-connector</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>viplgoswami1</id>
<name>Viplove Goswami</name>
<email>viplovegoswami3013@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/viplgoswami1/google-merchant-center-connector.git</connection>
<developerConnection>scm:git:ssh://github.com/viplgoswami1/google-merchant-center-connector.git</developerConnection>
<url>https://github.com/viplgoswami1/google-merchant-center-connector</url>
</scm>
<!--
CRITICAL: These dependencies tell Mule Runtime what to download
when the connector is used. Without this, Mule cannot find Jackson
and throws NoClassDefFoundError: com/fasterxml/jackson/databind/ObjectMapper
-->
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.15.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.15.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.15.2</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.11.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</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>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</project>