Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,13 @@
<artifactId>maven-plugin-api</artifactId>
<version>3.9.11</version>
</dependency>

<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.15.1</version>
<!-- Only needed at build time -->
<scope>provided</scope>
Comment on lines +130 to +131
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -280,7 +286,7 @@
<configuration>
<projectsDirectory>${project.basedir}/src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<localRepositoryPath>${projects.build.directory}/local-repo</localRepositoryPath>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
Comment on lines -283 to +289
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was a typo previously?

<!-- the .groovy extension (or .bsh, if you're using BeanShell) is implied -->
<postBuildHookScript>verify</postBuildHookScript>
<goals>
Expand Down
Loading