Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cbi-dev] Could not find artifact eclipse-jarsigner-plugin

Hi Markus,

There is 2 signing plugins and I think from your example, you have a mix of both.

There is a signing plugin from the DASH project which is released on maven.eclipse.org with the GAV (Unfortunately I'm not familiar with how this one works):

  <groupId>org.eclipse.dash.maven</groupId>
  <artifactId>eclipse-signing-maven-plugin</artifactId>
  <version>1.0.5</version>


There is also a CBI signing plugin which is released on repo.eclipse.org with the GAV:

  <groupId>org.eclipse.cbi.maven.plugins</groupId>
  <artifactId>eclipse-jarsigner-plugin</artifactId>
  <version>1.0.3</version>

The release repo for this one is:
    https://repo.eclipse.org/content/repositories/cbi-releases/

Latest release of the CBI plugin is 1.0.3 and we have 1.0.4-SNAPSHOT in development which includes the ability to sign Windows and Mac binaries. If you need an example of how to use the CBI signing plugin you can look at the Eclipse Platform parent pom's "eclipse-sign" profile [1].

Hope this helps,

[1] http://git.eclipse.org/c/platform/eclipse.platform.releng.aggregator.git/tree/eclipse-platform-parent/pom.xml#n436


Thanh

On 31/07/13 12:51 PM, Markus Knauer wrote:
Hi all,

I've been successfully using the jarsigner plugin in RAP, but for some reasons it cannot be found any more.

            <groupId>org.eclipse.cbi.maven.plugins</groupId>
            <artifactId>eclipse-jarsigner-plugin</artifactId>
            <version>1.0.5</version>

If I'm not mistaken it had been loaded in the past from

    <pluginRepository>
      <id>maven.eclipse.org</id>
      <url>http://maven.eclipse.org/nexus/content/repositories/milestone-juno</url>
    </pluginRepository>

but it seems to have disappeared... or maybe replaced by a newer version.

Does anyone have an idea?

Thanks,
Markus



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


Back to the top