You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gr...@apache.org on 2013/11/21 22:23:24 UTC

svn commit: r1544327 - in /logging/sandbox/receivers2/trunk: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/logging/ src/main/java/org/apache/logging/log4j/ src/main/java/org/apache/logging/log4j/...

Author: grobmeier
Date: Thu Nov 21 21:23:23 2013
New Revision: 1544327

URL: http://svn.apache.org/r1544327
Log:
created sample maven project

Added:
    logging/sandbox/receivers2/trunk/pom.xml   (with props)
    logging/sandbox/receivers2/trunk/src/
    logging/sandbox/receivers2/trunk/src/main/
    logging/sandbox/receivers2/trunk/src/main/java/
    logging/sandbox/receivers2/trunk/src/main/java/org/
    logging/sandbox/receivers2/trunk/src/main/java/org/apache/
    logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/
    logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/
    logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/
    logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/App.java   (with props)
    logging/sandbox/receivers2/trunk/src/test/
    logging/sandbox/receivers2/trunk/src/test/java/
    logging/sandbox/receivers2/trunk/src/test/java/org/
    logging/sandbox/receivers2/trunk/src/test/java/org/apache/
    logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/
    logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/
    logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/
    logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/AppTest.java   (with props)

Added: logging/sandbox/receivers2/trunk/pom.xml
URL: http://svn.apache.org/viewvc/logging/sandbox/receivers2/trunk/pom.xml?rev=1544327&view=auto
==============================================================================
--- logging/sandbox/receivers2/trunk/pom.xml (added)
+++ logging/sandbox/receivers2/trunk/pom.xml Thu Nov 21 21:23:23 2013
@@ -0,0 +1,25 @@
+<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>org.apache.logging.log4j</groupId>
+  <artifactId>receivers2</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>receivers2</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: logging/sandbox/receivers2/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/App.java
URL: http://svn.apache.org/viewvc/logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/App.java?rev=1544327&view=auto
==============================================================================
--- logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/App.java (added)
+++ logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/App.java Thu Nov 21 21:23:23 2013
@@ -0,0 +1,13 @@
+package org.apache.logging.log4j.receivers2;
+
+/**
+ * Hello world!
+ *
+ */
+public class App 
+{
+    public static void main( String[] args )
+    {
+        System.out.println( "Hello World!" );
+    }
+}

Propchange: logging/sandbox/receivers2/trunk/src/main/java/org/apache/logging/log4j/receivers2/App.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/AppTest.java
URL: http://svn.apache.org/viewvc/logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/AppTest.java?rev=1544327&view=auto
==============================================================================
--- logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/AppTest.java (added)
+++ logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/AppTest.java Thu Nov 21 21:23:23 2013
@@ -0,0 +1,38 @@
+package org.apache.logging.log4j.receivers2;
+
+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: logging/sandbox/receivers2/trunk/src/test/java/org/apache/logging/log4j/receivers2/AppTest.java
------------------------------------------------------------------------------
    svn:eol-style = native