[Stump-svn] SF.net SVN: stump:[16] plugin/trunk
Status: Planning
Brought to you by:
rbaranga
|
From: <rba...@us...> - 2010-04-14 15:32:14
|
Revision: 16
http://stump.svn.sourceforge.net/stump/?rev=16&view=rev
Author: rbaranga
Date: 2010-04-14 15:32:06 +0000 (Wed, 14 Apr 2010)
Log Message:
-----------
* moved packages
* re-added manifest & build.properties
Modified Paths:
--------------
plugin/trunk/plugin.xml
plugin/trunk/pom.xml
plugin/trunk/src/main/java/net/sf/stump/api/junit/AbstractTestSuite.java
plugin/trunk/src/main/java/net/sf/stump/api/junit/PackageMatchingFilter.java
plugin/trunk/src/main/java/net/sf/stump/api/junit/StumpTestCase.java
plugin/trunk/src/main/java/net/sf/stump/api/junit4/PreparePreview.java
plugin/trunk/src/main/java/net/sf/stump/api/junit4/StumpTestCase.java
plugin/trunk/src/main/java/net/sf/stump/api/metadata/ProjectMetadata.java
plugin/trunk/src/main/java/net/sf/stump/api/runner/Launcher.java
plugin/trunk/src/main/java/net/sf/stump/api/runner/Main.java
plugin/trunk/src/main/java/net/sf/stump/api/runner/Servers.java
plugin/trunk/src/main/java/net/sf/stump/api/runner/ServletContainer.java
plugin/trunk/src/main/java/net/sf/stump/api/web/HomePage.java
plugin/trunk/src/main/java/net/sf/stump/api/web/IComponentFactory.java
plugin/trunk/src/main/java/net/sf/stump/api/web/StaticHeaderContributor.java
plugin/trunk/src/main/java/net/sf/stump/api/web/Stump.java
plugin/trunk/src/main/java/net/sf/stump/api/web/StumpApplication.java
plugin/trunk/src/main/java/net/sf/stump/api/web/StumpApplicationFactory.java
plugin/trunk/src/main/java/net/sf/stump/eclipse/configuration/WebResourceConfiguration.java
plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/PreviewEditor.java
plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/WicketEditor.java
plugin/trunk/src/main/java/net/sf/stump/eclipse/launcher/WicketLaunchShortcut.java
plugin/trunk/src/main/java/net/sf/stump/eclipse/parser/PreviewParser.java
plugin/trunk/src/test/java/net/sf/stump/api/junit/StumpTestCaseTest.java
plugin/trunk/src/test/java/net/sf/stump/api/metadata/ProjectMetadataTest.java
plugin/trunk/src/test/java/net/sf/stump/api/runner/LauncherTest.java
plugin/trunk/src/test/java/net/sf/stump/api/web/CustomWebApplication.java
plugin/trunk/src/test/java/net/sf/stump/api/web/StaticHeaderContributorTest.java
plugin/trunk/src/test/java/net/sf/stump/api/web/StumpApplicationFactoryTest.java
plugin/trunk/src/test/java/net/sf/stump/eclipse/parser/PreviewParserTest.java
Added Paths:
-----------
plugin/trunk/META-INF/
plugin/trunk/META-INF/MANIFEST.MF
plugin/trunk/build.properties
plugin/trunk/src/main/java/net/sf/stump/api/
plugin/trunk/src/main/java/net/sf/stump/api/junit/
plugin/trunk/src/main/java/net/sf/stump/api/junit4/
plugin/trunk/src/main/java/net/sf/stump/api/metadata/
plugin/trunk/src/main/java/net/sf/stump/api/runner/
plugin/trunk/src/main/java/net/sf/stump/api/web/
plugin/trunk/src/test/java/net/sf/stump/api/
plugin/trunk/src/test/java/net/sf/stump/api/junit/
plugin/trunk/src/test/java/net/sf/stump/api/metadata/
plugin/trunk/src/test/java/net/sf/stump/api/runner/
plugin/trunk/src/test/java/net/sf/stump/api/web/
Removed Paths:
-------------
plugin/trunk/src/main/java/net/sf/stump/junit/
plugin/trunk/src/main/java/net/sf/stump/junit4/
plugin/trunk/src/main/java/net/sf/stump/metadata/
plugin/trunk/src/main/java/net/sf/stump/runner/
plugin/trunk/src/main/java/net/sf/stump/web/
plugin/trunk/src/test/java/net/sf/stump/junit/
plugin/trunk/src/test/java/net/sf/stump/metadata/
plugin/trunk/src/test/java/net/sf/stump/runner/
plugin/trunk/src/test/java/net/sf/stump/web/
Added: plugin/trunk/META-INF/MANIFEST.MF
===================================================================
--- plugin/trunk/META-INF/MANIFEST.MF (rev 0)
+++ plugin/trunk/META-INF/MANIFEST.MF 2010-04-14 15:32:06 UTC (rev 16)
@@ -0,0 +1,174 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Wicket Stump
+Bundle-SymbolicName: stump;singleton:=true
+Bundle-Version: 0.1
+Bundle-Vendor: stump.sourceforge.net
+Bundle-Localization: plugin
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
+ org.eclipse.jface;bundle-version="3.5.0",
+ org.eclipse.jface.text;bundle-version="3.5.0",
+ org.eclipse.jdt.core;bundle-version="3.5.0",
+ org.eclipse.jdt.junit;bundle-version="3.5.0",
+ org.eclipse.jdt.launching;bundle-version="3.5.0",
+ org.eclipse.debug.core;bundle-version="3.5.0",
+ org.eclipse.debug.ui;bundle-version="3.5.0",
+ org.eclipse.ui.editors;bundle-version="3.5.0",
+ org.eclipse.ui.ide;bundle-version="3.5.0",
+ org.eclipse.ui.views;bundle-version="3.4.1",
+ org.eclipse.ui.workbench.texteditor;bundle-version="3.5.0",
+ org.eclipse.ui.workbench;bundle-version="3.5.0",
+ org.eclipse.jdt.ui;bundle-version="3.5.0",
+ org.eclipse.ltk.core.refactoring;bundle-version="3.5.0"
+Export-Package: net.sf.stump.api.junit;
+ uses:="com.thoughtworks.selenium,
+ net.sf.stump.web,
+ junit.framework,
+ org.apache.wicket,
+ org.apache.wicket.markup.html.list,
+ junitx.util",
+ net.sf.stump.api.junit4;uses:="net.sf.stump.junit",
+ net.sf.stump.api.metadata,
+ net.sf.stump.api.runner;uses:="com.thoughtworks.selenium,org.openqa.jetty.jetty",
+ net.sf.stump.api.web,
+ net.sf.stump.browser;uses:="org.eclipse.swt.events,org.eclipse.swt.widgets",
+ net.sf.stump.eclipse;
+ uses:="net.sf.stump.eclipse.template,
+ org.eclipse.core.runtime,
+ org.eclipse.jface.resource,
+ org.eclipse.ui,
+ org.eclipse.ui.plugin,
+ org.eclipse.ui.part,
+ net.sf.stump.browser,
+ org.eclipse.core.resources,
+ org.eclipse.swt.graphics,
+ org.osgi.framework,
+ org.eclipse.swt.widgets",
+ net.sf.stump.eclipse.configuration;
+ uses:="org.eclipse.jface.preference,
+ org.eclipse.jdt.core,
+ org.eclipse.ui,
+ org.eclipse.core.resources,
+ org.eclipse.ui.dialogs,
+ org.eclipse.swt.widgets",
+ net.sf.stump.eclipse.editor;
+ uses:="org.eclipse.jface.text,
+ org.eclipse.ui.texteditor,
+ org.eclipse.core.runtime,
+ org.eclipse.ui,
+ org.apache.wicket.markup,
+ org.eclipse.ui.part,
+ org.eclipse.jface.text.contentassist,
+ org.eclipse.jface.action,
+ org.eclipse.jdt.ui.text.java,
+ org.eclipse.jdt.core,
+ org.eclipse.ui.views.contentoutline,
+ org.eclipse.core.resources,
+ org.eclipse.swt.graphics,
+ org.eclipse.jface.viewers,
+ org.eclipse.swt.widgets",
+ net.sf.stump.eclipse.form;
+ uses:="org.eclipse.jface.action,
+ net.sf.stump.form,
+ net.sf.stump.eclipse.editor,
+ org.eclipse.jface.viewers,
+ org.eclipse.swt.widgets",
+ net.sf.stump.eclipse.launcher;
+ uses:="org.eclipse.debug.core,
+ org.eclipse.debug.ui,
+ org.eclipse.core.runtime,
+ org.eclipse.jdt.launching,
+ org.eclipse.jdt.core,
+ org.eclipse.ui,
+ org.eclipse.jface.viewers",
+ net.sf.stump.eclipse.metadata;
+ uses:="org.eclipse.core.runtime,
+ org.eclipse.jdt.core,
+ org.eclipse.core.resources,
+ net.sf.stump.eclipse.wizard",
+ net.sf.stump.eclipse.parser;uses:="net.sf.stump.metadata,org.eclipse.core.resources",
+ net.sf.stump.eclipse.refactoring;
+ uses:="org.eclipse.core.runtime,
+ org.eclipse.ltk.core.refactoring.participants,
+ org.eclipse.jdt.core,
+ org.eclipse.core.resources,
+ org.eclipse.ltk.core.refactoring",
+ net.sf.stump.eclipse.swt;uses:="org.eclipse.swt.widgets",
+ net.sf.stump.eclipse.template;
+ uses:="org.eclipse.ui.texteditor.templates,
+ org.eclipse.jface.text.templates.persistence,
+ net.sf.stump.eclipse.metadata,
+ org.eclipse.jface.text.templates",
+ net.sf.stump.eclipse.util;
+ uses:="org.eclipse.ui.texteditor,
+ org.eclipse.core.runtime,
+ org.eclipse.jdt.core,
+ org.eclipse.ui,
+ org.eclipse.core.resources",
+ net.sf.stump.eclipse.wizard;
+ uses:="org.eclipse.jface.wizard,
+ org.eclipse.jface.operation,
+ org.eclipse.core.runtime,
+ org.eclipse.ui.wizards.newresource,
+ org.eclipse.jface.text.templates,
+ org.eclipse.jdt.core,
+ org.eclipse.jdt.ui.wizards,
+ org.eclipse.core.resources,
+ net.sf.stump.eclipse.metadata,
+ org.eclipse.ui.dialogs,
+ org.eclipse.swt.widgets",
+ net.sf.stump.form;uses:="org.apache.wicket.markup",
+ net.sf.stump.util;uses:="org.apache.wicket,org.eclipse.core.resources,org.apache.wicket.session"
+Bundle-ActivationPolicy: lazy
+Bundle-Activator: net.sf.stump.eclipse.WicketPlugin
+Bundle-ClassPath: .,
+ ant-1.6.5.jar,
+ bcprov-jdk15-135.jar,
+ google-collections-1.0.jar,
+ jmxtools-1.2.1.jar,
+ jmxri-1.2.1.jar,
+ commons-httpclient-3.1.jar,
+ commons-logging-1.1.1.jar,
+ activation-1.1.jar,
+ jms-1.1.jar,
+ mail-1.4.jar,
+ javassist-3.1.jar,
+ junit-4.4.jar,
+ junit-addons-1.4.jar,
+ log4j-1.2.15.jar,
+ mx4j-tools-3.0.1.jar,
+ jna-3.2.2.jar,
+ cssparser-0.9.5.jar,
+ htmlunit-2.6.jar,
+ htmlunit-core-js-2.6.jar,
+ nekohtml-1.9.13.jar,
+ annotations-api-6.0.20.jar,
+ catalina-6.0.20.jar,
+ el-api-6.0.20.jar,
+ jasper-6.0.20.jar,
+ jasper-el-6.0.20.jar,
+ jasper-jdt-6.0.20.jar,
+ jsp-api-6.0.20.jar,
+ juli-6.0.20.jar,
+ servlet-api-6.0.20.jar,
+ hamcrest-all-1.1.jar,
+ json-20080701.jar,
+ jetty-6.1.4.jar,
+ jetty-util-6.1.4.jar,
+ servlet-api-2.5-6.1.4.jar,
+ selenium-chrome-driver-2.0a2.jar,
+ selenium-common-2.0a2.jar,
+ selenium-firefox-driver-2.0a2.jar,
+ selenium-htmlunit-driver-2.0a2.jar,
+ selenium-ie-driver-2.0a2.jar,
+ selenium-remote-client-2.0a2.jar,
+ selenium-remote-common-2.0a2.jar,
+ selenium-server-2.0a2.jar,
+ selenium-support-2.0a2.jar,
+ selenium-java-client-driver-1.0.2.jar,
+ sac-1.3.jar,
+ serializer-2.7.1.jar,
+ xalan-2.7.1.jar,
+ xercesImpl-2.6.2.jar,
+ xmlParserAPIs-2.6.2.jar,
+ xml-apis-1.3.04.jar
Property changes on: plugin/trunk/META-INF/MANIFEST.MF
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: plugin/trunk/build.properties
===================================================================
--- plugin/trunk/build.properties (rev 0)
+++ plugin/trunk/build.properties 2010-04-14 15:32:06 UTC (rev 16)
@@ -0,0 +1,17 @@
+src.includes = src/main/java/net/,\
+ src/main/resources/icons/,\
+ src/main/resources/selenium/,\
+ src/main/resources/templates/,\
+ src/main/resources/log4j.xml,\
+ src/main/resources/log4j.dtd,\
+ plugin.xml,\
+ pom.xml,\
+ build.properties,\
+ META-INF/
+bin.includes = plugin.xml,\
+ target/classes/icons/,\
+ target/classes/net/,\
+ target/classes/selenium/,\
+ target/classes/templates/,\
+ META-INF/
+jars.compile.order =
Property changes on: plugin/trunk/build.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: plugin/trunk/plugin.xml
===================================================================
--- plugin/trunk/plugin.xml 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/plugin.xml 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,13 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
-<plugin
- id="stump"
- name="stump"
- version="0.1.0.0"
->
-
- <extension point="org.eclipse.ui.newWizards">
+<plugin>
+ <extension point="org.eclipse.ui.newWizards">
<category
name="%NewWizard.category"
id="stump.eclipse.new">
Modified: plugin/trunk/pom.xml
===================================================================
--- plugin/trunk/pom.xml 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/pom.xml 2010-04-14 15:32:06 UTC (rev 16)
@@ -121,16 +121,16 @@
<artifactId>javassist</artifactId>
<version>3.1</version>
</dependency>
-
- <!-- JETTY -->
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty</artifactId>
- <version>6.1.4</version>
- </dependency>
-
+
+ <!-- JETTY -->
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.1.4</version>
+ </dependency>
+
<!-- eclipse -->
- <dependency>
+ <dependency>
<groupId>org.eclipse.core</groupId>
<artifactId>commands</artifactId>
<version>(1.0.0,]</version>
@@ -148,27 +148,27 @@
<version>(1.0.0,]</version>
<scope>provided</scope>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.eclipse.core</groupId>
<artifactId>filebuffers</artifactId>
<version>(1.0.0,]</version>
<scope>provided</scope>
- <exclusions>
+ <exclusions>
<exclusion>
<groupId>org.eclipse.core</groupId>
<artifactId>runtime</artifactId>
</exclusion>
- <exclusion>
+ <exclusion>
<groupId>org.eclipse.core</groupId>
<artifactId>filesystem</artifactId>
</exclusion>
- <exclusion>
+ <exclusion>
<groupId>org.eclipse</groupId>
<artifactId>text</artifactId>
</exclusion>
- </exclusions>
+ </exclusions>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.eclipse.core</groupId>
<artifactId>resources</artifactId>
<version>(1.0.0,]</version>
@@ -186,7 +186,7 @@
<version>(1.0.0,]</version>
<scope>provided</scope>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.eclipse</groupId>
<artifactId>jface</artifactId>
<version>(1.0.0,]</version>
@@ -208,7 +208,7 @@
</exclusion>
</exclusions>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.eclipse</groupId>
<artifactId>text</artifactId>
<version>(1.0.0,]</version>
@@ -224,13 +224,13 @@
</exclusion>
</exclusions>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.eclipse</groupId>
<artifactId>swt</artifactId>
<version>(1.0.0,]</version>
<scope>provided</scope>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.eclipse</groupId>
<artifactId>ui</artifactId>
<version>(1.0.0,]</version>
@@ -265,10 +265,10 @@
<scope>provided</scope>
<exclusions>
<exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- </exclusions>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
@@ -277,9 +277,9 @@
<scope>provided</scope>
<exclusions>
<exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
<exclusion>
<groupId>org.eclipse.core</groupId>
<artifactId>expressions</artifactId>
@@ -296,283 +296,359 @@
<groupId>org.eclipse.core</groupId>
<artifactId>variables</artifactId>
</exclusion>
- <exclusion>
- <groupId>org.eclipse</groupId>
- <artifactId>text</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.debug</groupId>
- <artifactId>core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui.workbench</groupId>
- <artifactId>texteditor</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ltk.core</groupId>
- <artifactId>refactoring</artifactId>
- </exclusion>
- <!-- -->
- <exclusion>
- <groupId>org.eclipse.ltk.ui</groupId>
- <artifactId>refactoring</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui</groupId>
- <artifactId>console</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui</groupId>
- <artifactId>editors</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>launching</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse</groupId>
- <artifactId>compare</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui.views.properties</groupId>
- <artifactId>tabbed</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt.core</groupId>
- <artifactId>manipulation</artifactId>
- </exclusion>
-
-
- <exclusion>
- <!-- not found -->
- <groupId>org.eclipse.equinox.p2.metadata</groupId>
- <artifactId>repository</artifactId>
- </exclusion>
+ <exclusion>
+ <groupId>org.eclipse</groupId>
+ <artifactId>text</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui.workbench</groupId>
+ <artifactId>texteditor</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ltk.core</groupId>
+ <artifactId>refactoring</artifactId>
+ </exclusion>
+ <!-- -->
+ <exclusion>
+ <groupId>org.eclipse.ltk.ui</groupId>
+ <artifactId>refactoring</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>console</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>editors</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>launching</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse</groupId>
+ <artifactId>compare</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui.views.properties</groupId>
+ <artifactId>tabbed</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt.core</groupId>
+ <artifactId>manipulation</artifactId>
+ </exclusion>
+
+
+ <exclusion>
+ <!-- not found -->
+ <groupId>org.eclipse.equinox.p2.metadata</groupId>
+ <artifactId>repository</artifactId>
+ </exclusion>
</exclusions>
</dependency>
-
- <dependency>
- <groupId>org.eclipse.debug</groupId>
- <artifactId>core</artifactId>
- <version>(1.0.0,]</version>
+
+ <dependency>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>core</artifactId>
+ <version>(1.0.0,]</version>
<scope>provided</scope>
- <exclusions>
+ <exclusions>
<exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filesystem</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.eclipse.ui.workbench</groupId>
- <artifactId>texteditor</artifactId>
- <version>(1.0.0,]</version>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filesystem</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>ui</artifactId>
+ <version>(1.0.0,]</version>
<scope>provided</scope>
- <exclusions>
+ <exclusions>
<exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>expressions</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.compare</groupId>
- <artifactId>core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.eclipse.ui</groupId>
- <artifactId>editors</artifactId>
- <version>(1.0.0,]</version>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>console</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>expressions</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filesystem</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse</groupId>
+ <artifactId>text</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui.workbench</groupId>
+ <artifactId>texteditor</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>editors</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.equinox.p2.metadata</groupId>
+ <artifactId>repository</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.ui.workbench</groupId>
+ <artifactId>texteditor</artifactId>
+ <version>(1.0.0,]</version>
<scope>provided</scope>
- <exclusions>
+ <exclusions>
<exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filebuffers</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filesystem</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui.workbench</groupId>
- <artifactId>texteditor</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.eclipse.ltk.core</groupId>
- <artifactId>refactoring</artifactId>
- <version>(1.0.0,]</version>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>expressions</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.compare</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>editors</artifactId>
+ <version>(1.0.0,]</version>
<scope>provided</scope>
- <exclusions>
+ <exclusions>
<exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>commands</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>expressions</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filesystem</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filebuffers</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse</groupId>
- <artifactId>text</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>junit</artifactId>
- <version>(1.0.0,]</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>expressions</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filesystem</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>filebuffers</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>variables</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.debug</groupId>
- <artifactId>core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse</groupId>
- <artifactId>compare</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse</groupId>
- <artifactId>text</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui</groupId>
- <artifactId>console</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui</groupId>
- <artifactId>editors</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui.views.properties</groupId>
- <artifactId>tabbed</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ui.workbench</groupId>
- <artifactId>texteditor</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ltk.core</groupId>
- <artifactId>refactoring</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.ltk.ui</groupId>
- <artifactId>refactoring</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>debug</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>launching</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt.core</groupId>
- <artifactId>manipulation</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt.junit</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.equinox</groupId>
- <artifactId>common</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.equinox</groupId>
- <artifactId>frameworkadmin</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.equinox.p2.metadata</groupId>
- <artifactId>repository</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.equinox.simpleconfigurator</groupId>
- <artifactId>manipulator</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>launching</artifactId>
- <version>(1.0.0,]</version>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filebuffers</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filesystem</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui.workbench</groupId>
+ <artifactId>texteditor</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>ide</artifactId>
+ <version>(1.0.0,]</version>
<scope>provided</scope>
- <exclusions>
- <exclusion>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.debug</groupId>
- <artifactId>core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.eclipse.jdt</groupId>
- <artifactId>debug</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.equinox.p2.metadata</groupId>
+ <artifactId>repository</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>workbench</artifactId>
+ <version>(1.0.0,]</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>databinding</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core.databinding</groupId>
+ <artifactId>observable</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core.databinding</groupId>
+ <artifactId>property</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.ltk.core</groupId>
+ <artifactId>refactoring</artifactId>
+ <version>(1.0.0,]</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>commands</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>expressions</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filesystem</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filebuffers</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse</groupId>
+ <artifactId>text</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>junit</artifactId>
+ <version>(1.0.0,]</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>expressions</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filesystem</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>filebuffers</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>variables</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse</groupId>
+ <artifactId>compare</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse</groupId>
+ <artifactId>text</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>console</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>editors</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui.views.properties</groupId>
+ <artifactId>tabbed</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ui.workbench</groupId>
+ <artifactId>texteditor</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ltk.core</groupId>
+ <artifactId>refactoring</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.ltk.ui</groupId>
+ <artifactId>refactoring</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>debug</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>launching</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt.core</groupId>
+ <artifactId>manipulation</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt.junit</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.equinox</groupId>
+ <artifactId>common</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.equinox</groupId>
+ <artifactId>frameworkadmin</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.equinox.p2.metadata</groupId>
+ <artifactId>repository</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.equinox.simpleconfigurator</groupId>
+ <artifactId>manipulator</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>launching</artifactId>
+ <version>(1.0.0,]</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.core</groupId>
+ <artifactId>runtime</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>debug</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
- <includes>
- <include>**/*.html</include>
- <include>**/*.properties</include>
- <include>**/*.js</include>
- <include>**/*.xml</include>
- <include>**/*.css</include>
- </includes>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
@@ -581,14 +657,13 @@
<testResources>
<testResource>
<directory>src/test/java</directory>
- <includes>
- <include>**/*.html</include>
- <include>**/*.properties</include>
- <include>**/*.js</include>
- <include>**/*.xml</include>
- <include>**/*.css</include>
- </includes>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
</testResource>
+ <testResource>
+ <directory>src/main/resources</directory>
+ </testResource>
</testResources>
<plugins>
@@ -604,9 +679,47 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <classpathContainers>
+ <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+ <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+ </classpathContainers>
+ <projectnatures>
+ <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+ <projectnature>org.eclipse.pde.PluginNature</projectnature>
+ </projectnatures>
+ <downloadJavadocs>true</downloadJavadocs>
+ <downloadSources>true</downloadSources>
+ <!--
+ <buildcommands>
+ <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
+ <buildcommand>org.eclipse.pde.ManifestBuilder</buildcommand>
+ <buildcommand>org.eclipse.pde.SchemaBuilder</buildcommand>
+ <buildcommand>org.maven.ide.eclipse.maven2Builder</buildcommand>
+ </buildcommands>
+ -->
+ <pde>true</pde>
+ </configuration>
</plugin>
+
+ <!--
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ -->
</plugins>
</build>
+
<repositories>
<repository>
<id>Laughingpanda Repo</id>
Modified: plugin/trunk/src/main/java/net/sf/stump/api/junit/AbstractTestSuite.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/junit/AbstractTestSuite.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/junit/AbstractTestSuite.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,6 +1,6 @@
-package net.sf.stump.junit;
+package net.sf.stump.api.junit;
-import net.sf.stump.runner.Servers;
+import net.sf.stump.api.runner.Servers;
import com.thoughtworks.selenium.Selenium;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/junit/PackageMatchingFilter.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/junit/PackageMatchingFilter.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/junit/PackageMatchingFilter.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.junit;
+package net.sf.stump.api.junit;
import java.util.regex.Pattern;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/junit/StumpTestCase.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/junit/StumpTestCase.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/junit/StumpTestCase.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,12 +1,12 @@
-package net.sf.stump.junit;
+package net.sf.stump.api.junit;
import java.util.Iterator;
import junit.framework.TestCase;
-import net.sf.stump.runner.Servers;
-import net.sf.stump.web.IComponentFactory;
-import net.sf.stump.web.Stump;
+import net.sf.stump.api.runner.Servers;
+import net.sf.stump.api.web.IComponentFactory;
+import net.sf.stump.api.web.Stump;
import org.apache.wicket.Component;
import org.apache.wicket.MarkupContainer;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/junit4/PreparePreview.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/junit4/PreparePreview.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/junit4/PreparePreview.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.junit4;
+package net.sf.stump.api.junit4;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/junit4/StumpTestCase.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/junit4/StumpTestCase.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/junit4/StumpTestCase.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.junit4;
+package net.sf.stump.api.junit4;
import org.junit.After;
import org.junit.Before;
@@ -8,13 +8,13 @@
/**
- * A JUnit 4 adaptation of {@link net.sf.stump.junit.StumpTestCase}.
+ * A JUnit 4 adaptation of {@link net.sf.stump.api.junit.StumpTestCase}.
*
* @author Paul Mogren
*/
@RunWith(JUnit4ClassRunner.class)
public abstract class StumpTestCase
- extends net.sf.stump.junit.StumpTestCase {
+ extends net.sf.stump.api.junit.StumpTestCase {
/**
* This method serves two purposes:
@@ -25,7 +25,7 @@
* <li>To prevent servers from being started before each test method.</li>
* </ul>
*
- * @see net.sf.stump.junit.StumpTestCase#setUp()
+ * @see net.sf.stump.api.junit.StumpTestCase#setUp()
*/
@Before @Override
public void setUp() throws Exception {
@@ -35,7 +35,7 @@
/**
* This method is hooked into the test lifecycle during @After.
*
- * @see net.sf.stump.junit.StumpTestCase#tearDown()
+ * @see net.sf.stump.api.junit.StumpTestCase#tearDown()
*/
@After @Override
public void tearDown() throws Exception {
@@ -46,7 +46,7 @@
* Adds the necessary annotations to the inherited method for launching the
* component under test.
*
- * @see net.sf.stump.junit.StumpTestCase#launchPanel()
+ * @see net.sf.stump.api.junit.StumpTestCase#launchPanel()
*/
@Override @PreparePreview @Test
public void launchPanel() {
Modified: plugin/trunk/src/main/java/net/sf/stump/api/metadata/ProjectMetadata.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/metadata/ProjectMetadata.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/metadata/ProjectMetadata.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.metadata;
+package net.sf.stump.api.metadata;
import java.io.File;
import java.io.FileInputStream;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/runner/Launcher.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/runner/Launcher.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/runner/Launcher.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.runner;
+package net.sf.stump.api.runner;
import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;
@@ -15,8 +15,8 @@
import junit.framework.TestResult;
import junit.framework.TestSuite;
-import net.sf.stump.junit.StumpTestCase;
-import net.sf.stump.junit4.PreparePreview;
+import net.sf.stump.api.junit.StumpTestCase;
+import net.sf.stump.api.junit4.PreparePreview;
import org.junit.runner.Description;
import org.junit.runner.manipulation.Filter;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/runner/Main.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/runner/Main.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/runner/Main.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,6 +1,6 @@
-package net.sf.stump.runner;
+package net.sf.stump.api.runner;
-import net.sf.stump.web.Stump;
+import net.sf.stump.api.web.Stump;
/**
Modified: plugin/trunk/src/main/java/net/sf/stump/api/runner/Servers.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/runner/Servers.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/runner/Servers.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.runner;
+package net.sf.stump.api.runner;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/runner/ServletContainer.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/runner/ServletContainer.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/runner/ServletContainer.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,10 +1,10 @@
-package net.sf.stump.runner;
+package net.sf.stump.api.runner;
import java.io.IOException;
-import net.sf.stump.metadata.ProjectMetadata;
-import net.sf.stump.web.Stump;
-import net.sf.stump.web.StumpApplicationFactory;
+import net.sf.stump.api.metadata.ProjectMetadata;
+import net.sf.stump.api.web.Stump;
+import net.sf.stump.api.web.StumpApplicationFactory;
import org.apache.wicket.protocol.http.WicketFilter;
import org.openqa.jetty.jetty.Server;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/web/HomePage.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/web/HomePage.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/web/HomePage.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,6 +1,6 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
-import net.sf.stump.junit.StumpTestCase;
+import net.sf.stump.api.junit.StumpTestCase;
import org.apache.wicket.Component;
import org.apache.wicket.MarkupContainer;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/web/IComponentFactory.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/web/IComponentFactory.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/web/IComponentFactory.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import org.apache.wicket.Component;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/web/StaticHeaderContributor.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/web/StaticHeaderContributor.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/web/StaticHeaderContributor.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import java.util.Collection;
import java.util.Iterator;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/web/Stump.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/web/Stump.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/web/Stump.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,8 +1,8 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import java.util.List;
-import net.sf.stump.metadata.ProjectMetadata;
+import net.sf.stump.api.metadata.ProjectMetadata;
/**
* @author Ville Peurala
Modified: plugin/trunk/src/main/java/net/sf/stump/api/web/StumpApplication.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/web/StumpApplication.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/web/StumpApplication.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import org.apache.wicket.protocol.http.WebApplication;
import org.apache.wicket.util.time.Duration;
Modified: plugin/trunk/src/main/java/net/sf/stump/api/web/StumpApplicationFactory.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/web/StumpApplicationFactory.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/api/web/StumpApplicationFactory.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import org.apache.wicket.protocol.http.IWebApplicationFactory;
import org.apache.wicket.protocol.http.WebApplication;
Modified: plugin/trunk/src/main/java/net/sf/stump/eclipse/configuration/WebResourceConfiguration.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/eclipse/configuration/WebResourceConfiguration.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/eclipse/configuration/WebResourceConfiguration.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,7 +1,7 @@
package net.sf.stump.eclipse.configuration;
+import net.sf.stump.api.metadata.ProjectMetadata;
import net.sf.stump.eclipse.swt.LabelledText;
-import net.sf.stump.metadata.ProjectMetadata;
import org.eclipse.core.resources.IProject;
import org.eclipse.jface.preference.IPreferenceStore;
Modified: plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/PreviewEditor.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/PreviewEditor.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/PreviewEditor.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,9 +1,9 @@
package net.sf.stump.eclipse.editor;
+import net.sf.stump.api.metadata.ProjectMetadata;
import net.sf.stump.eclipse.WicketPlugin;
import net.sf.stump.eclipse.parser.PreviewConfiguration;
import net.sf.stump.eclipse.parser.PreviewParser;
-import net.sf.stump.metadata.ProjectMetadata;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.swt.SWT;
Modified: plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/WicketEditor.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/WicketEditor.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/eclipse/editor/WicketEditor.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -45,9 +45,9 @@
* @author Igor Vaynberg
*/
public class WicketEditor extends MultiPageEditorPart implements
- EditorProvider, EditorManagerListener, ITextEditor,
- ITextEditorExtension, ITextEditorExtension2, ITextEditorExtension3,
- INavigationLocationProvider {
+EditorProvider, EditorManagerListener, ITextEditor,
+ITextEditorExtension, ITextEditorExtension2, ITextEditorExtension3,
+INavigationLocationProvider {
public static final String ID = "stump.eclipse.editor";
private IType type;
@@ -86,12 +86,12 @@
@Override
public void init(final IEditorSite site, final IEditorInput input)
- throws PartInitException {
+ throws PartInitException {
super.init(site, input);
final IFileEditorInput classFile = (IFileEditorInput) input;
final ICompilationUnit unit = (ICompilationUnit) JavaCore
- .create(classFile.getFile());
+ .create(classFile.getFile());
type = unit.getType(new JavaProjectHelper().getSimpleTypeName(input));
// TODO review for possible solution?
@@ -104,9 +104,9 @@
public IType getJavaType() {
final ICompilationUnit unit = (ICompilationUnit) JavaCore
- .create(((IFileEditorInput) getEditorInput()).getFile());
+ .create(((IFileEditorInput) getEditorInput()).getFile());
return unit.getType(new JavaProjectHelper()
- .getSimpleTypeName(getEditorInput()));
+ .getSimpleTypeName(getEditorInput()));
}
/*
@@ -221,7 +221,7 @@
}
private void addPreviewPageIfHtmlResource(final IFile file)
- throws PartInitException {
+ throws PartInitException {
if (file.getFileExtension().equals("html")) {
final int index = addPage(new PreviewEditor(), new FileEditorInput(
file));
@@ -394,7 +394,7 @@
public void showHighlightRangeOnly(final boolean showHighlightRangeOnly) {
((ITextEditor) getJavaEditor())
- .showHighlightRangeOnly(showHighlightRangeOnly);
+ .showHighlightRangeOnly(showHighlightRangeOnly);
}
public void setHighlightRange(final int offset, final int length,
@@ -435,14 +435,14 @@
public void showChangeInformation(final boolean show) {
if (isTextEditorExtension3()) {
((ITextEditorExtension3) getActiveEditor())
- .showChangeInformation(show);
+ .showChangeInformation(show);
}
}
public boolean isChangeInformationShowing() {
if (isTextEditorExtension3()) {
return ((ITextEditorExtension3) getActiveEditor())
- .isChangeInformationShowing();
+ .isChangeInformationShowing();
}
return false;
}
@@ -465,7 +465,7 @@
public boolean isEditorInputReadOnly() {
if (isTextEditorExtension()) {
return ((ITextEditorExtension) getActiveEditor())
- .isEditorInputReadOnly();
+ .isEditorInputReadOnly();
}
return false;
}
@@ -473,14 +473,14 @@
public void addRulerContextMenuListener(final IMenuListener listener) {
if (isTextEditorExtension()) {
((ITextEditorExtension) getActiveEditor())
- .addRulerContextMenuListener(listener);
+ .addRulerContextMenuListener(listener);
}
}
public void removeRulerContextMenuListener(final IMenuListener listener) {
if (isTextEditorExtension()) {
((ITextEditorExtension) getActiveEditor())
- .removeRulerContextMenuListener(listener);
+ .removeRulerContextMenuListener(listener);
}
}
@@ -494,18 +494,18 @@
public INavigationLocation createEmptyNavigationLocation() {
return ((INavigationLocationProvider) getJavaEditor())
- .createEmptyNavigationLocation();
+ .createEmptyNavigationLocation();
}
public INavigationLocation createNavigationLocation() {
return ((INavigationLocationProvider) getJavaEditor())
- .createNavigationLocation();
+ .createNavigationLocation();
}
public boolean isEditorInputModifiable() {
if (isTextEditorExtension2()) {
return ((ITextEditorExtension2) getActiveEditor())
- .isEditorInputModifiable();
+ .isEditorInputModifiable();
}
return false;
}
@@ -513,7 +513,7 @@
public boolean validateEditorInputState() {
if (isTextEditorExtension2()) {
return ((ITextEditorExtension2) getActiveEditor())
- .validateEditorInputState();
+ .validateEditorInputState();
}
return false;
}
@@ -559,7 +559,7 @@
if (source instanceof IEditorPart) {
final IEditorPart editor = (IEditorPart) source;
final IFileEditorInput input = (IFileEditorInput) editor
- .getEditorInput();
+ .getEditorInput();
final int index = indexOf(editor);
if (index != -1) {
final String dirtyMarker = editor.isDirty() ? "* " : "";
Modified: plugin/trunk/src/main/java/net/sf/stump/eclipse/launcher/WicketLaunchShortcut.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/eclipse/launcher/WicketLaunchShortcut.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/eclipse/launcher/WicketLaunchShortcut.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,8 +1,8 @@
package net.sf.stump.eclipse.launcher;
+import net.sf.stump.api.runner.Main;
+import net.sf.stump.api.web.Stump;
import net.sf.stump.eclipse.WicketPluginView;
-import net.sf.stump.runner.Main;
-import net.sf.stump.web.Stump;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
Modified: plugin/trunk/src/main/java/net/sf/stump/eclipse/parser/PreviewParser.java
===================================================================
--- plugin/trunk/src/main/java/net/sf/stump/eclipse/parser/PreviewParser.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/main/java/net/sf/stump/eclipse/parser/PreviewParser.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -5,7 +5,7 @@
import java.io.IOException;
import java.util.Stack;
-import net.sf.stump.metadata.ProjectMetadata;
+import net.sf.stump.api.metadata.ProjectMetadata;
import net.sf.stump.util.InputStreamReader;
import net.sf.stump.util.ParserApplication;
Modified: plugin/trunk/src/test/java/net/sf/stump/api/junit/StumpTestCaseTest.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/junit/StumpTestCaseTest.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/api/junit/StumpTestCaseTest.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,7 +1,7 @@
-package net.sf.stump.junit;
+package net.sf.stump.api.junit;
-import net.sf.stump.junit.StumpTestCase;
-import net.sf.stump.web.IComponentFactory;
+import net.sf.stump.api.junit.StumpTestCase;
+import net.sf.stump.api.web.IComponentFactory;
import junit.framework.TestCase;
/**
Modified: plugin/trunk/src/test/java/net/sf/stump/api/metadata/ProjectMetadataTest.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/metadata/ProjectMetadataTest.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/api/metadata/ProjectMetadataTest.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -2,11 +2,11 @@
* Copyright (c) 2006 Reaktor Innovations Oy
* All rights reserved.
*/
-package net.sf.stump.metadata;
+package net.sf.stump.api.metadata;
import java.util.Arrays;
-import net.sf.stump.metadata.ProjectMetadata;
+import net.sf.stump.api.metadata.ProjectMetadata;
import junit.framework.TestCase;
Modified: plugin/trunk/src/test/java/net/sf/stump/api/runner/LauncherTest.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/runner/LauncherTest.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/api/runner/LauncherTest.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,11 +1,11 @@
-package net.sf.stump.runner;
+package net.sf.stump.api.runner;
import java.lang.reflect.Method;
import java.util.Arrays;
-import net.sf.stump.junit.StumpTestCase;
-import net.sf.stump.runner.Launcher;
-import net.sf.stump.web.IComponentFactory;
+import net.sf.stump.api.junit.StumpTestCase;
+import net.sf.stump.api.runner.Launcher;
+import net.sf.stump.api.web.IComponentFactory;
import junit.framework.TestCase;
import junit.framework.TestResult;
Modified: plugin/trunk/src/test/java/net/sf/stump/api/web/CustomWebApplication.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/web/CustomWebApplication.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/api/web/CustomWebApplication.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,4 +1,4 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import org.apache.wicket.markup.html.pages.AccessDeniedPage;
import org.apache.wicket.protocol.http.WebApplication;
Modified: plugin/trunk/src/test/java/net/sf/stump/api/web/StaticHeaderContributorTest.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/web/StaticHeaderContributorTest.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/api/web/StaticHeaderContributorTest.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,10 +1,10 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import java.util.Arrays;
import junit.framework.TestCase;
-import net.sf.stump.web.StaticHeaderContributor;
+import net.sf.stump.api.web.StaticHeaderContributor;
import org.apache.wicket.markup.html.IHeaderContributor;
Modified: plugin/trunk/src/test/java/net/sf/stump/api/web/StumpApplicationFactoryTest.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/web/StumpApplicationFactoryTest.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/api/web/StumpApplicationFactoryTest.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -1,10 +1,10 @@
-package net.sf.stump.web;
+package net.sf.stump.api.web;
import junit.framework.TestCase;
-import net.sf.stump.web.Stump;
-import net.sf.stump.web.StumpApplication;
-import net.sf.stump.web.StumpApplicationFactory;
+import net.sf.stump.api.web.Stump;
+import net.sf.stump.api.web.StumpApplication;
+import net.sf.stump.api.web.StumpApplicationFactory;
import org.apache.wicket.protocol.http.WebApplication;
Modified: plugin/trunk/src/test/java/net/sf/stump/eclipse/parser/PreviewParserTest.java
===================================================================
--- plugin/trunk/src/test/java/net/sf/stump/eclipse/parser/PreviewParserTest.java 2010-04-13 21:26:33 UTC (rev 15)
+++ plugin/trunk/src/test/java/net/sf/stump/eclipse/parser/PreviewParserTest.java 2010-04-14 15:32:06 UTC (rev 16)
@@ -2,9 +2,9 @@
import java.io.IOException;
+import net.sf.stump.api.metadata.ProjectMetadata;
import net.sf.stump.eclipse.parser.PreviewConfiguration;
import net.sf.stump.eclipse.parser.PreviewParser;
-import net.sf.stump.metadata.ProjectMetadata;
import junit.framework.TestCase;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|