changeset 100:fac2eb0384a2

Added NullCodeSegment
author one
date Tue, 19 Nov 2013 16:29:09 +0900
parents 55a4f2bb44a8
children 8f5bbf182147
files pom.xml src/jungle/app/bbs/codesegment/NullCodeSegment.java
diffstat 2 files changed, 37 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/pom.xml	Tue Nov 19 16:28:29 2013 +0900
+++ b/pom.xml	Tue Nov 19 16:29:09 2013 +0900
@@ -15,6 +15,31 @@
         </configuration>
       </plugin>
 
+<--
+   <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <version>1.3</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <finalName>DistributeJungleBBS</finalName>
+              <transformers>
+                <transformer
+implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+                  <mainClass>jungle.app.bbs.DistributeApp</mainClass>
+                </transformer>
+              </transformers>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+-->
+
     </plugins>
   </build>
   <properties>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/jungle/app/bbs/codesegment/NullCodeSegment.java	Tue Nov 19 16:29:09 2013 +0900
@@ -0,0 +1,12 @@
+package jungle.app.bbs.codesegment;
+
+import alice.codesegment.CodeSegment;
+
+public class NullCodeSegment extends CodeSegment {
+
+	@Override
+	public void run() {
+		
+	}
+
+}