2019-09-12 16:39:42 -04:00
|
|
|
<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>
|
2021-11-29 16:00:22 -05:00
|
|
|
<groupId>com.ossez.usreio</groupId>
|
2021-11-30 13:26:05 -05:00
|
|
|
<artifactId>rets-io</artifactId>
|
2021-11-29 15:55:58 -05:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2021-11-30 13:26:05 -05:00
|
|
|
<packaging>pom</packaging>
|
2019-09-12 16:39:42 -04:00
|
|
|
|
2021-11-30 13:26:05 -05:00
|
|
|
<name>Rets-Io</name>
|
2021-11-29 15:55:58 -05:00
|
|
|
<description>The RETS API is a Reference Implementation API for RETS Transactions written in Java and can be used as
|
|
|
|
an API by web-based and desktop RETS Client Applications.
|
|
|
|
</description>
|
|
|
|
<url>https://github.com/USRealEstate/rets-io-client.git</url>
|
2019-09-23 07:41:17 -04:00
|
|
|
|
2021-11-29 15:55:58 -05:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>YuCheng Hu</name>
|
|
|
|
<id>honeymoose</id>
|
|
|
|
<email>huyuchengus@gmail.com</email>
|
|
|
|
<timezone>-5</timezone>
|
|
|
|
<organization>Open Source</organization>
|
|
|
|
<roles>
|
|
|
|
<role>Sr. Java Developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2019-09-23 07:41:17 -04:00
|
|
|
|
2022-10-17 13:59:50 -04:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT license</name>
|
|
|
|
<url>https://opensource.org/licenses/mit-license.php</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>ossez-repo</id>
|
|
|
|
<url>https://repo.ossez.com/repository/maven-releases/</url>
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossez-repo</id>
|
|
|
|
<url>https://repo.ossez.com/repository/maven-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2021-11-30 13:26:05 -05:00
|
|
|
<modules>
|
|
|
|
<module>rets-io-common</module>
|
|
|
|
<module>rets-io-client</module>
|
|
|
|
</modules>
|
2019-09-12 16:39:42 -04:00
|
|
|
|
|
|
|
<dependencies>
|
2019-09-24 22:46:50 -04:00
|
|
|
<!-- LOG -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>${logback.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-11-29 16:04:17 -05:00
|
|
|
<!-- APACHE COMMONS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</dependency>
|
2021-12-02 11:35:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
2021-11-29 16:04:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
2021-11-29 16:07:10 -05:00
|
|
|
<version>1.10.11</version>
|
2021-11-29 16:04:17 -05:00
|
|
|
</dependency>
|
2019-09-23 07:41:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.9</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2021-11-29 16:08:15 -05:00
|
|
|
<version>4.5.13</version>
|
2019-09-23 07:41:17 -04:00
|
|
|
</dependency>
|
|
|
|
|
2021-12-02 11:35:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2022-07-06 08:47:39 -04:00
|
|
|
<version>${guava.version}</version>
|
2021-12-02 11:35:49 -05:00
|
|
|
</dependency>
|
2019-09-12 16:39:42 -04:00
|
|
|
<dependency>
|
2019-09-22 23:20:09 -04:00
|
|
|
<groupId>org.dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
2022-07-06 08:47:39 -04:00
|
|
|
<version>2.1.3</version>
|
2019-09-12 16:39:42 -04:00
|
|
|
</dependency>
|
2021-11-29 16:04:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>xalan</groupId>
|
|
|
|
<artifactId>xalan</artifactId>
|
|
|
|
<version>2.7.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>javax.activation-api</artifactId>
|
|
|
|
<version>1.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
2019-09-22 10:10:55 -04:00
|
|
|
|
|
|
|
<!-- TEST -->
|
2019-09-12 16:39:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2022-07-06 08:47:39 -04:00
|
|
|
<version>4.13.1</version>
|
2019-09-12 16:39:42 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-11-29 16:04:17 -05:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>5.7.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.7.0</version>
|
|
|
|
<scope>test</scope>
|
2019-09-12 16:39:42 -04:00
|
|
|
</dependency>
|
2019-09-23 07:41:17 -04:00
|
|
|
|
2021-11-29 16:04:17 -05:00
|
|
|
|
2019-09-12 16:39:42 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2021-11-29 15:55:58 -05:00
|
|
|
<defaultGoal>package</defaultGoal>
|
2019-09-12 16:39:42 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<targetPath>../filtered-sources/java</targetPath>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2021-11-29 15:55:58 -05:00
|
|
|
|
2019-09-12 16:39:42 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>all-jobs</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<finalName>trulia-java-rets-client-${env}</finalName>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
2021-11-29 15:55:58 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-11-24 13:24:16 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<release>${java.version}</release>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
2021-11-29 15:55:58 -05:00
|
|
|
|
2019-09-12 16:39:42 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-11-24 13:24:16 -05:00
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- Generic properties -->
|
|
|
|
<java.version>11</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
|
|
<!-- Logging -->
|
|
|
|
<slf4j.version>1.7.30</slf4j.version>
|
|
|
|
<log4j.version>1.2.17</log4j.version>
|
|
|
|
<log4j2.version>2.2</log4j2.version>
|
2021-11-29 15:55:58 -05:00
|
|
|
<logback.version>1.2.5</logback.version>
|
2021-11-24 13:24:16 -05:00
|
|
|
|
|
|
|
<!-- APACHE COMMONS-->
|
|
|
|
<commons-io.version>2.11.0</commons-io.version>
|
|
|
|
<commons-lang.version>2.6</commons-lang.version>
|
|
|
|
<commons-lang3.version>3.11</commons-lang3.version>
|
|
|
|
<commons-cli.version>1.4</commons-cli.version>
|
2021-11-24 13:37:37 -05:00
|
|
|
<commons-httpclient.version>4.5.13</commons-httpclient.version>
|
|
|
|
|
|
|
|
|
2021-11-24 13:24:16 -05:00
|
|
|
<!-- UTILS -->
|
2022-07-06 08:47:39 -04:00
|
|
|
<guava.version>31.1-jre</guava.version>
|
2021-11-24 13:24:16 -05:00
|
|
|
|
|
|
|
<!-- Hibernate / JPA -->
|
|
|
|
<hibernate.version>4.3.5.Final</hibernate.version>
|
|
|
|
|
|
|
|
<!-- Bean validation -->
|
|
|
|
<hibernate-validator.version>4.3.1.Final</hibernate-validator.version>
|
|
|
|
|
|
|
|
<!-- Database access -->
|
|
|
|
<tomcat-jdbc.version>7.0.42</tomcat-jdbc.version>
|
|
|
|
<ehcache.version>2.6.8</ehcache.version>
|
|
|
|
<hsqldb.version>2.3.2</hsqldb.version>
|
|
|
|
|
|
|
|
<!-- DATA STRUCTURES -->
|
|
|
|
<jackson.version>2.12.4</jackson.version>
|
|
|
|
|
|
|
|
<!-- Test -->
|
|
|
|
<hamcrest.version>2.2</hamcrest.version>
|
|
|
|
<hamcrest-all.version>1.3</hamcrest-all.version>
|
|
|
|
|
|
|
|
<!-- CDN & CLOUD -->
|
|
|
|
<jclouds.version>1.9.0</jclouds.version>
|
|
|
|
<modelmapper.version>2.4.4</modelmapper.version>
|
|
|
|
<lombok.version>1.18.20</lombok.version>
|
|
|
|
<moneta.version>1.3</moneta.version>
|
|
|
|
<jmh-core.version>1.33</jmh-core.version>
|
|
|
|
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
|
|
|
|
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
|
|
|
|
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
2021-11-24 13:37:37 -05:00
|
|
|
<maven-war-plugin.version>3.0.0</maven-war-plugin.version>
|
|
|
|
|
2021-11-24 13:24:16 -05:00
|
|
|
</properties>
|
|
|
|
|
2021-11-29 15:47:30 -05:00
|
|
|
</project>
|