-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent module metadata #126
Comments
See the following issue: eclipsesource/J2V8#126
This is caused by incorrect arch property in the pom.xml file of the linux build: <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<os>linux</os>
<ws>gtk</ws>
<arch>arm64</arch>
</properties>
<groupId>com.eclipsesource.j2v8</groupId>
<artifactId>j2v8_linux_${arch}</artifactId>
<version>3.1.6</version>
<packaging>bundle</packaging> The arch parameter should be "x86_64" and not "arm". @irbull is it possible for you to update pom.xml or release 3.1.7 with corrected metadata? |
Ah crap. Sorry about that. My build server is currently in a state of flux Thanks! On Wed, Feb 17, 2016 at 7:58 AM, Piotr Tomiak [email protected]
R. Ian Bull | EclipseSource Victoria | +1 250 477 7484 |
Any updates on this issue? |
When I try to add a dependency to J2V8 in my Gradle build file I get the following error message:
My Gradle dependency looks like this:
The last working version that I found is 3.1.1. By the way, 3.1.6 works fine under Windows.
Cheers,
Michel
The text was updated successfully, but these errors were encountered: