Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

scravy/waitfor-maven-plugin

Open more actions menu

Repository files navigation

waitfor-maven-plugin Build Status

Maven Coordinates:

<groupId>de.scravy</groupId>
<artifactId>waitfor-maven-plugin</artifactId>
<version>1.4</version>

Minimal Configuration Example

  <plugin>
    <groupId>de.scravy</groupId>
    <artifactId>waitfor-maven-plugin</artifactId>
    <version>1.4</version>
    <executions>
      <execution>
        <id>wait-for-environment-to-be-up</id>
        <phase>pre-integration-test</phase>
        <goals>
          <goal>waitfor</goal>
        </goals>
        <configuration>
          <checks>
            <check>
              <url>http://localhost:8080/health</url>
            </check>
            <check>
              <url>http://localhost:8080/loaded_components</url>
              <expectedResponseBody>{"component_1": "loaded", "component_2": "loaded"}</expectedResponseBody>
            </check>
          </checks>
        </configuration>
      </execution>
    </executions>
  </plugin>

Full Configuration Example

  <plugin>
    <groupId>de.scravy</groupId>
    <artifactId>waitfor-maven-plugin</artifactId>
    <version>1.4</version>
    <executions>
      <execution>
        <id>wait-for-environment-to-be-up</id>
        <phase>pre-integration-test</phase>
        <goals>
          <goal>waitfor</goal>
        </goals>
        <configuration>
          <skip>false</skip><!-- this is the default -->
          <chatty>false</chatty><!-- this is the default -->
          <quiet>false</quiet><!-- this is the default -->
          <insecure>false</insecure><!-- this is the default -->
          <redirect>true</redirect><!-- this is the default -->
          <timeoutSeconds>30</timeoutSeconds><!-- this is the default -->
          <checkEveryMillis>500</checkEveryMillis><!-- this is the default -->
          <checks>
            <check>
              <url>http://localhost:9090/health</url>
              <method>GET</method><!-- this is the default -->
              <statusCode>200</statusCode><!-- this is the default -->
              <headers>
                <header>
                  <name>Authorization</name>
                  <value>Bearer SOMETOKEN</value>
                </header>
              </headers>
            </check>
            <check>
              <url>http://localhost:9090/resource</url>
              <method>POST</method>
              <statusCode>201</statusCode>
              <requestBody>
              {
                "some": "thing"
              }
              </requestBody>
              <headers>
                <header>
                  <name>Content-Type</name>
                  <value>application/json</value>
                </header>
              </headers>
            </check>
          </checks>
        </configuration>
      </execution>
    </executions>
  </plugin>

Options

insecure

The insecure flag allows bypassing https certificate checks. This is handy when using self-signed certificates for example.

redirect

The redirect flag allows following or not the 302 REDIRECT response. Set it to false to avoid redirect. If a redirect is sent by the server, the statusCode will be 302.

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.