Skip to content

Commit

Permalink
added a codebox-core jar module
Browse files Browse the repository at this point in the history
  • Loading branch information
eskatos committed Dec 19, 2009
1 parent 7eb52a8 commit 255067c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
16 changes: 16 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

<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>
<!--parent>
<groupId>org.codeartisans</groupId>
<artifactId>codebox</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent-->
<groupId>org.codeartisans</groupId>
<artifactId>codebox-core</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${artifactId}</name>

</project>
29 changes: 29 additions & 0 deletions core/src/main/java/org/codeartisans/codebox/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Copyright (c) 2009 Paul Merlin <paul@nosphere.org>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.codeartisans.codebox;

/**
* @author Paul Merlin <paul@nosphere.org>
*/
public class Main
{
}
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<modules>
<module>core</module>
</modules>

<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 255067c

Please sign in to comment.