Skip to content

Commit

Permalink
Add profile to debug camel-k-maven-plugin integration tests (#5864)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton authored Mar 13, 2024
1 parent ba5d600 commit de8ab18
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion tooling/camel-k-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,24 @@
</plugins>
</build>
</profile>

<profile>
<id>debug</id>
<activation>
<property>
<name>debug</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<mavenOpts>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000</mavenOpts>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit de8ab18

Please sign in to comment.