Author: mes
Date: 2010-10-22 16:44:46 -0700 (Fri, 22 Oct 2010)
New Revision: 22349
Modified:
cytoscape/trunk/archetypes/sample-plugin/pom.xml
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyAction.java
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyPlugin.java
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/test/java/MyActionTest.java
Log:
updated to fix some path bugs
Modified: cytoscape/trunk/archetypes/sample-plugin/pom.xml
===================================================================
--- cytoscape/trunk/archetypes/sample-plugin/pom.xml 2010-10-22 23:35:41 UTC
(rev 22348)
+++ cytoscape/trunk/archetypes/sample-plugin/pom.xml 2010-10-22 23:44:46 UTC
(rev 22349)
@@ -18,13 +18,13 @@
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
- <version>2.0-alpha-4</version>
+ <version>2.0-alpha-5</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
- <version>2.0-alpha-4</version>
+ <version>2.0-alpha-5</version>
<extensions>true</extensions>
</plugin>
</plugins>
Modified:
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
===================================================================
---
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
2010-10-22 23:35:41 UTC (rev 22348)
+++
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
2010-10-22 23:44:46 UTC (rev 22349)
@@ -16,7 +16,7 @@
<configuration>
<archive>
<manifestEntries>
- <Cytoscape-Plugin>${groupId}.MyPlugin</Cytoscape-Plugin>
+ <Cytoscape-Plugin>${package}.MyPlugin</Cytoscape-Plugin>
</manifestEntries>
</archive>
</configuration>
@@ -37,4 +37,41 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <repositories>
+ <repository>
+ <id>cytoscape_snapshots</id>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <name>Cytoscape Snapshots</name>
+
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/snapshots/</url>
+ </repository>
+ <repository>
+ <id>cytoscape_releases</id>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <name>Cytoscape Releases</name>
+
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/releases/</url>
+ </repository>
+ <repository>
+ <id>cytoscape_thirdparty</id>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <name>Cytoscape Third Party</name>
+
<url>http://cytoscape.wodaklab.org/nexus/content/repositories/thirdparty/</url>
+ </repository>
+ </repositories>
+
</project>
Modified:
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyAction.java
===================================================================
---
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyAction.java
2010-10-22 23:35:41 UTC (rev 22348)
+++
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyAction.java
2010-10-22 23:44:46 UTC (rev 22349)
@@ -1,7 +1,7 @@
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
-package ${packageInPathFormat};
+package ${package};
import cytoscape.Cytoscape;
import cytoscape.util.CytoscapeAction;
Modified:
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyPlugin.java
===================================================================
---
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyPlugin.java
2010-10-22 23:35:41 UTC (rev 22348)
+++
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/main/java/MyPlugin.java
2010-10-22 23:44:46 UTC (rev 22349)
@@ -1,7 +1,7 @@
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
-package ${packageInPathFormat};
+package ${package};
import cytoscape.Cytoscape;
import cytoscape.plugin.CytoscapePlugin;
Modified:
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/test/java/MyActionTest.java
===================================================================
---
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/test/java/MyActionTest.java
2010-10-22 23:35:41 UTC (rev 22348)
+++
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/src/test/java/MyActionTest.java
2010-10-22 23:44:46 UTC (rev 22349)
@@ -1,7 +1,7 @@
#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
-package ${packageInPathFormat};
+package ${package};
import junit.framework.Test;
import junit.framework.TestCase;
--
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.