[jboss-cvs] Repository SVN: r22566 - in maven2/net/sourceforge: cssparser/cssparser and 9 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 23 12:48:44 EST 2009


Author: stan.silvert at jboss.com
Date: 2009-02-23 12:48:44 -0500 (Mon, 23 Feb 2009)
New Revision: 22566

Added:
   maven2/net/sourceforge/cssparser/cssparser/0.9.5/
   maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar
   maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar.sha1
   maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom
   maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom.sha1
   maven2/net/sourceforge/htmlunit/htmlunit-core-js/
   maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/
   maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar
   maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar.sha1
   maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom
   maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom.sha1
   maven2/net/sourceforge/htmlunit/htmlunit/2.4/
   maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar
   maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar.sha1
   maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom
   maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom.sha1
   maven2/net/sourceforge/nekohtml/
   maven2/net/sourceforge/nekohtml/nekohtml/
   maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/
   maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar
   maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar.sha1
   maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom
   maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom.sha1
Log:
Add nekohtml 1.9.9, htmlunit 2.4, and cssparser 0.9.5


Added: maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar
===================================================================
(Binary files differ)


Property changes on: maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar.sha1
===================================================================
--- maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar.sha1	                        (rev 0)
+++ maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.jar.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+7222f4a7e50fc57a88a546a228088524bdbbdaea
\ No newline at end of file

Added: maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom
===================================================================
--- maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom	                        (rev 0)
+++ maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1,119 @@
+<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>
+	<groupId>net.sourceforge.cssparser</groupId>
+	<artifactId>cssparser</artifactId>
+	<version>0.9.5</version>
+	<name>CSS Parser</name>
+	<url>http://cssparser.sourceforge.net/</url>
+	<description>A CSS parser which implements SAC (the Simple API for CSS).</description>
+	<licenses>
+		<license>
+			<name>GNU Lesser General Public License</name>
+			<url>http://www.gnu.org/licenses/lgpl.txt</url>
+		</license>
+	</licenses>
+	<issueManagement>
+		<system>SourceForge</system>
+		<url>http://sourceforge.net/tracker/?group_id=82996</url>
+	</issueManagement>
+	<scm>
+		<url>http://cssparser.cvs.sourceforge.net/cssparser</url>
+	</scm>
+	<distributionManagement>
+		<repository>
+			<id>cssparser-m2-repo</id>
+			<name>CSS Parser Maven 2 Repository</name>
+			<url>scp://shell.sourceforge.net/home/groups/c/cs/cssparser/htdocs/m2-repo</url>
+		</repository>
+		<snapshotRepository>
+			<id>cssparser-m2-snapshot-repo</id>
+			<name>CSS Parser Maven 2 Snapshot Repository</name>
+			<url>scp://shell.sourceforge.net/home/groups/c/cs/cssparser/htdocs/m2-snapshot-repo</url>
+		</snapshotRepository>
+	</distributionManagement>
+	<build>
+		<plugins>
+			<plugin>
+				<!-- set Java 5 as the minimum requirement -->
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<!-- generate parsers and lexers before compiling -->
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>javacc-maven-plugin</artifactId>
+				<version>2.4</version>
+				<executions>
+					<execution>
+						<id>javacc</id>
+						<goals>
+							<goal>javacc</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<!-- always generate a source JAR -->
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<phase>verify</phase>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-changes-plugin</artifactId>
+				<reportSets>
+					<reportSet>
+						<reports>
+							<report>changes-report</report>
+						</reports>
+					</reportSet>
+				</reportSets>
+				<configuration>
+					<issueLinkTemplate>%URL%?group_id=82996&amp;func=detail&amp;atid=567969&amp;aid=%ISSUE%</issueLinkTemplate>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<configuration>
+					<links>
+						<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+						<link>http://www.w3.org/Style/CSS/SAC/doc/</link>
+					</links>
+				</configuration>
+			</plugin>
+		</plugins>
+	</reporting>
+	<dependencies>
+		<dependency>
+			<groupId>org.w3c.css</groupId>
+			<artifactId>sac</artifactId>
+			<version>1.3</version>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.4</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+</project>

