branch and project sound sound
authorAnton Epple <toni.epple@eppleton.de>
Mon, 27 May 2013 16:29:15 +0200
branchsound
changeset 105c6c16603206c
parent 104 c053a7d09c8c
child 106 877f18756b74
branch and project sound
pom.xml
sound/pom.xml
sound/src/main/java/net/java/html/sound/App.java
sound/src/test/java/net/java/html/sound/AppTest.java
     1.1 --- a/pom.xml	Mon May 27 16:22:20 2013 +0200
     1.2 +++ b/pom.xml	Mon May 27 16:29:15 2013 +0200
     1.3 @@ -25,6 +25,7 @@
     1.4      <module>ko-archetype-test</module>
     1.5      <module>ko-bck2brwsr</module>
     1.6      <module>ko-fx</module>
     1.7 +    <module>sound</module>
     1.8    </modules>
     1.9    <licenses>
    1.10        <license>
    1.11 @@ -255,4 +256,4 @@
    1.12          </dependency>
    1.13        </dependencies>
    1.14    </dependencyManagement>
    1.15 -</project>
    1.16 +</project>
    1.17 \ No newline at end of file
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/sound/pom.xml	Mon May 27 16:29:15 2013 +0200
     2.3 @@ -0,0 +1,26 @@
     2.4 +<?xml version="1.0"?>
     2.5 +<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"
     2.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     2.7 +  <modelVersion>4.0.0</modelVersion>
     2.8 +  <parent>
     2.9 +    <groupId>org.apidesign</groupId>
    2.10 +    <artifactId>html</artifactId>
    2.11 +    <version>0.4-SNAPSHOT</version>
    2.12 +  </parent>
    2.13 +  <groupId>net.java.html</groupId>
    2.14 +  <artifactId>sound</artifactId>
    2.15 +  <version>1.0-SNAPSHOT</version>
    2.16 +  <name>sound</name>
    2.17 +  <url>http://maven.apache.org</url>
    2.18 +  <properties>
    2.19 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    2.20 +  </properties>
    2.21 +  <dependencies>
    2.22 +    <dependency>
    2.23 +      <groupId>junit</groupId>
    2.24 +      <artifactId>junit</artifactId>
    2.25 +      <version>3.8.1</version>
    2.26 +      <scope>test</scope>
    2.27 +    </dependency>
    2.28 +  </dependencies>
    2.29 +</project>
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/sound/src/main/java/net/java/html/sound/App.java	Mon May 27 16:29:15 2013 +0200
     3.3 @@ -0,0 +1,13 @@
     3.4 +package net.java.html.sound;
     3.5 +
     3.6 +/**
     3.7 + * Hello world!
     3.8 + *
     3.9 + */
    3.10 +public class App 
    3.11 +{
    3.12 +    public static void main( String[] args )
    3.13 +    {
    3.14 +        System.out.println( "Hello World!" );
    3.15 +    }
    3.16 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/sound/src/test/java/net/java/html/sound/AppTest.java	Mon May 27 16:29:15 2013 +0200
     4.3 @@ -0,0 +1,38 @@
     4.4 +package net.java.html.sound;
     4.5 +
     4.6 +import junit.framework.Test;
     4.7 +import junit.framework.TestCase;
     4.8 +import junit.framework.TestSuite;
     4.9 +
    4.10 +/**
    4.11 + * Unit test for simple App.
    4.12 + */
    4.13 +public class AppTest 
    4.14 +    extends TestCase
    4.15 +{
    4.16 +    /**
    4.17 +     * Create the test case
    4.18 +     *
    4.19 +     * @param testName name of the test case
    4.20 +     */
    4.21 +    public AppTest( String testName )
    4.22 +    {
    4.23 +        super( testName );
    4.24 +    }
    4.25 +
    4.26 +    /**
    4.27 +     * @return the suite of tests being tested
    4.28 +     */
    4.29 +    public static Test suite()
    4.30 +    {
    4.31 +        return new TestSuite( AppTest.class );
    4.32 +    }
    4.33 +
    4.34 +    /**
    4.35 +     * Rigourous Test :-)
    4.36 +     */
    4.37 +    public void testApp()
    4.38 +    {
    4.39 +        assertTrue( true );
    4.40 +    }
    4.41 +}