yosid16 / EDU-ProM

Process mining for non-interactive usage
13 stars 8 forks source link

Compilation errors #3

Open edithzavala opened 6 years ago

edithzavala commented 6 years ago

I've tried to compile the project several times with not success. Seems plugin requires java 1.7 but lambdas cannot compile with that version, have you experienced something similar? I'm using gradle 3.3.. I've also tried to indicate source and target compatibility to 1.8 but didn't work.

Thanks!

edithzavala commented 6 years ago

Ok, solved changing source and target compatibility in extensionConfig to 1.8... Still lot of checkstyle errors affect the build.

yosid16 commented 6 years ago

Hi, Please make sure you are using this fork: https://github.com/bpm-technion/EDU-ProM and not this: https://github.com/yosid16/EDU-ProM. In addition, this is a more detailed documentation how to setup the environment. Assuming you are working on the correct fork, and create your own branch, you should not have compilation errors, please let me know if you experience something different.

edithzavala commented 6 years ago

I got the same problems with that fork. Again, I've managed to fix them adding the following lines into the build.gradle file:

codeQuality { checkstyle = false } and, sourceCompatibility = 1.8 targetCompatibility = 1.8

edfincham commented 5 years ago

Thank you Edith for your fork! Works a charm.