Author: ruschein Date: 2010-11-29 08:21:08 -0800 (Mon, 29 Nov 2010) New Revision: 23023
Added: core3/misc-util/ core3/misc-util/trunk/ core3/misc-util/trunk/osgi.bnd core3/misc-util/trunk/pom.xml core3/misc-util/trunk/src/ core3/misc-util/trunk/src/main/ core3/misc-util/trunk/src/main/java/ core3/misc-util/trunk/src/main/java/org/ core3/misc-util/trunk/src/main/java/org/cytoscape/ core3/misc-util/trunk/src/main/java/org/cytoscape/util/ core3/misc-util/trunk/src/test/ core3/misc-util/trunk/src/test/java/ core3/misc-util/trunk/src/test/java/org/ core3/misc-util/trunk/src/test/java/org/cytoscape/ core3/misc-util/trunk/src/test/java/org/cytoscape/util/ Log: Various bit and pieces that don't neatly fit anywhere else. Added: core3/misc-util/trunk/osgi.bnd =================================================================== --- core3/misc-util/trunk/osgi.bnd (rev 0) +++ core3/misc-util/trunk/osgi.bnd 2010-11-29 16:21:08 UTC (rev 23023) @@ -0,0 +1,4 @@ +#----------------------------------------------------------------- +# Use this file to add customized Bnd instructions for the bundle +#----------------------------------------------------------------- + Added: core3/misc-util/trunk/pom.xml =================================================================== --- core3/misc-util/trunk/pom.xml (rev 0) +++ core3/misc-util/trunk/pom.xml 2010-11-29 16:21:08 UTC (rev 23023) @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + + <parent> + <groupId>org.cytoscape</groupId> + <artifactId>parent</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + + <properties> + <bundle.symbolicName>org.cytoscape.misc-util</bundle.symbolicName> + <bundle.namespace>org.cytoscape.util</bundle.namespace> + </properties> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.cytoscape</groupId> + <artifactId>misc-util</artifactId> + <version>1.0-SNAPSHOT</version> + + <name>${bundle.symbolicName}</name> + + <packaging>bundle</packaging> + + <repositories> + <!-- bootstrap for cytoscape dependencies, namely the parent POM snapshots --> + <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> + <!-- bootstrap for cytoscape dependencies, namely the parent POM releases --> + <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> + </repositories> + + <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.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> + <!-- + | assume public classes are in the top package, and private classes are under ".internal" + --> + <Export-Package>!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${pom.version}"</Export-Package> + <Private-Package>${bundle.namespace}.internal.*</Private-Package> + <!-- + | each module can override these defaults in their osgi.bnd file + --> + <_include>-osgi.bnd</_include> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + +</project> -- 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.
