Skip to content

Commit

Permalink
Add a link to sample project to README
Browse files Browse the repository at this point in the history
Task-number: #23
  • Loading branch information
Paullo612 committed May 24, 2023
1 parent beda508 commit 58baea0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ Add dependency to API module and add compiler to annotation processor path. For
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
...
<!-- Incremental compilation is completely broken in mlfx, so, recompile whole module on any change
in fxml files. -->
<fileExtensions>
<fileExtension>class</fileExtension>
<fileExtension>jar</fileExtension>
<fileExtension>fxml</fileExtension>
</fileExtensions>
<annotationProcessorPaths>
<path>
<groupId>io.micronaut</groupId>
Expand All @@ -93,6 +101,7 @@ Add dependency to API module and add compiler to annotation processor path. For
</path>
...
</annotationProcessorPaths>
...
</configuration>
</plugin>
...
Expand All @@ -103,6 +112,7 @@ Add dependency to API module and add compiler to annotation processor path. For
</project>

```
See [sample Maven project](https://github.com/Paullo612/mlfx-sample), last commit adds mlfx support to it.

## Processing instructions

Expand Down

0 comments on commit 58baea0

Please sign in to comment.