Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cbi-dev] eclipse-dmg-packager: Missing required properties: log

Greetings,

I'm trying to set up the eclipse-dmg-packager plugin, but I always get this exception:

java.lang.IllegalStateException: Missing required properties: log
	at org.eclipse.cbi.maven.http.AutoValue_RetryHttpClient$Builder.autoBuild(AutoValue_RetryHttpClient.java:166)
	at org.eclipse.cbi.maven.http.RetryHttpClient$Builder.build(RetryHttpClient.java:89)
	at org.eclipse.cbi.maven.plugins.dmgpackager.CreateDMGMojo.callDMGService(CreateDMGMojo.java:181)
	at org.eclipse.cbi.maven.plugins.dmgpackager.CreateDMGMojo.execute(CreateDMGMojo.java:174)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
	... 21 more
I've tried the 1.1.3 release and the 1.1.4-SNAPSHOT, getting the same error.

I think this might be a problem with the plugin, because it doesn't matter if I provide my own serviceURL or use the default, or even a bogus one.

My configuration looks like this:
<plugin>
  <groupId>org.eclipse.cbi.maven.plugins</groupId>
  <artifactId>eclipse-dmg-packager</artifactId>
  <version>1.1.3</version>
  <executions>
    <execution>
      <configuration>
        <source>/var/lib/jenkins/workspace/MacDMGTest/Eclipse.tar.gz</source>
      </configuration>
      <goals>
        <goal>package-dmg</goal>
      </goals>
      <phase>package</phase>
    </execution>
  </executions>
</plugin>

I don't know if the dmg-packager plugin is still in beta. Should I file a bug or am I missing something obvious?

Thanks
Nico

Back to the top