Author: tobr
Date: Tue Dec 4 14:29:51 2012
New Revision: 1416963
URL: http://svn.apache.org/viewvc?rev=1416963&view=rev
Log:
added submodules for web crawling and file walking
Added:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml (with
props)
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
(with props)
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
(with props)
incubator/droids/branches/0.2.x-cleanup/droids-walker/
incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml (with props)
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
(with props)
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
(with props)
Added: incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml?rev=1416963&view=auto
==============================================================================
--- incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml (added)
+++ incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml Tue Dec 4
14:29:51 2012
@@ -0,0 +1,26 @@
+<?xml version="1.0"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.droids</groupId>
+ <artifactId>droids</artifactId>
+ <version>0.3.0-incubating-SNAPSHOT</version>
+ </parent>
+ <groupId>org.apache.droids</groupId>
+ <artifactId>droids-crawler</artifactId>
+ <version>0.3.0-incubating-SNAPSHOT</version>
+ <name>droids-crawler</name>
+ <url>http://maven.apache.org</url>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Propchange: incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: incubator/droids/branches/0.2.x-cleanup/droids-crawler/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
URL:
http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java?rev=1416963&view=auto
==============================================================================
---
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
(added)
+++
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
Tue Dec 4 14:29:51 2012
@@ -0,0 +1,13 @@
+package org.apache.droids;
+
+/**
+ * Hello world!
+ *
+ */
+public class App
+{
+ public static void main( String[] args )
+ {
+ System.out.println( "Hello World!" );
+ }
+}
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/main/java/org/apache/droids/App.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
URL:
http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java?rev=1416963&view=auto
==============================================================================
---
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
(added)
+++
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
Tue Dec 4 14:29:51 2012
@@ -0,0 +1,38 @@
+package org.apache.droids;
+
+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 );
+ }
+}
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-crawler/src/test/java/org/apache/droids/AppTest.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml?rev=1416963&view=auto
==============================================================================
--- incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml (added)
+++ incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml Tue Dec 4
14:29:51 2012
@@ -0,0 +1,26 @@
+<?xml version="1.0"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.droids</groupId>
+ <artifactId>droids</artifactId>
+ <version>0.3.0-incubating-SNAPSHOT</version>
+ </parent>
+ <groupId>org.apache.droids</groupId>
+ <artifactId>droids-walker</artifactId>
+ <version>0.3.0-incubating-SNAPSHOT</version>
+ <name>droids-walker</name>
+ <url>http://maven.apache.org</url>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: incubator/droids/branches/0.2.x-cleanup/droids-walker/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
URL:
http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java?rev=1416963&view=auto
==============================================================================
---
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
(added)
+++
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
Tue Dec 4 14:29:51 2012
@@ -0,0 +1,13 @@
+package org.apache.droids;
+
+/**
+ * Hello world!
+ *
+ */
+public class App
+{
+ public static void main( String[] args )
+ {
+ System.out.println( "Hello World!" );
+ }
+}
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/main/java/org/apache/droids/App.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
URL:
http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java?rev=1416963&view=auto
==============================================================================
---
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
(added)
+++
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
Tue Dec 4 14:29:51 2012
@@ -0,0 +1,38 @@
+package org.apache.droids;
+
+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 );
+ }
+}
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange:
incubator/droids/branches/0.2.x-cleanup/droids-walker/src/test/java/org/apache/droids/AppTest.java
------------------------------------------------------------------------------
svn:mime-type = text/plain