Added: maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom.sha1
===================================================================
--- maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom.sha1	                        (rev 0)
+++ maven2/net/sourceforge/cssparser/cssparser/0.9.5/cssparser-0.9.5.pom.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+3186add062402bc1e55abce477cd41638639e8f4
\ No newline at end of file

Added: maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar
===================================================================
(Binary files differ)


Property changes on: maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar.sha1
===================================================================
--- maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar.sha1	                        (rev 0)
+++ maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.jar.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+f594d2fc4db95916f8c355bfb46b24ede1dd195c
\ No newline at end of file

Added: maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom
===================================================================
--- maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom	                        (rev 0)
+++ maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1,595 @@
+<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>
+    <artifactId>htmlunit</artifactId>
+    <groupId>net.sourceforge.htmlunit</groupId>
+    <version>2.4</version>
+    <name>HtmlUnit</name>
+    <organization>
+        <name>Gargoyle Software Inc.</name>
+        <url>http://www.GargoyleSoftware.com/</url>
+    </organization>
+    <packaging>jar</packaging>
+    <description>A headless browser intended for use in testing web-based applications.</description>
+    <url>http://htmlunit.sourceforge.net</url>
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <!-- Update the links reference in javadoc, PDM and clover plugins when this changes -->
+                    <source>1.5</source>
+                    <target>1.5</target>
+                    <testExcludes>
+                        <exclude>**/CodeChecker.java</exclude>
+                        <exclude>**/*WebDriver*.java</exclude>
+                    </testExcludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <configLocation>checkstyle.xml</configLocation>
+                    <suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation>
+                    <includeTestSourceDirectory>true</includeTestSourceDirectory>
+                    <consoleOutput>true</consoleOutput>
+                    <failsOnError>true</failsOnError>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <templateFile>${basedir}/src/site/maven-site.vm</templateFile>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <descriptors>
+                        <descriptor>${basedir}/src/assembly/bin-distribution.xml</descriptor>
+                        <descriptor>${basedir}/src/assembly/src-distribution.xml</descriptor>
+                    </descriptors>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>moveFiles</id>
+                        <phase>package</phase>
+                        <configuration>
+                            <tasks>
+                                <mkdir dir="${basedir}/artifacts"/>
+                                <delete includeemptydirs="true">
+                                    <fileset dir="${basedir}/artifacts" includes="**/*"/>
+                                </delete>
+                                <copy todir="${basedir}/artifacts">
+                                    <fileset dir="${basedir}/target">
+                                        <include name="*.jar"/>
+                                        <include name="*.zip"/>
+                                        <exclude name="*-src.zip"/>
+                                    </fileset>
+                                </copy>
+                                <move file="${basedir}/artifacts/${project.artifactId}-${project.version}.zip"
+                                    tofile="${basedir}/artifacts/${project.artifactId}-${project.version}-with-dependencies.zip"
+                                    failonerror="false"/>
+                            </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/WebDriverOldTestsTest.java</exclude>
+                    </excludes>
+                    <argLine>-Xmx512m -Xms128m</argLine>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <excludePackageNames>com.gargoylesoftware.htmlunit.javascript:com.gargoylesoftware.htmlunit.protocol:com.gargoylesoftware.htmlunit.ssl:com.gargoylesoftware.htmlunit.html.xpath:com.gargoylesoftware.htmlunit.html.applets</excludePackageNames>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                        <link>http://commons.apache.org/logging/apidocs/</link>
+                        <link>http://commons.apache.org/codec/apidocs/</link>
+                        <link>http://hc.apache.org/httpclient-3.x/apidocs/</link>
+                    </links>
+                    <stylesheet>maven</stylesheet>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jxr-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <configuration>
+                    <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changelog-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changes-plugin</artifactId>
+                <version>2.1</version>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>changes-report</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+                <configuration>
+                    <issueLinkTemplate>
+                        http://sourceforge.net/support/tracker.php?aid=%ISSUE%
+                    </issueLinkTemplate>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jdepend-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+    <issueManagement>
+        <system>sourceforge</system>
+        <url>http://sourceforge.net/tracker/?group_id=47038</url>
+    </issueManagement>
+    <inceptionYear>2002</inceptionYear>
+    <licenses>
+        <license>
+            <name>Apache License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <scm>
+        <connection>scm:svn:https://htmlunit.svn.sourceforge.net/svnroot/htmlunit/trunk/htmlunit</connection>
+        <developerConnection>scm:svn:https://htmlunit.svn.sourceforge.net/svnroot/htmlunit/trunk/htmlunit</developerConnection>
+        <url>http://htmlunit.svn.sourceforge.net/viewvc/htmlunit</url>
+    </scm>
+    <ciManagement>
+        <system>Cruise Control</system>
+        <url>http://build.canoo.com/htmlunit</url>
+    </ciManagement>
+    <mailingLists>
+        <mailingList>
+            <name>HtmlUnit Users</name>
+            <subscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-user</subscribe>
+            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-user</unsubscribe>
+            <archive>http://lists.sourceforge.net/lists/listinfo/htmlunit-user</archive>
+            <post>htmlunit-user at lists.sourceforge.net</post>
+        </mailingList>
+        <mailingList>
+            <name>HtmlUnit Developers</name>
+            <subscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-develop</subscribe>
+            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/htmlunit-develop</unsubscribe>
+            <archive>http://lists.sourceforge.net/lists/listinfo/htmlunit-develop</archive>
+            <post>htmlunit-develop at lists.sourceforge.net</post>
+        </mailingList>
+    </mailingLists>
+    <developers>
+        <developer>
+            <name>Mike Bowler</name>
+            <id>mbowler</id>
+            <email>mbowler at GargoyleSoftware.com</email>
+            <organization>Gargoyle Software Inc.</organization>
+            <url>http://www.sphericalimprovement.com/blogs/mbowler/</url>
+            <timezone>-5</timezone>
+        </developer>
+        <developer>
+            <name>David K. Taylor</name>
+            <id>dktaylor</id>
+        </developer>
+        <developer>
+            <name>Brad Clarke</name>
+            <id>yourgod</id>
+            <email>yourgod at users.sourceforge.net</email>
+            <url>http://www.bradclarke.com/</url>
+            <timezone>-6</timezone>
+        </developer>
+        <developer>
+            <name>Marc Guillemot</name>
+            <id>mguillem</id>
+            <email>mguillem at users.sourceforge.net</email>
+            <url>http://mguillem.wordpress.com/</url>
+            <timezone>+1</timezone>
+        </developer>
+        <developer>
+            <name>Chris Erskine</name>
+            <id>cerskine</id>
+            <email>cerskine at users.sourceforge.net</email>
+            <timezone>-7</timezone>
+        </developer>
+        <developer>
+            <name>Daniel Gredler</name>
+            <id>sdanig</id>
+            <email>sdanig at users.sourceforge.net</email>
+            <url>http://daniel.gredler.net/</url>
+            <timezone>-5</timezone>
+        </developer>
+        <developer>
+            <name>Ahmed Ashour</name>
+            <id>asashour</id>
+            <email>asashour at users.sourceforge.net</email>
+            <timezone>+3</timezone>
+        </developer>
+        <developer>
+            <name>Sudhan Moghe</name>
+            <id>sudhan_moghe</id>
+            <email>sudhan_moghe at users.sourceforge.net</email>
+            <timezone>+5.5</timezone>
+        </developer>
+    </developers>
+    <contributors>
+        <contributor>
+            <name>Noboru Sinohara</name>
+        </contributor>
+        <contributor>
+            <name>Mike J. Bresnahan</name>
+            <email>gudujarlson at sf.net</email>
+        </contributor>
+        <contributor>
+            <name>Dominique Broeglin</name>
+        </contributor>
+        <contributor>
+            <name>Alex Nikiforoff</name>
+        </contributor>
+        <contributor>
+            <name>Barnaby Court</name>
+        </contributor>
+        <contributor>
+            <name>Andreas Hangler</name>
+        </contributor>
+        <contributor>
+            <name>Jun Chen</name>
+            <email>chen_jun at users.sourceforge.net</email>
+        </contributor>
+        <contributor>
+            <name>Christian Sell</name>
+            <email>cse at dynabean.de</email>
+        </contributor>
+        <contributor>
+            <name>Darrell DeBoer</name>
+        </contributor>
+        <contributor>
+            <name>David D. Kilzer</name>
+        </contributor>
+        <contributor>
+            <name>Ben Curren</name>
+            <email>bcurren at esomnie.com</email>
+        </contributor>
+        <contributor>
+            <name>Mike Williams</name>
+        </contributor>
+        <contributor>
+            <name>Mike Gallaher</name>
+        </contributor>
+        <contributor>
+            <name>Dierk Koenig</name>
+        </contributor>
+        <contributor>
+            <name>Mike Bresnahan</name>
+        </contributor>
+        <contributor>
+            <name>Sergey Gorelkin</name>
+        </contributor>
+        <contributor>
+            <name>Chris Eldredge</name>
+        </contributor>
+        <contributor>
+            <name>Hans Donner</name>
+        </contributor>
+        <contributor>
+            <name>Michael Ottati</name>
+        </contributor>
+        <contributor>
+            <name>George Murnock</name>
+        </contributor>
+        <contributor>
+            <name>Kent Tong</name>
+        </contributor>
+        <contributor>
+            <name>Alfred Nathaniel</name>
+        </contributor>
+        <contributor>
+            <name>Bruce Faulkner</name>
+        </contributor>
+        <contributor>
+            <name>Ray Suliteanu</name>
+        </contributor>
+        <contributor>
+            <name>Denis N. Antonioli</name>
+        </contributor>
+        <contributor>
+            <name>Stefan Anzinger</name>
+        </contributor>
+        <contributor>
+            <name>Lothar Märkle</name>
+        </contributor>
+        <contributor>
+            <name>Ian Lovejoy</name>
+        </contributor>
+        <contributor>
+            <name>Paul King</name>
+        </contributor>
+        <contributor>
+            <name>Vikram Shitole</name>
+        </contributor>
+        <contributor>
+            <name>Mark van Leeuwen</name>
+        </contributor>
+        <contributor>
+            <name>Brad Murray</name>
+        </contributor>
+        <contributor>
+            <name>Julien Henry</name>
+        </contributor>
+        <contributor>
+            <name>Andre Soereng</name>
+        </contributor>
+        <contributor>
+            <name>Karel Kolman</name>
+        </contributor>
+        <contributor>
+            <name>Bruce Chapman</name>
+        </contributor>
+        <contributor>
+            <name>Kristian Muntau</name>
+        </contributor>
+        <contributor>
+            <name>Sam Hough</name>
+        </contributor>
+        <contributor>
+            <name>Deryk Sinotte</name>
+        </contributor>
+        <contributor>
+            <name>Martin Tamme</name>
+        </contributor>
+        <contributor>
+            <name>Philip Graf</name>
+        </contributor>
+        <contributor>
+            <name>Rodney Gitzel</name>
+        </contributor>
+        <contributor>
+            <name>Matt Ryall</name>
+        </contributor>
+        <contributor>
+            <name>Rob Di Marco</name>
+        </contributor>
+        <contributor>
+            <name>Gareth Davis</name>
+        </contributor>
+        <contributor>
+            <name>David Bylsma</name>
+        </contributor>
+        <contributor>
+            <name>Dmitri Zoubkov</name>
+        </contributor>
+        <contributor>
+            <name>Stuart Begg</name>
+        </contributor>
+        <contributor>
+            <name>Rene Schwietzke</name>
+        </contributor>
+        <contributor>
+            <name>Ethan Glasser-Camp</name>
+        </contributor>
+        <contributor>
+            <name>Marco Cova</name>
+        </contributor>
+        <contributor>
+            <name>Mike Dirolf</name>
+        </contributor>
+        <contributor>
+            <name>Mirko Friedenhagen</name>
+        </contributor>
+    </contributors>
+    <dependencies>
+        <dependency>
+            <groupId>xalan</groupId>
+            <artifactId>xalan</artifactId>
+            <version>2.7.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
+            <version>3.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>1.3</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.htmlunit</groupId>
+            <artifactId>htmlunit-core-js</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.nekohtml</groupId>
+            <artifactId>nekohtml</artifactId>
+            <version>1.9.11</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.cssparser</groupId>
+            <artifactId>cssparser</artifactId>
+            <version>0.9.5</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>1.4</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+        <!-- Test dependencies. -->
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.14</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>gsbase</groupId>
+            <artifactId>gsbase</artifactId>
+            <version>2.0.1</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+            <version>1.2.1</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mortbay.jetty</groupId>
+            <artifactId>jetty</artifactId>
+            <version>6.1.14</version>
+            <scope>test</scope>
+        </dependency>
+        <!-- The presence of slf4j on the classpath during the unit tests triggers correct logging in Jetty. -->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>1.4.3</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <version>1.4.3</version>
+            <scope>test</scope>
+        </dependency>
+        <!-- WebDriver -->
+        <dependency>
+            <groupId>org.openqa.selenium.webdriver</groupId>
+            <artifactId>webdriver-htmlunit</artifactId>
+            <version>0.5.524</version>
+            <scope>test</scope>
+                <exclusions>
+                    <exclusion>
+                        <groupId>net.sourceforge.htmlunit</groupId>
+                        <artifactId>htmlunit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.openqa.selenium.webdriver</groupId>
+            <artifactId>webdriver-firefox</artifactId>
+            <version>0.5.524</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.openqa.selenium.webdriver</groupId>
+            <artifactId>webdriver-ie</artifactId>
+            <version>0.5.524</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jdt</groupId>
+            <artifactId>core</artifactId>
+            <version>3.4.2.v_883_R34x</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.equinox</groupId>
+            <artifactId>common</artifactId>
+            <version>3.3.0-v20070426</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <distributionManagement>
+        <site>
+            <id>htmlunit-website</id>
+            <name>HtmlUnit WebSite - Sourceforge</name>
+            <url>
+                sftp://web.sourceforge.net/home/groups/h/ht/htmlunit/htdocs/
+            </url>
+        </site>
+        <repository>
+            <id>htmlunit-m2-repo</id>
+            <url>
+                sftp://web.sourceforge.net/home/groups/h/ht/htmlunit/htdocs/m2-repo
+            </url>
+            <name>HtmlUnit Maven 2 Repository</name>
+        </repository>
+        <snapshotRepository>
+            <id>htmlunit-m2-repo-snapshots</id>
+            <url>
+                sftp://web.sourceforge.net/home/groups/h/ht/htmlunit/htdocs/m2-repo-snapshots
+            </url>
+            <name>HtmlUnit Maven 2 Snapshots Repository</name>
+            <uniqueVersion>false</uniqueVersion>
+        </snapshotRepository>
+    </distributionManagement>
+</project>

