This is an automated email from the ASF dual-hosted git repository. lahirujayathilake pushed a commit to branch cybershuttle-dev in repository https://gitbox.apache.org/repos/asf/airavata.git
commit 25e2fcc752b9827716946527e1317ce974f9a149 Author: yasith <[email protected]> AuthorDate: Mon Mar 17 16:41:57 2025 +0000 fix generated protos unused issue --- modules/agent-framework/agent-service/pom.xml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/modules/agent-framework/agent-service/pom.xml b/modules/agent-framework/agent-service/pom.xml index 48dccba057..ff33ec5fb2 100644 --- a/modules/agent-framework/agent-service/pom.xml +++ b/modules/agent-framework/agent-service/pom.xml @@ -163,12 +163,17 @@ </executions> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>17</source> - <target>17</target> - </configuration> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>17</source> + <target>17</target> + <generatedSourcesDirectory>${project.build.directory}/generated-sources</generatedSourcesDirectory> + <includes> + <include>${project.build.directory}/generated-sources/**/*.java</include> + </includes> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
