crawler4j-examples-postgres
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>edu.uci.ics</groupId>
<artifactId>crawler4j-examples-postgres</artifactId>
<version>4.4.0</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">
<parent>
<artifactId>crawler4j-parent</artifactId>
<groupId>edu.uci.ics</groupId>
<version>4.4.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<name>${project.groupId}:${project.artifactId}</name>
<description>Open Source Web Crawler for Java - example with jdbc and Postgres</description>
<url>https://github.com/yasserg/crawler4j</url>
<artifactId>crawler4j-examples-postgres</artifactId>
<modelVersion>4.0.0</modelVersion>
<properties>
<!-- 3rd party libs -->
<postgresql.version>42.2.1</postgresql.version>
<c3p0.version>0.9.5.2</c3p0.version>
</properties>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-palantir-releases</id>
<name>bintray</name>
<url>https://palantir.bintray.com/releases</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-palantir-releases</id>
<name>bintray-plugins</name>
<url>https://palantir.bintray.com/releases</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>${c3p0.version}</version>
</dependency>
<dependency>
<groupId>edu.uci.ics</groupId>
<artifactId>crawler4j</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>5.0.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.palantir.docker.compose/docker-compose-rule-junit4 -->
<dependency>
<groupId>com.palantir.docker.compose</groupId>
<artifactId>docker-compose-rule-junit4</artifactId>
<scope>test</scope>
<version>0.33.0</version>
</dependency>
</dependencies>
</project>