Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
swesteme committed Mar 18, 2022
1 parent 1cdb051 commit 442438e
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,26 @@ It is used in combination with the [artifact-version-service](https://github.com
</execution>
</executions>
</plugin>
<plugin>
<!-- Add source folder to Eclipse configuration. IntelliJ will recognize extra source automatically. -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/artifact-versions</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -73,6 +93,26 @@ It is also possible to configure the generator to use target directories and a m
<targetFolder>target/generated-sources</targetFolder>
</configuration>
</plugin>
<plugin>
<!-- Add source folder to Eclipse configuration. IntelliJ will recognize extra source automatically. -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated-sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
```
Expand Down

0 comments on commit 442438e

Please sign in to comment.