You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2008/11/17 04:26:08 UTC

svn commit: r718166 - in /maven/touchstone: ./ touchstone/ touchstone/.settings/ touchstone/src/ touchstone/src/main/ touchstone/src/main/java/ touchstone/src/main/java/org/ touchstone/src/main/java/org/apache/ touchstone/src/main/java/org/apache/maven...

Author: jvanzyl
Date: Sun Nov 16 19:26:07 2008
New Revision: 718166

URL: http://svn.apache.org/viewvc?rev=718166&view=rev
Log:
o going to build up some standard projects that will be one step up from the ITs where these builds should be representative
  of typical setups the normal build and release engineers deal with. i want some standard way to QA changes.

Added:
    maven/touchstone/
    maven/touchstone/touchstone/
    maven/touchstone/touchstone/.settings/
    maven/touchstone/touchstone/.settings/org.eclipse.jdt.core.prefs
    maven/touchstone/touchstone/.settings/org.maven.ide.eclipse.prefs
    maven/touchstone/touchstone/pom.xml   (with props)
    maven/touchstone/touchstone/src/
    maven/touchstone/touchstone/src/main/
    maven/touchstone/touchstone/src/main/java/
    maven/touchstone/touchstone/src/main/java/org/
    maven/touchstone/touchstone/src/main/java/org/apache/
    maven/touchstone/touchstone/src/main/java/org/apache/maven/
    maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/
    maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java   (with props)
    maven/touchstone/touchstone/src/test/
    maven/touchstone/touchstone/src/test/java/
    maven/touchstone/touchstone/src/test/java/org/
    maven/touchstone/touchstone/src/test/java/org/apache/
    maven/touchstone/touchstone/src/test/java/org/apache/maven/
    maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/
    maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java   (with props)

Added: maven/touchstone/touchstone/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/maven/touchstone/touchstone/.settings/org.eclipse.jdt.core.prefs?rev=718166&view=auto
==============================================================================
--- maven/touchstone/touchstone/.settings/org.eclipse.jdt.core.prefs (added)
+++ maven/touchstone/touchstone/.settings/org.eclipse.jdt.core.prefs Sun Nov 16 19:26:07 2008
@@ -0,0 +1,5 @@
+#Sun Nov 16 18:44:13 EST 2008
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
+org.eclipse.jdt.core.compiler.compliance=1.4
+org.eclipse.jdt.core.compiler.source=1.3

Added: maven/touchstone/touchstone/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/maven/touchstone/touchstone/.settings/org.maven.ide.eclipse.prefs?rev=718166&view=auto
==============================================================================
--- maven/touchstone/touchstone/.settings/org.maven.ide.eclipse.prefs (added)
+++ maven/touchstone/touchstone/.settings/org.maven.ide.eclipse.prefs Sun Nov 16 19:26:07 2008
@@ -0,0 +1,8 @@
+#Sun Nov 16 18:44:12 EST 2008
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+version=1

Added: maven/touchstone/touchstone/pom.xml
URL: http://svn.apache.org/viewvc/maven/touchstone/touchstone/pom.xml?rev=718166&view=auto
==============================================================================
--- maven/touchstone/touchstone/pom.xml (added)
+++ maven/touchstone/touchstone/pom.xml Sun Nov 16 19:26:07 2008
@@ -0,0 +1,29 @@
+<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>org.apache.maven.touchstone</groupId>
+  <artifactId>touchstone</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0-SNAPSHOT</version>
+  <name>touchstone</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>   
+  <!-- 
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-webdav</artifactId>
+        <version>1.0-alpha-6</version>
+      </extension>
+    </extensions>
+  </build>
+  -->
+</project>

Propchange: maven/touchstone/touchstone/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/touchstone/touchstone/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java
URL: http://svn.apache.org/viewvc/maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java?rev=718166&view=auto
==============================================================================
--- maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java (added)
+++ maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java Sun Nov 16 19:26:07 2008
@@ -0,0 +1,13 @@
+package org.apache.maven.touchstone;
+
+/**
+ * Hello world!
+ *
+ */
+public class App 
+{
+    public static void main( String[] args )
+    {
+        System.out.println( "Hello World!" );
+    }
+}

Propchange: maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/touchstone/touchstone/src/main/java/org/apache/maven/touchstone/App.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java
URL: http://svn.apache.org/viewvc/maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java?rev=718166&view=auto
==============================================================================
--- maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java (added)
+++ maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java Sun Nov 16 19:26:07 2008
@@ -0,0 +1,38 @@
+package org.apache.maven.touchstone;
+
+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: maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/touchstone/touchstone/src/test/java/org/apache/maven/touchstone/AppTest.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



Re: svn commit: r718166 - in /maven/touchstone: ./ touchstone/ touchstone/.settings/ touchstone/src/ touchstone/src/main/ touchstone/src/main/java/ touchstone/src/main/java/org/ touchstone/src/main/java/org/apache/ touchstone/src/main/java/org/apache/maven...

Posted by Benjamin Bentmann <be...@udo.edu>.
Hi Jason,

> Author: jvanzyl
> Date: Sun Nov 16 19:26:07 2008
> New Revision: 718166
> 
> URL: http://svn.apache.org/viewvc?rev=718166&view=rev
> 
> Added:
>     maven/touchstone/
>     maven/touchstone/touchstone/
>     maven/touchstone/touchstone/.settings/
>     maven/touchstone/touchstone/.settings/org.eclipse.jdt.core.prefs
>     maven/touchstone/touchstone/.settings/org.maven.ide.eclipse.prefs

I guess here are some SVN ignores missing ;-)

> Propchange: maven/touchstone/touchstone/pom.xml
> ------------------------------------------------------------------------------
>     svn:keywords = "Author Date Id Revision"

The last time I tried/investigated, it appeared that SVN doesn't like 
the surrounding quotes, i.e. simply splits by space and gets the tokens
   "Author
   Date
   Id
   Revision"
such that the keyword substitution is not fully working. So, please 
consider to update your SVN client's config (c.f. [0]).


Benjamin


[0] http://maven.apache.org/developers/svn-eol-style.txt

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org