Added: maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom.sha1
===================================================================
--- maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom.sha1	                        (rev 0)
+++ maven2/net/sourceforge/htmlunit/htmlunit/2.4/htmlunit-2.4.pom.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+a6255c265daa0f72ae420c9cbd2836cf198dd9ce
\ No newline at end of file

Added: maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar
===================================================================
(Binary files differ)


Property changes on: maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar.sha1
===================================================================
--- maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar.sha1	                        (rev 0)
+++ maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.jar.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+322a18d7860d1c394ce1647bf66d951658fff781
\ No newline at end of file

Added: maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom
===================================================================
--- maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom	                        (rev 0)
+++ maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1,53 @@
+<?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/maven-v4_0_0.xsd">
+
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>net.sourceforge.htmlunit</groupId>
+	<artifactId>htmlunit-core-js</artifactId>
+	<version>2.4</version>
+	<packaging>jar</packaging>
+	<name>HtmlUnit Core JS</name>
+	<url>http://htmlunit.sourceforge.net</url>
+	<description>
+		HtmlUnit adaptation of Mozilla Rhino Javascript engine for Java. 
+		Changes are documented by a diff (rhinoDiff.txt) contained in the generated jar files.
+	</description>
+	<licenses>
+		<license>
+			<name>Mozilla Public License version 1.1</name>
+			<url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+
+	<scm>
+		<connection>
+			scm:svn:https://htmlunit.svn.sourceforge.net/svnroot/htmlunit/trunk/core-js
+		</connection>
+		<developerConnection>
+			scm:svn:https://htmlunit.svn.sourceforge.net/svnroot/htmlunit/trunk/core-js
+		</developerConnection>
+		<url>http://htmlunit.svn.sourceforge.net/viewvc/htmlunit</url>
+	</scm>
+
+	<distributionManagement>
+        <repository>
+            <id>htmlunit-m2-repo</id>
+            <url>
+                sftp://web.sourceforge.net/home/groups/h/ht/htmlunit/htdocs/m2-repo
+            </url>
+            <name>HtmlUnit Maven 2 Repository</name>
+        </repository>
+		<snapshotRepository>
+			<id>htmlunit-m2-repo-snapshots</id>
+			<url>
+				sftp://web.sourceforge.net/home/groups/h/ht/htmlunit/htdocs/m2-repo-snapshots
+			</url>
+			<name>HtmlUnit Maven 2 Snapshots Repository</name>
+			<uniqueVersion>false</uniqueVersion>
+		</snapshotRepository>
+	</distributionManagement>
+
+</project>

