java-timeseries icon indicating copy to clipboard operation
java-timeseries copied to clipboard

Many errors upon initial build

Open dgcui1225 opened this issue 7 years ago • 7 comments

I don't think this is supposed to happen; when I try to build java-timeseries-master after forking and downloading it, I get a ton of build errors before I've actually touched anything. screen shot 2018-07-11 at 2 16 27 pm

dgcui1225 avatar Jul 11 '18 21:07 dgcui1225

@dgcui1225 , you're right, that definitely shouldn't be happening. I think something like that this has happened to me before and it had to do with either Java/Gradle versioning. If you can give me as much detail as possible about how you're executing the build process, I might be able to help.

signaflo avatar Jul 19 '18 16:07 signaflo

@dgcui1225 , I've updated some of the build files and it's working for me (off the master branch). Let me know if you continue to run into issues.

signaflo avatar Jul 21 '18 05:07 signaflo

It works for me, thank you very much!

dgcui1225 avatar Jul 21 '18 06:07 dgcui1225

@dgcui1225 I was try to build my aplication, and i have error same with you. May you give me the solve of this error?

MuhYusuf93 avatar Oct 15 '18 08:10 MuhYusuf93

anybody help me please... :(

MuhYusuf93 avatar Oct 15 '18 13:10 MuhYusuf93

i also still have the errors. I've tried it with the newest master verson an with the one of 21 of July. I import the project to IntelliJ and let it do the building work. does anyone have suggestions? errors

Wafflemannauto avatar Nov 13 '18 14:11 Wafflemannauto

Is is possible that lombook needs to know what setters and getter should be injected?

I generated those missing methods and the "//"s of uncommented methods were removed. Additionally, I added following constructor: ArimaParameters(double[] numAR, double[]numMA, double[] numSAR, double[] numSMA) { this.autoRegressivePars = numAR; this.movingAveragePars = numMA; this.seasonalAutoRegressivePars = numSAR; this.seasonalMovingAveragePars = numSMA; }

Then all test except two pass. I've also tried to copy the given arrays but this doesn't change the result (in my case).

junit.framework.AssertionFailedError: Range: 1.0 to 3.0 by 1.0 [group 1, item 1] must be Object#equals to Range: 1.0 to 3.0 by 1.0 [group 1, item 2] at com.google.common.testing.RelationshipTester.assertWithTemplate(RelationshipTester.java:125) at com.google.common.testing.RelationshipTester.assertRelated(RelationshipTester.java:101) at com.google.common.testing.RelationshipTester.test(RelationshipTester.java:77) at com.google.common.testing.EqualsTester.testEquals(EqualsTester.java:119) at com.github.signaflo.data.RangeSpec.equalsContract(RangeSpec.java:210)

junit.framework.AssertionFailedError: com.github.signaflo.data.regression.MultipleLinearRegressionModel@12843fce [group 1, item 1] must be Object#equals to com.github.signaflo.data.regression.MultipleLinearRegressionModel@3dd3bcd [group 1, item 2] at com.google.common.testing.RelationshipTester.assertWithTemplate(RelationshipTester.java:125) at com.google.common.testing.RelationshipTester.assertRelated(RelationshipTester.java:101) at com.google.common.testing.RelationshipTester.test(RelationshipTester.java:77) at com.google.common.testing.EqualsTester.testEquals(EqualsTester.java:119) at com.github.signaflo.data.regression.LinearRegressionSpec.equalsContract(LinearRegressionSpec.java:130)

Wafflemannauto avatar Nov 14 '18 10:11 Wafflemannauto