My Axon.ivy Project (or at least as IAR-File) got errors, when I work with git. Git doesn't allow to commit empty folders. But these folders must exist because they are referenced as source folders in .classpath.

asked 07.03.2018 at 06:02

SupportIvyTeam's gravatar image

SupportIvyTeam ♦♦
1.4k102118122
accept rate: 77%


Axon.ivy 7.1 and later

This should be no problem anymore. All source folders are now optional in .classpath. If you have an older project, there is a project migration which makes all source folders optional.

Axon.ivy 7.0 and prior

You can modify the file .classpath in the root folder of your project manually. Modify all classpathentry of kind=src.

Before

<classpathentry kind="src" path="src"/>

After

<classpathentry kind="src" path="src">
    <attributes>
       <attribute name="optional" value="true"/>
     </attributes>
</classpathentry>
link

answered 07.03.2018 at 06:09

Alex%20Suter's gravatar image

Alex Suter ♦♦
3.1k122247
accept rate: 84%

edited 07.03.2018 at 09:46

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×4

Asked: 07.03.2018 at 06:02

Seen: 1,279 times

Last updated: 07.03.2018 at 09:46