Skip to content
This repository has been archived by the owner on Jul 3, 2018. It is now read-only.

Commit

Permalink
#1 init skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-conway committed Apr 20, 2016
0 parents commit 0b0754e
Show file tree
Hide file tree
Showing 6 changed files with 277 additions and 0 deletions.
163 changes: 163 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -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.dfc.de</groupId>
<artifactId>publisher</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>publisher</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>
13 changes: 13 additions & 0 deletions src/main/java/org/dfc/de/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.dfc.de;

/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
38 changes: 38 additions & 0 deletions src/test/java/org/dfc/de/AppTest.java
Original file line number Diff line number Diff line change
@@ -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 );
}
}

0 comments on commit 0b0754e

Please sign in to comment.