From: <tri...@us...> - 2007-08-08 08:57:59
|
Revision: 5 http://staticwiki.svn.sourceforge.net/staticwiki/?rev=5&view=rev Author: triathlon98 Date: 2007-08-08 01:57:54 -0700 (Wed, 08 Aug 2007) Log Message: ----------- provisions for new modules Modified Paths: -------------- trunk/pom.xml Added Paths: ----------- trunk/staticwiki-editor/ trunk/staticwiki-editor/pom.xml trunk/staticwiki-editor/src/ trunk/staticwiki-editor/src/main/ trunk/staticwiki-editor/src/main/java/ trunk/staticwiki-editor/src/main/java/org/ trunk/staticwiki-editor/src/main/java/org/staticwiki/ trunk/staticwiki-editor/src/main/java/org/staticwiki/editor/ trunk/staticwiki-editor/src/main/java/org/staticwiki/editor/Editor.java trunk/staticwiki-site-plugin/ trunk/staticwiki-site-plugin/pom.xml trunk/staticwiki-site-plugin/src/ trunk/staticwiki-site-plugin/src/main/ trunk/staticwiki-site-plugin/src/main/java/ Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2007-07-04 07:35:59 UTC (rev 4) +++ trunk/pom.xml 2007-08-08 08:57:54 UTC (rev 5) @@ -14,6 +14,8 @@ </description> <modules> <module>staticwiki-renderer</module> + <module>staticwiki-editor</module> + <module>staticwiki-site-plugin</module> </modules> <licenses> <license> @@ -109,6 +111,11 @@ <version>${project.version}</version> </dependency> <dependency> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki-editor</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> Added: trunk/staticwiki-editor/pom.xml =================================================================== --- trunk/staticwiki-editor/pom.xml (rev 0) +++ trunk/staticwiki-editor/pom.xml 2007-08-08 08:57:54 UTC (rev 5) @@ -0,0 +1,43 @@ +<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"> + <parent> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki-editor</artifactId> + <packaging>jar</packaging> + <version>1.0-SNAPSHOT</version> + <name>staticwiki-editor</name> + <description> + Simple Swing gui to allow editing wiki markup and seeing a preview of the rendered result. + </description> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifest> + <mainClass>org.staticwiki.editor.Editor</mainClass> + <addClasspath>true</addClasspath> + </manifest> + </archive> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki-renderer</artifactId> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </dependency> + </dependencies> +</project> Added: trunk/staticwiki-editor/src/main/java/org/staticwiki/editor/Editor.java =================================================================== --- trunk/staticwiki-editor/src/main/java/org/staticwiki/editor/Editor.java (rev 0) +++ trunk/staticwiki-editor/src/main/java/org/staticwiki/editor/Editor.java 2007-08-08 08:57:54 UTC (rev 5) @@ -0,0 +1,32 @@ +/** + * This file is part of the staticwiki project. + * + * The contents of this file are subject to the GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.fsf.org/licenses/lgpl.html + * + * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF + * ANY KIND, either express or implied. See the License for the specific language governing rights and + * limitations under the License. + */ + +package org.staticwiki.editor; + +//import org.apache.log4j.Logger; + +/** + * ... + * + * @author <a href="mailto:jo...@pr...">Joachim Van der Auwera</a> + */ +public class Editor +{ + //private static Logger logger = Logger.getLogger( Editor.class ); + + public static void main( String[] args ) + { + //logger.info( "main: in" ); + System.out.println( "Hello World!" ); + //logger.info( "main: out" ); + } +} \ No newline at end of file Added: trunk/staticwiki-site-plugin/pom.xml =================================================================== --- trunk/staticwiki-site-plugin/pom.xml (rev 0) +++ trunk/staticwiki-site-plugin/pom.xml 2007-08-08 08:57:54 UTC (rev 5) @@ -0,0 +1,27 @@ +<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"> + <parent> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki-site-plugin</artifactId> + <packaging>jar</packaging> + <version>1.0-SNAPSHOT</version> + <name>staticwiki-site-plugin</name> + <description> + Maven plugin to allow generating a maven site using staticwiki markup. + </description> + <dependencies> + <dependency> + <groupId>org.staticwiki</groupId> + <artifactId>staticwiki-renderer</artifactId> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </dependency> + </dependencies> +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |