Generated sources added
authorVásáry Dániel <vasary@elgekko.net>
Fri, 23 Feb 2024 15:22:44 +0000 (16:22 +0100)
committerVásáry Dániel <vasary@elgekko.net>
Fri, 23 Feb 2024 15:22:44 +0000 (16:22 +0100)
mc-vod-sync/mc-vod-sync-service/pom.xml

index d7576b59510b72c45f0ee3c8a01b6b573c32bec8..b00502b7c82e4496e1bf1243633b04849863a27a 100644 (file)
             <scope>compile</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>3.5.0</version>
+                <executions>
+                    <execution>
+                        <id>test</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>add-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>${basedir}/target/generated-sources</source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>