Open uriencedric opened 3 years ago
confirmed, have the same issue
/edit/ mvn clean install does the job, there are autogenerated classes https://github.com/colinlucs/microservices-orchestration-amqp-example/blob/master/amqp-adapter/pom.xml#L64
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>generated-src</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
I stumbled upon the article on DZone, great article, however the project is missing classes.
I get the idea behind but was it done by choice or by mistake ?
Best