diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-17 21:31:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-17 21:31:02 +1000 |
commit | e6a08c75177ac7fa05b21ddccc90e0036d69e55d (patch) | |
tree | be4528770d873f8997bf095b9b7e6239e68b3608 /archiva-modules/archiva-base | |
parent | c792f68b51a9fa335ee79d2c04a481747461a20d (diff) | |
download | archiva-e6a08c75177ac7fa05b21ddccc90e0036d69e55d.tar.gz archiva-e6a08c75177ac7fa05b21ddccc90e0036d69e55d.zip |
use testcontainers to run cassandra tests (#79)
* use testcontainers for cassandra test
Signed-off-by: Olivier Lamy <olamy@apache.org>
Diffstat (limited to 'archiva-modules/archiva-base')
-rw-r--r-- | archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/test/test-settings.xml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/test/test-settings.xml b/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/test/test-settings.xml index ed41e84d5..fcbb3649e 100644 --- a/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/test/test-settings.xml +++ b/archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/test/test-settings.xml @@ -24,7 +24,7 @@ under the License. xmlns="http://maven.apache.org/SETTINGS/1.0.0"> <mirrors> <mirror> - <mirrorOf>external:*</mirrorOf> + <mirrorOf>external:*,!central</mirrorOf> <id>local-mirror</id> <name>local-mirror</name> <url>@localRepositoryUrl@</url> @@ -60,6 +60,16 @@ under the License. <enabled>true</enabled> </snapshots> </repository> + <repository> + <id>central</id> + <url>https://repo.maven.apache.org/maven2</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> </repositories> <pluginRepositories> <pluginRepository> @@ -72,6 +82,16 @@ under the License. <enabled>true</enabled> </snapshots> </pluginRepository> + <pluginRepository> + <id>central</id> + <url>https://repo.maven.apache.org/maven2</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </pluginRepository> </pluginRepositories> </profile> </profiles> |