Skip to content

Commit d467a32

Browse files
committed
Testsuite: add dummy profile so that dependabot can detect server container updates
1 parent 83f614e commit d467a32

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

build/ftest-base/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,5 +361,32 @@
361361
</build>
362362
</profile>
363363

364+
<profile>
365+
<!-- This profile is only used to enable dependabot so that it can detect and update the server containers
366+
that are only declared as shrinkwrap resolver GAV coordinates and thus not readable by dependabot.
367+
Don't use this profile for anything else.
368+
-->
369+
<id>dependabot-serverupdates</id>
370+
<dependencies>
371+
<dependency>
372+
<groupId>org.glassfish.main.distributions</groupId>
373+
<artifactId>glassfish</artifactId>
374+
<version>${version.glassfish}</version>
375+
<scope>provided</scope>
376+
</dependency>
377+
<dependency>
378+
<groupId>org.wildfly</groupId>
379+
<artifactId>wildfly-dist</artifactId>
380+
<version>${version.wildfly}</version>
381+
<scope>provided</scope>
382+
</dependency>
383+
<dependency>
384+
<groupId>org.apache.tomee</groupId>
385+
<artifactId>apache-tomee</artifactId>
386+
<version>${version.tomee}</version>
387+
<scope>provided</scope>
388+
</dependency>
389+
</dependencies>
390+
</profile>
364391
</profiles>
365392
</project>

0 commit comments

Comments
 (0)