-
Notifications
You must be signed in to change notification settings - Fork 44
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
build: fix test.product missing dependencies #1000
build: fix test.product missing dependencies #1000
Conversation
retest this please |
1 similar comment
retest this please |
866ee30
to
47d03be
Compare
retest this please |
4101f8f
to
28ec257
Compare
Hi @stempler, First time Green build here as well. May be we can merge this so that we can see the product installables in the publish(master). I tried to include |
ecbfd42
to
44aef1d
Compare
44aef1d
to
a57e750
Compare
I have removed |
...dt.hale.io.deegree.test/src/eu/esdihumboldt/hale/io/deegree/mapping/MappingWriterTest.groovy
Outdated
Show resolved
Hide resolved
...o.geopackage.test/src/eu/esdihumboldt/hale/io/geopackage/GeopackageInstanceWriterTest.groovy
Outdated
Show resolved
Hide resolved
...lugins/eu.esdihumboldt.hale.io.xls/src/eu/esdihumboldt/hale/io/xls/AbstractAnalyseTable.java
Outdated
Show resolved
Hide resolved
44b0abb
to
c4be00c
Compare
@@ -191,7 +190,8 @@ class GeopackageInstanceWriterTest { | |||
} | |||
|
|||
abc { | |||
a(new BigInteger('1' + Long.MAX_VALUE)) | |||
|
|||
a(new BigInteger(''+Long.MAX_VALUE)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, but I would at least add a comment here, that it used to work with '1' + Long.MAX_VALUE
and it does no longer for an unknown reason.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added a comment.
Adding 1 to Long.MAX_VALUE results in `overflow` exception when converting BigInteger string into Long. So added an empty string instead of adding 1 ING-3267
e54f624
to
6f66a00
Compare
ING-3267