M .Rbuildignore => .Rbuildignore +2 -0
@@ 7,7 7,9 @@
^NOTES\.*html$
^\.codecov\.yml$
^README_files$
+^java$
^doc$
+^docs$
^tmp$
^notes$
^\.gitlab-ci\.yml$
M DESCRIPTION => DESCRIPTION +2 -2
@@ 1,8 1,8 @@
Package: htmlunitjars
Type: Package
Title: Java Archive Wrapper Supporting the 'htmlunit' Package
-Version: 2.33.0
-Date: 2018-12-16
+Version: 2.34.0
+Date: 2019-02-28
Authors@R: c(
person("Bob", "Rudis", role = c("aut", "cre"), email = "bob@rud.is")
)
M NEWS.md => NEWS.md +5 -1
@@ 1,2 1,6 @@
-0.1.0
+# 2.34.0
+* Updated main and dependent JARs to track with htmlunit 2.34.0
+ release <http://htmlunit.sourceforge.net/changes-report.html#a2.34.0>
+
+# 2.33.0
* Initial release
M README.md => README.md +1 -1
@@ 47,7 47,7 @@ library(htmlunitjars)
packageVersion("htmlunitjars")
```
- ## [1] '2.33.0'
+ ## [1] '2.34.0'
### Give It A Go
D inst/java/commons-codec-1.10.jar => inst/java/commons-codec-1.10.jar +0 -0
A inst/java/commons-codec-1.11.jar => inst/java/commons-codec-1.11.jar +0 -0
R inst/java/commons-lang3-3.8.jar => inst/java/commons-lang3-3.8.1.jar +0 -0
D inst/java/commons-text-1.4.jar => inst/java/commons-text-1.4.jar +0 -0
A inst/java/commons-text-1.6.jar => inst/java/commons-text-1.6.jar +0 -0
D inst/java/htmlunit-2.33.jar => inst/java/htmlunit-2.33.jar +0 -0
A inst/java/htmlunit-2.34.0.jar => inst/java/htmlunit-2.34.0.jar +0 -0
D inst/java/htmlunit-core-js-2.33.jar => inst/java/htmlunit-core-js-2.33.jar +0 -0
A inst/java/htmlunit-core-js-2.34.0.jar => inst/java/htmlunit-core-js-2.34.0.jar +0 -0
D inst/java/htmlunit-cssparser-1.2.0.jar => inst/java/htmlunit-cssparser-1.2.0.jar +0 -0
A inst/java/htmlunit-cssparser-1.3.0.jar => inst/java/htmlunit-cssparser-1.3.0.jar +0 -0
D inst/java/httpclient-4.5.6.jar => inst/java/httpclient-4.5.6.jar +0 -0
A inst/java/httpclient-4.5.7.jar => inst/java/httpclient-4.5.7.jar +0 -0
R inst/java/httpcore-4.4.10.jar => inst/java/httpcore-4.4.11.jar +0 -0
R inst/java/httpmime-4.5.6.jar => inst/java/httpmime-4.5.7.jar +0 -0
D inst/java/jetty-client-9.4.12.v20180830.jar => inst/java/jetty-client-9.4.12.v20180830.jar +0 -0
A inst/java/jetty-client-9.4.15.v20190215.jar => inst/java/jetty-client-9.4.15.v20190215.jar +0 -0
D inst/java/jetty-http-9.4.12.v20180830.jar => inst/java/jetty-http-9.4.12.v20180830.jar +0 -0
A inst/java/jetty-http-9.4.15.v20190215.jar => inst/java/jetty-http-9.4.15.v20190215.jar +0 -0
D inst/java/jetty-io-9.4.12.v20180830.jar => inst/java/jetty-io-9.4.12.v20180830.jar +0 -0
A inst/java/jetty-io-9.4.15.v20190215.jar => inst/java/jetty-io-9.4.15.v20190215.jar +0 -0
D inst/java/jetty-util-9.4.12.v20180830.jar => inst/java/jetty-util-9.4.12.v20180830.jar +0 -0
A inst/java/jetty-util-9.4.15.v20190215.jar => inst/java/jetty-util-9.4.15.v20190215.jar +0 -0
D inst/java/jetty-xml-9.4.12.v20180830.jar => inst/java/jetty-xml-9.4.12.v20180830.jar +0 -0
A inst/java/jetty-xml-9.4.15.v20190215.jar => inst/java/jetty-xml-9.4.15.v20190215.jar +0 -0
D inst/java/neko-htmlunit-2.33.jar => inst/java/neko-htmlunit-2.33.jar +0 -0
A inst/java/neko-htmlunit-2.34.0.jar => inst/java/neko-htmlunit-2.34.0.jar +0 -0
D inst/java/websocket-api-9.4.12.v20180830.jar => inst/java/websocket-api-9.4.12.v20180830.jar +0 -0
A inst/java/websocket-api-9.4.15.v20190215.jar => inst/java/websocket-api-9.4.15.v20190215.jar +0 -0
D inst/java/websocket-client-9.4.12.v20180830.jar => inst/java/websocket-client-9.4.12.v20180830.jar +0 -0
A inst/java/websocket-client-9.4.15.v20190215.jar => inst/java/websocket-client-9.4.15.v20190215.jar +0 -0
D inst/java/websocket-common-9.4.12.v20180830.jar => inst/java/websocket-common-9.4.12.v20180830.jar +0 -0
A inst/java/websocket-common-9.4.15.v20190215.jar => inst/java/websocket-common-9.4.15.v20190215.jar +0 -0
A java/htmlunit/Makefile => java/htmlunit/Makefile +14 -0
@@ 0,0 1,14 @@
+.PHONY: clean pkg deps run
+
+pkg:
+ mvn --quiet package
+ cp target/htmlunit-1.0-SNAPSHOT.jar ../../inst/java
+
+clean:
+ mvn clean
+
+deps:
+ mvn dependency:copy-dependencies -DoutputDirectory=deps
+
+new:
+ mvn archetype:generate -DgroupId=is.rud.htmlunit -DartifactId=htmlunit -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
A java/htmlunit/pom.xml => java/htmlunit/pom.xml +18 -0
@@ 0,0 1,18 @@
+<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>is.rud.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0-SNAPSHOT</version>
+ <name>htmlunit</name>
+ <url>http://maven.apache.org</url>
+ <dependencies>
+ <!-- https://mvnrepository.com/artifact/net.sourceforge.htmlunit/htmlunit -->
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.34.0</version>
+ </dependency>
+ </dependencies>
+</project>
A java/htmlunit/src/main/java/is/rud/htmlunit/App.java => java/htmlunit/src/main/java/is/rud/htmlunit/App.java +13 -0
@@ 0,0 1,13 @@
+package is.rud.htmlunit;
+
+/**
+ * Hello world!
+ *
+ */
+public class App
+{
+ public static void main( String[] args )
+ {
+ System.out.println( "Hello World!" );
+ }
+}
A java/htmlunit/src/test/java/is/rud/htmlunit/AppTest.java => java/htmlunit/src/test/java/is/rud/htmlunit/AppTest.java +38 -0
@@ 0,0 1,38 @@
+package is.rud.htmlunit;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ * Unit test for simple App.
+ */
+public class AppTest
+ extends TestCase
+{
+ /**
+ * Create the test case
+ *
+ * @param testName name of the test case
+ */
+ public AppTest( String testName )
+ {
+ super( testName );
+ }
+
+ /**
+ * @return the suite of tests being tested
+ */
+ public static Test suite()
+ {
+ return new TestSuite( AppTest.class );
+ }
+
+ /**
+ * Rigourous Test :-)
+ */
+ public void testApp()
+ {
+ assertTrue( true );
+ }
+}