1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-05 23:22:51 +00:00

Add support for Eclipse 3.7 and implement HTMLParser in services

This commit adds support for Eclipse Indigo (3.7), with native
Maven2Eclipse (m2e). It also adds an HTML parser to be used while
uploading and downloading.
This commit is contained in:
2011-09-13 23:40:39 -03:00
parent 5406d14cbf
commit f39d3100c4
16 changed files with 624 additions and 195 deletions

28
pom.xml
View File

@@ -6,6 +6,20 @@
<version>1.0.0</version>
<name>Seedbox - HTTP Channel library</name>
<description>Library capable of downloading and uploading files from free servers using channels.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
@@ -21,7 +35,10 @@
<type>jar</type>
<scope>compile</scope>
<exclusions>
<exclusion><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId></exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
@@ -52,5 +69,14 @@
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.htmlparser</groupId>
<artifactId>htmlparser</artifactId>
<version>2.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
<modules>
</modules>
</project>