Baunsgaard opened a new pull request, #426:
URL: https://github.com/apache/incubator-wayang/pull/426

   When opening Wayang in my IDE it produced many errors, 
   
   
![image](https://github.com/apache/incubator-wayang/assets/9947148/c4d8afa2-7efe-4b6e-8d0d-07e54aa07c4b)
   
   This PR fixes all of them (at least for my setup).
   
   The main issue is that a default Java compile level is not set in the root 
POM.xml file, and therefore my IDE(vscode) does not know what to compile. While 
it is possible to add this as a configuration inside an individual's setup 
.vscode for Visual Code, I would still suggest moving it to a default setting. 
Because 1. the .vscode settings file is git ignored and 2. the IDE 
automatically picks up the default value set in the root parameters of the 
POM.xml.
   
   
   The second issue i had was with wayang-api/wayang-api-scala-java/pom.xml. 
   Unfortunately, my IDE did not compile correctly without adding a recursive 
dependency on its package:
   
   ```
   <dependency>
       <groupId>org.apache.wayang</groupId>
       <artifactId>wayang-api-scala-java_2.11</artifactId>
       <version>0.7.1</version>
   </dependency>
   ```
   
   Maybe there is a better way to handle this?
   
   Finally, there were two minor bugs: 1. the docs pom contained the -SNAPSHOT 
when referencing the root repository, and 2. some imports contained an extra 
`;`.
   
   
   Afterwards:
   
   
![image](https://github.com/apache/incubator-wayang/assets/9947148/a396d0f8-b67d-4af8-9f30-ccb99e297f7f)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to