All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infobip.testcontainers.spring.rabbit.RabbitContainerWrapper Maven / Gradle / Ivy

The newest version!
package com.infobip.testcontainers.spring.rabbit;

import org.testcontainers.containers.GenericContainer;

public class RabbitContainerWrapper extends GenericContainer {

    public static final int PORT = 5672;

    public RabbitContainerWrapper(String image) {
        super(image);
        withExposedPorts(PORT);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy