TweetyProjectTeam / TweetyProject

TweetyProject is a collection of Java libraries that implement approaches to different areas of artificial intelligence.
http://tweetyproject.org/
GNU General Public License v3.0
28 stars 17 forks source link

Missing step from setup instructions #6

Closed adam-binks closed 2 years ago

adam-binks commented 2 years ago

Hey! I was setting up Tweety using Maven on the command line as per these instructions. To get mvn package to work without errors, I needed to add the following lines to pom.xml:

<properties>
   <maven.compiler.source>1.8</maven.compiler.source>
   <maven.compiler.target>1.8</maven.compiler.target>
</properties>

I'm not sure if targeting 1.8 is the correct value. Could be useful to add this to the instructions for other people getting started.

sfranke43 commented 2 years ago

Hi! Thank you for your comment. I'll look into the issue

sfranke43 commented 2 years ago

I added the missing lines you suggested to the pom. Thanks again for letting us know about this