> <parent> > <groupId>org.apache.cxf</groupId> > - <artifactId>dosgi</artifactId> > + <artifactId>cxf-dosgi-ri</artifactId> > <version>1.0-SNAPSHOT</version> > </parent>
I'm wondering if it make more sense to do: <groupId>org.apache.cxf.dosgi</groupId> to put all the dosgi stuff into it's own groupId and thus subdir in the maven repo and such. Thoughts? Dan On Mon February 2 2009 6:39:09 am [email protected] wrote: > Author: davidb > Date: Mon Feb 2 11:39:08 2009 > New Revision: 739964 > > URL: http://svn.apache.org/viewvc?rev=739964&view=rev > Log: > Added some bits for maven deployment. > > Modified: > cxf/dosgi/trunk/parent/pom.xml > cxf/dosgi/trunk/pom.xml > > Modified: cxf/dosgi/trunk/parent/pom.xml > URL: > http://svn.apache.org/viewvc/cxf/dosgi/trunk/parent/pom.xml?rev=739964&r1=7 >39963&r2=739964&view=diff > =========================================================================== >=== --- cxf/dosgi/trunk/parent/pom.xml (original) > +++ cxf/dosgi/trunk/parent/pom.xml Mon Feb 2 11:39:08 2009 > @@ -2,7 +2,7 @@ > > <parent> > <groupId>org.apache.cxf</groupId> > - <artifactId>dosgi</artifactId> > + <artifactId>cxf-dosgi-ri</artifactId> > <version>1.0-SNAPSHOT</version> > </parent> > > @@ -13,13 +13,7 @@ > > <packaging>pom</packaging> > <name>Distributed OSGI Reference Implementation Parent</name> > - <inceptionYear>2008</inceptionYear> > > - <organization> > - <name>Apache Software Foundation</name> > - <url>http://cxf.apache.org/</url> > - </organization> > - > <properties> > <cxf.version>2.2-SNAPSHOT</cxf.version> > <felix.version>1.4.1</felix.version> > > Modified: cxf/dosgi/trunk/pom.xml > URL: > http://svn.apache.org/viewvc/cxf/dosgi/trunk/pom.xml?rev=739964&r1=739963&r >2=739964&view=diff > =========================================================================== >=== --- cxf/dosgi/trunk/pom.xml (original) > +++ cxf/dosgi/trunk/pom.xml Mon Feb 2 11:39:08 2009 > @@ -19,17 +19,90 @@ > --> > <modelVersion>4.0.0</modelVersion> > <groupId>org.apache.cxf</groupId> > - <artifactId>dosgi</artifactId> > + <artifactId>cxf-dosgi-ri</artifactId> > <version>1.0-SNAPSHOT</version> > > <packaging>pom</packaging> > <name>Distributed OSGI Reference Implementation</name> > > + <scm> > + > <connection>scm:svn:http://svn.apache.org/repos/asf/cxf/dosgi/trunk</connec >tion> + > <developerConnection>scm:svn:https://svn.apache.org/repos/asf/cxf/dosgi/tru >nk</developerConnection> + </scm> > + > + <issueManagement> > + <system>jira</system> > + <url>https://issues.apache.org/jira/browse/CXF</url> > + </issueManagement> > + > + <prerequisites> > + <maven>2.0.9</maven> > + </prerequisites> > + > <properties> > <jetty.version>6.1.9</jetty.version> > <woodstox.bundle.version>3.2.7_1</woodstox.bundle.version> > </properties> > > + <distributionManagement> > + <repository> > + <id>apache.releases</id> > + <name>Apache Release Distribution Repository</name> > + > <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync >-repository</url> + </repository> > + <snapshotRepository> > + <id>apache.snapshots</id> > + <name>Apache Development Snapshot Repository</name> > + > <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repo >sitory</url> + <uniqueVersion>false</uniqueVersion> > + </snapshotRepository> > + </distributionManagement> > + > + <inceptionYear>2008</inceptionYear> > + <mailingLists> > + <mailingList> > + <name>Apache CXF User List</name> > + <subscribe>[email protected]</subscribe> > + <unsubscribe>[email protected]</unsubscribe> > + <post>[email protected]</post> > + > <archive>http://mail-archives.apache.org/mod_mbox/cxf-users</archive> + > </mailingList> > + <mailingList> > + <name>Apache CXF Developer List</name> > + <subscribe>[email protected]</subscribe> > + <unsubscribe>[email protected]</unsubscribe> > + <post>[email protected]</post> > + > <archive>http://mail-archives.apache.org/mod_mbox/cxf-dev</archive> + > </mailingList> > + <mailingList> > + <name>Apache CXF Commits List</name> > + <subscribe>[email protected]</subscribe> > + <unsubscribe>[email protected]</unsubscribe> > + <post>[email protected]</post> > + > <archive>http://mail-archives.apache.org/mod_mbox/cxf-commits</archive> + > </mailingList> > + <mailingList> > + <name>Apache CXF Issues List</name> > + <subscribe>[email protected]</subscribe> > + <unsubscribe>[email protected]</unsubscribe> > + <post>[email protected]</post> > + > <archive>http://mail-archives.apache.org/mod_mbox/cxf-issues</archive> + > </mailingList> > + </mailingLists> > + > + <licenses> > + <license> > + <name>The Apache Software License, Version 2.0</name> > + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> > + <distribution>repo</distribution> > + </license> > + </licenses> > + > + <organization> > + <name>The Apache Software Foundation</name> > + <url>http://www.apache.org/</url> > + </organization> > + > <modules> > <module>parent</module> > <module>felix</module> -- Daniel Kulp [email protected] http://www.dankulp.com/blog
