ch-mirakl-integrator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.chtsinc</groupId> <artifactId>ch-mirakl-integrator</artifactId> <version>0.0.1</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> <groupId>com.chtsinc</groupId> <artifactId>ch-mirakl-integrator</artifactId> <name>ch-mirakl-integrator</name> <version>0.0.1</version> <description>Defines Charles Hudson integrator components for Mirakl seller APIs.</description> <url>http://www.chtsinc.com/cloud</url> <developers> <developer> <name>Raju Thomas</name> <organization>CH</organization> <roles> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <licenses> <license> <name>CH License</name> <url>http://www.chtsinc.com/licenses/license.txt</url> </license> </licenses> <scm> <url>https://bitbucket.org/chts_cloudification/ch-mirakl-integrator</url> </scm> <build> <resources> <resource> <directory>resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <transformers> <transformer /> <transformer> <mainClass>${mainClass}</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <version>2.10</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <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> </build> <repositories> <repository> <id>mirakl-ext-repo</id> <name>Mirakl External Tools Repository</name> <url>https://artifactory.mirakl.net/artifactory/mirakl-ext-repo/</url> </repository> </repositories> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding> <encoding>UTF-8</encoding> <project.resources.sourceEncoding>${encoding}</project.resources.sourceEncoding> <project.build.sourceEncoding>${encoding}</project.build.sourceEncoding> <LAST_MIRAKL_SDK_VERSION>4.31.0</LAST_MIRAKL_SDK_VERSION> </properties> </project>