Added: maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom.sha1
===================================================================
--- maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom.sha1	                        (rev 0)
+++ maven2/net/sourceforge/htmlunit/htmlunit-core-js/2.4/htmlunit-core-js-2.4.pom.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+55e5f31d8d4fc2b0c47f6cc8e307bfee97c1570e
\ No newline at end of file

Added: maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar
===================================================================
(Binary files differ)


Property changes on: maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar.sha1
===================================================================
--- maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar.sha1	                        (rev 0)
+++ maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.jar.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+91ae77cff4487d1b38734a29b7b40e925f1c82f1
\ No newline at end of file

Added: maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom
===================================================================
--- maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom	                        (rev 0)
+++ maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1,41 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>net.sourceforge.nekohtml</groupId>
+  <artifactId>nekohtml</artifactId>
+  <name>Neko HTML</name>
+  <version>1.9.9</version>
+  <url>http://nekohtml.sourceforge.net/</url>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <scm>
+    <url>http://nekohtml.svn.sourceforge.net/viewvc/nekohtml/</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.8.1</version>
+    </dependency>
+  </dependencies>
+    <distributionManagement>
+        <repository>
+            <id>nekohtml-m2-repo</id>
+            <url>
+                scp://shell.sourceforge.net/home/groups/n/ne/nekohtml/htdocs/m2-repo
+            </url>
+            <name>NekoHTML Maven 2 Repository</name>
+        </repository>
+        <snapshotRepository>
+            <id>nekohtml-m2-repo-snapshots</id>
+            <url>
+                scp://shell.sourceforge.net/home/groups/n/ne/nekohtml/htdocs/m2-repo-snapshots
+            </url>
+            <name>NekoHTML Maven 2 Snapshots Repository</name>
+        </snapshotRepository>
+    </distributionManagement>
+</project>

Added: maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom.sha1
===================================================================
--- maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom.sha1	                        (rev 0)
+++ maven2/net/sourceforge/nekohtml/nekohtml/1.9.9/nekohtml-1.9.9.pom.sha1	2009-02-23 17:48:44 UTC (rev 22566)
@@ -0,0 +1 @@
+3b1f813ebe2471758d3f39b4a651b2a96c898f79
\ No newline at end of file




More information about the jboss-cvs-commits mailing list