Skip to content

Commit

Permalink
Merge pull request #1 from flyingelephantlab/YJB-274
Browse files Browse the repository at this point in the history
YJB-274:
  • Loading branch information
nabilm committed May 10, 2015
2 parents 95be562 + 9691db9 commit f08ded4
Show file tree
Hide file tree
Showing 7 changed files with 966 additions and 688 deletions.
20 changes: 20 additions & 0 deletions MakeFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
MAVEN=mvn

all: package

compile:
$(MAVEN) compile

package:
$(MAVEN) package

check:
$(MAVEN) test

install:
$(MAVEN) install

clean:
$(MAVEN) clean

.PHONY: compile package dist clean install dist
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<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>edu.uci.ics</groupId>
<groupId>com.flyingelephantlab.crawler4j</groupId>
<artifactId>crawler4j</artifactId>
<packaging>jar</packaging>
<name>crawler4j</name>
Expand Down Expand Up @@ -141,6 +141,12 @@
<version>1.5</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-htmlunit-driver</artifactId>
<version>2.35.0</version>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
Loading

0 comments on commit f08ded4

Please sign in to comment.