Hi,

The pom.xml for sdo-api-r2.1 are referencing SNAPSHOT versions of other plugins. This seems to be dangerous for a release since the dependent artifacts are moving targets. AFAIK, the maven-osgi-plugin from felix already has releases we can use.

<plugin>
<groupId>org.apache.felix.plugins</groupId>
<artifactId>maven-osgi-plugin</artifactId>
<version>0.8.0-SNAPSHOT</version>
<extensions>true</extensions>
<configuration>
<osgiManifest>
<bundleName>${pom.name}</bundleName>
<bundleDescription>${pom.description}</bundleDescription>
<bundleVendor>${pom.organization.name}</bundleVendor>
<bundleLocalization>plugin</bundleLocalization>
<bundleSymbolicName>commonj.sdo</bundleSymbolicName>
<exportPackage>
commonj.sdo;version="${specVersion}", commonj.sdo.helper;version="${specVersion},
commonj.sdo.impl;version="${specVersion}"
</exportPackage>
</osgiManifest>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.3-SNAPSHOT</version>
<configuration>
<version>2.0</version>
</configuration>
<executions>
<execution>
<id>package</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

Thanks,
Raymond

----- Original Message ----- From: "kelvin goodson" <[EMAIL PROTECTED]>
To: "Tuscany Users" <tuscany-user@ws.apache.org>
Sent: Tuesday, July 10, 2007 2:38 PM
Subject: SDO Java 1.0-incubating release candidate 1


I've posted an RC1 of SDO Java  1.0-incubating at  [1]
Maven artifacts for the release candidate are available at [2]
I cut a branch for this release at [3]

Please take a look at this release candidate.  There are a few more fixes
due to go into the release, which should be ready by the end of this week,
so there will be a respin of this candidate,  but I'd particularly like to
get feedback on the structure of the distribution, as a lot has changed in
this respect since the beta1.  Also please feed back on the install, build
and run samples instructions since these have all changed too.

Best Regards, Kelvin.

[1] http://people.apache.org/~kelvingoodson/sdo_java/1.0-incubating/RC1/
[2] http://people.apache.org/~kelvingoodson/repo/
[3]
http://svn.apache.org/repos/asf/incubator/tuscany/branches/sdo-1.0-incubating/



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to