Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] SNAPSHOT is not being replaced with timestamp in name of jar

Ok — I see that now, when I look at my maven build output for building rcp products.  My idea is to have the separate plugins (we have probably 1000 or so) build individually and go to an artifact repository; is the "correct" way to rely on the bundling of the rcp to replace the –SNAPSHOT with the correct version?

Thanks for your prompt response!  It's good to be working on getting all of NASA's Eclipse plugin developers using Maven.

Tamar

From: Igor Fedorenko <ifedorenko@xxxxxxxxxxxx>
Reply-To: Tycho user list <tycho-user@xxxxxxxxxxx>
Date: Thu, 6 Jun 2013 10:31:34 -0500
To: Tycho user list <tycho-user@xxxxxxxxxxx>
Subject: Re: [tycho-user] SNAPSHOT is not being replaced with timestamp in name of jar

This is expected. Generally, don't worry about file names under target/ directory, bundles and features will get conventional names when included in eclipse-repository or update site

--
Regards,
Igor


On Thu, Jun 6, 2013 at 11:20 AM, Cohen, Tamar (ARC-TI)[Stinger Ghaffarian Technologies Inc. (SGT Inc.)] <tamar.e.cohen@xxxxxxxx> wrote:
Hi all--

I'm trying to set up separate pom files within each plugin / feature project to just build that plugin.  I'm having trouble with the name of the output jar not including the timestamp of the build.
SNAPSHOT remains in the name.   I have not found a good answer for this on the internet.

For example, com.ardor3d.0.9.17-SNAPSHOT.jar; within the manifest the version is Bundle-Version: 0.9.17.201306060343

I have tried changing it as follows:
<version>0.9.17.${maven.build.timestamp}</version> which causes problems  with the osgi and maven versions not matching.:
[WARNING] 'version' contains an _expression_ but should be a constant. @ gov.nasa:com.ardor3d:0.9.17.${maven.build.timestamp}, /hosts/strangelove/export/home/tecohen/verve_rapid_gri_2013/com.ardor3d/pom.xml, line 7, column 12
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:0.18.0:validate-version (default-validate-version) on project com.ardor3d: OSGi version 0.9.17.qualifier in META-INF/MANIFEST.MF does not match Maven version 0.9.17.201306060817 in pom.xml

Here is my pom.xml
<?xml version="1.0" encoding="UTF-8"?>
  <modelVersion>4.0.0</modelVersion>
  <groupId>gov.nasa</groupId>
  <artifactId>com.ardor3d</artifactId>
  <version>0.9.17-SNAPSHOT</version>
  <packaging>eclipse-plugin</packaging>
  <properties>
<tycho-version>0.16.0</tycho-version>
<project.reporting.outputDirectory>reporting</project.reporting.outputDirectory>
<project.build.outputDirectory>output</project.build.outputDirectory>
              <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
</properties>
<repositories>
<repository>
<id>indigo</id>
<layout>p2</layout>
</repository>
</repositories>
<build>
    <plugins>
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-maven-plugin</artifactId>
        <version>0.18.0</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>

Thanks!

Tamar


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user



Back to the top