Author: pwang
Date: 2011-02-25 16:28:15 -0800 (Fri, 25 Feb 2011)
New Revision: 24241
Added:
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/pom.xml
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/java/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/java/org/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/java/org/cytoscape/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/java/org/cytoscape/sample/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/java/org/cytoscape/sample/internal/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/resources/
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/resources/plugin.props
Log:
Original creation
Added: csplugins/trunk/ucsd/pwang/cy3samples/sample05a/pom.xml
===================================================================
--- csplugins/trunk/ucsd/pwang/cy3samples/sample05a/pom.xml
(rev 0)
+++ csplugins/trunk/ucsd/pwang/cy3samples/sample05a/pom.xml 2011-02-26
00:28:15 UTC (rev 24241)
@@ -0,0 +1,110 @@
+<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.cytoscape</groupId>
+ <artifactId>sample05a</artifactId>
+ <version>0.1</version>
+ <packaging>maven-plugin</packaging>
+ <name>sample05a</name>
+ <description>Test plugin 03a</description>
+
+ <properties>
+ <bundle.symbolicName>sample05a</bundle.symbolicName>
+ <bundle.namespace>org.cytoscape.sample</bundle.namespace>
+ </properties>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ <!--
+ | example additional resource entries, useful when building Eclipse RCP
applications
+ -->
+ <resource>
+ <directory>.</directory>
+ <includes>
+ <include>plugin.xml</include>
+ <include>plugin.properties</include>
+ <include>icons/**</include>
+ </includes>
+ </resource>
+ </resources>
+ <plugins>
+
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+
<Cytoscape-Plugin>org.cytoscape.sample.internal.Sample05a</Cytoscape-Plugin>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.ops4j</groupId>
+ <artifactId>maven-pax-plugin</artifactId>
+ <version>1.4</version>
+ <!--
+ | enable improved OSGi compilation support for the bundle
life-cycle.
+ | to switch back to the standard bundle life-cycle, move this
setting
+ | down to the maven-bundle-plugin section
+ -->
+ <extensions>true</extensions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.3</version>
+ <!--
+ | the following instructions build a simple set of public/private
classes into an OSGi bundle
+ -->
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
+ <Bundle-Version>${pom.version}</Bundle-Version>
+ <_include>-osgi.bnd</_include>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.cytoscape</groupId>
+ <artifactId>plugin-api</artifactId>
+ <version>3.0.0-alpha3-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.cytoscape</groupId>
+ <artifactId>core-task-api</artifactId>
+ <version>3.0.0-alpha3-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.cytoscape</groupId>
+ <artifactId>swing-application-api</artifactId>
+ <version>3.0.0-alpha2-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.cytoscape</groupId>
+ <artifactId>work-swing-api</artifactId>
+ <version>3.0.0-alpha2-SNAPSHOT</version>
+ </dependency>
+
+ </dependencies>
+
+
+</project>
\ No newline at end of file
Added:
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/resources/plugin.props
===================================================================
---
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/resources/plugin.props
(rev 0)
+++
csplugins/trunk/ucsd/pwang/cy3samples/sample05a/src/main/resources/plugin.props
2011-02-26 00:28:15 UTC (rev 24241)
@@ -0,0 +1,28 @@
+# This props file would be filled out and included in the plugin jar file.
This props file will be used
+# to put information into the Plugin Manager about the plugin
+
+
+# -- The following properties are REQUIRED -- #
+
+# The plugin name that will be displayed to users
+pluginName=sample05a
+
+# Description used to give users information about the plugin such as what it
does.
+# Html tags are encouraged for formatting purposes.
+pluginDescription=Cytoscape plugin sample05a ...
+
+# Plugin version number, this must be two numbers separated by a decimlal.
Ex. 0.2, 14.03
+pluginVersion=0.1
+
+# Compatible Cytoscape version
+cytoscapeVersion=3.0
+
+# Category, use one of the categories listed on the website or create your own
+pluginCategory=Other
+
+# List of authors. Note each author and institution pair are separated by a :
(colon)
+# each additional author institution pair must be separated from other pairs
bye a ; (semicolon)
+pluginAuthorsIntsitutions=Peng-Liang Wang:UCSD
+
+# Date this plugin/plugin version was released
+releaseDate=February 25, 2011
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.