From 0b0754e4d30d521f59d478d33aba870820223530 Mon Sep 17 00:00:00 2001 From: michael-conway Date: Wed, 20 Apr 2016 10:35:43 -0600 Subject: [PATCH] #1 init skeleton --- .gitignore | 163 ++++++++++++++++++++++++++ LICENSE | 28 +++++ README.md | 10 ++ pom.xml | 25 ++++ src/main/java/org/dfc/de/App.java | 13 ++ src/test/java/org/dfc/de/AppTest.java | 38 ++++++ 6 files changed, 277 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 pom.xml create mode 100644 src/main/java/org/dfc/de/App.java create mode 100644 src/test/java/org/dfc/de/AppTest.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..00d8d99 --- /dev/null +++ b/.gitignore @@ -0,0 +1,163 @@ +**/.classpath +.DS_Store +**/nb-configuration.xml +**/.springBeans +**/testing.properties +**/*.eml +.idea +.project +.metadata +.DS_Store +Servers +.settings +.classpath +target +mvn-repo +bin +*.war +*.log +*/nbactions.xml +nbactions.xml +testing.properties +*/test-output +JargonVersion.java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GNU nano 2.0.6 File: .gitignore + +**/.classpath +.DS_Store +**/nb-configuration.xml +**/.springBeans +**/testing.properties +.project +.metadata +.DS_Store +Servers +.settings +.classpath +target +mvn-repo +bin +*.war +*.log +*/nbactions.xml +nbactions.xml +testing.properties +*/test-output +JargonVersion.java + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GNU nano 2.0.6 File: .gitignore + +**/.classpath +.DS_Store +**/nb-configuration.xml +**/.springBeans +**/testing.properties +.project +.metadata +.DS_Store +Servers +.settings +.classpath +target +mvn-repo +bin +*.war +*.log +*/nbactions.xml +nbactions.xml +testing.properties +*/test-output +JargonVersion.java diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ecb1b33 --- /dev/null +++ b/LICENSE @@ -0,0 +1,28 @@ +Copyright (c) 2014, DICE-Data Intensive Cyber Environments +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of metadata-templates-if nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..29a3413 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ + + +# Project: Publisher framework for DE + +### Date: +### Release Version: 1.0.0-SNAPSHOT +### git tag: +#### Developer: Mike Conway - DICE + +(work in progress) \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..8484039 --- /dev/null +++ b/pom.xml @@ -0,0 +1,25 @@ + + 4.0.0 + + org.dfc.de + publisher + 1.0.0-SNAPSHOT + jar + + publisher + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/src/main/java/org/dfc/de/App.java b/src/main/java/org/dfc/de/App.java new file mode 100644 index 0000000..e70b19e --- /dev/null +++ b/src/main/java/org/dfc/de/App.java @@ -0,0 +1,13 @@ +package org.dfc.de; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/org/dfc/de/AppTest.java b/src/test/java/org/dfc/de/AppTest.java new file mode 100644 index 0000000..95c8731 --- /dev/null +++ b/src/test/java/org/dfc/de/AppTest.java @@ -0,0 +1,38 @@ +package org.dfc.de; + +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 ); + } +}