Skip to content

Instantly share code, notes, and snippets.

@denlunev
Created June 16, 2020 15:44
Show Gist options
  • Save denlunev/1e3a665497634637a1c6e4124668718c to your computer and use it in GitHub Desktop.
Save denlunev/1e3a665497634637a1c6e4124668718c to your computer and use it in GitHub Desktop.
hubspot-api
<?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.depositfix</groupId>
<artifactId>depositfix</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>hubspot-api</artifactId>
<packaging>jar</packaging>
<name>HubSpot API Module</name>
<!-- <repositories>-->
<!-- <repository>-->
<!-- <snapshots>-->
<!-- <enabled>false</enabled>-->
<!-- </snapshots>-->
<!-- <id>central</id>-->
<!-- <name>bintray</name>-->
<!-- <url>http://jcenter.bintray.com</url>-->
<!-- </repository>-->
<!-- </repositories>-->
<!-- <pluginRepositories>-->
<!-- <pluginRepository>-->
<!-- <snapshots>-->
<!-- <enabled>false</enabled>-->
<!-- </snapshots>-->
<!-- <id>central</id>-->
<!-- <name>bintray-plugins</name>-->
<!-- <url>http://jcenter.bintray.com</url>-->
<!-- </pluginRepository>-->
<!-- </pluginRepositories>-->
<!-- <distributionManagement>-->
<!-- <repository>-->
<!-- <id>bintray</id>-->
<!-- <url>https://api.bintray.com/maven/integrationagent/hubspot-java/hubspot-java</url>-->
<!-- </repository>-->
<!-- </distributionManagement>-->
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20190722</version>
</dependency>
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>1.3.26</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
<checkModificationExcludes>
<checkModificationExclude>src/test/resources/config.properties</checkModificationExclude>
<checkModificationExclude>pom.xml</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.jfrog.buildinfo</groupId>-->
<!-- <artifactId>artifactory-maven-plugin</artifactId>-->
<!-- <version>2.4.0</version>-->
<!-- <inherited>false</inherited>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>build-info</id>-->
<!-- <goals>-->
<!-- <goal>publish</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- <publisher>-->
<!-- <contextUrl>http://45.55.198.73:8081/artifactory</contextUrl>-->
<!-- <username>${username}</username>-->
<!-- <password>${password}</password>-->
<!-- <repoKey>integration-agent-releases</repoKey>-->
<!-- <snapshotRepoKey>integration-agent-snapshots</snapshotRepoKey>-->
<!-- </publisher>-->
<!-- </configuration>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
</plugins>
</build>
<!-- <profiles>-->
<!-- <profile>-->
<!-- <id>release</id>-->
<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <artifactId>maven-source-plugin</artifactId>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>attach-sources</id>-->
<!-- <goals>-->
<!-- <goal>jar</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
<!-- </profile>-->
<!-- </profiles>-->
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment