We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad9b32 commit dfbb3eeCopy full SHA for dfbb3ee
1 file changed
examples/Demo/pom.xml
@@ -15,7 +15,27 @@
15
<packaging>jar</packaging>
16
17
<build>
18
+ <sourceDirectory>src/main/java</sourceDirectory>
19
<plugins>
20
+ <plugin>
21
+ <groupId>org.codehaus.mojo</groupId>
22
+ <artifactId>build-helper-maven-plugin</artifactId>
23
+ <version>3.5.0</version>
24
+ <executions>
25
+ <execution>
26
+ <id>add-source</id>
27
+ <phase>generate-sources</phase>
28
+ <goals>
29
+ <goal>add-source</goal>
30
+ </goals>
31
+ <configuration>
32
+ <sources>
33
+ <source>../../src/main/java</source>
34
+ </sources>
35
+ </configuration>
36
+ </execution>
37
+ </executions>
38
+ </plugin>
39
<plugin>
40
<groupId>org.codehaus.mojo</groupId>
41
<artifactId>exec-maven-plugin</artifactId>
0 commit comments