Commit 67299113 authored by Alexander Ross Melnick's avatar Alexander Ross Melnick
Browse files

Set up external libraries

parent de9f941b
Loading
Loading
Loading
Loading

.vscode/settings.json

0 → 100644
+4 −0
Original line number Diff line number Diff line
{
    "java.configuration.updateBuildConfiguration": "automatic",
    "java.compile.nullAnalysis.mode": "automatic"
}
 No newline at end of file
+3 −0
Original line number Diff line number Diff line
# Group6

## Libraries used:
jsoup - https://jsoup.org/
crawler4j - https://github.com/yasserg/crawler4j


## Getting started

pom.xml

0 → 100644
+48 −0
Original line number Diff line number Diff line
<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>com.example</groupId>
  <artifactId>my-project</artifactId>
  <version>1.0</version>

  <repositories>
    <repository>
      <id>central</id>
      <name>Maven Repository Switchboard</name>
      <layout>default</layout>
      <url>https://repo.maven.apache.org/maven2</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

  <dependencies>
    <dependency>
      <!-- jsoup HTML parser library @ https://jsoup.org/ -->
      <groupId>org.jsoup</groupId>
      <artifactId>jsoup</artifactId>
      <version>1.17.2</version>
    </dependency>
    <dependency>
      <groupId>edu.uci.ics</groupId>
      <artifactId>crawler4j</artifactId>
      <version>4.4.0</version>
      <exclusions>
        <exclusion>
          <groupId>com.sleepycat</groupId>
          <artifactId>je</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
        <groupId>com.sleepycat</groupId>
        <artifactId>je</artifactId>
        <version>18.3.12</version> <!-- Hope this newer version is compatible with crawler4j -->
    </dependency>

  <!-- other dependencies -->
</dependencies>
</project>
 No newline at end of file
+3 −0
Original line number Diff line number Diff line
artifactId=my-project
groupId=com.example
version=1.0
+1.56 KiB

File added.

No diff preview for this file type.