akhikhl / wuff

Gradle plugin for automating assembly of OSGi/Eclipse bundles and applications
MIT License
153 stars 51 forks source link

getting null pointer when trieing to build for eclipse mars #86

Closed ArnoSchmidmeier closed 9 years ago

ArnoSchmidmeier commented 9 years ago

Hello, by trying to build an eclipse rcp mars It always fails with a nullpointer-exception. The same happens by the scaffold e4-application with a new configuration for eclipse mars, Here is the build file

buildscript { repositories { jcenter() maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' } }

dependencies { classpath 'org.akhikhl.wuff:wuff-plugin:+' } }

repositories { jcenter() maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' } }

apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'org.akhikhl.wuff.eclipse-rcp-app'

wuff { eclipseVersion('4.5') {

    eclipseMavenGroup = 'eclipse-mars'

    eclipseMirror = 'http://mirror.netcologne.de'

    eclipseArchiveMirror = 'http://archive.eclipse.org'

    sources {

      source "${eclipseMirror}/eclipse/technology/epp/downloads/release/mars/R/eclipse-rcp-mars-R-win32-x86_64.zip"
      languagePackTemplate '${eclipseMirror}/eclipse/technology/babel/babel_language_packs/R0.13.0/mars/BabelLanguagePack-eclipse-${language}_4.5.0.v20150804081228.zip'
      languagePack 'de'
      languagePack 'fr'
      languagePack 'es'
    }
}
selectedEclipseVersion='4.5'

}

I get following stacktrace:

FAILURE: Build failed with an exception.

BUILD FAILED

akhikhl commented 9 years ago

Fixed in Wuff 0.0.16, please use it.

ArnoSchmidmeier commented 9 years ago

Works, thanks