Skip to content

Commit 7d2ddbd

Browse files
authored
Merge pull request arquillian#362 from WolfgangHG/dependabot_serverupdate
Testsuite: add dummy profile so that dependabot can detect server container updates
2 parents fa9d3f1 + d467a32 commit 7d2ddbd

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
@@ -353,5 +353,32 @@
353353
</build>
354354
</profile>
355355

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

0 commit comments

Comments
 (0)