Skip to content

Instantly share code, notes, and snippets.

@ghermeto
Created August 4, 2011 16:40
Show Gist options
  • Save ghermeto/1125594 to your computer and use it in GitHub Desktop.
Save ghermeto/1125594 to your computer and use it in GitHub Desktop.
Using blitz maven plugin
<project>
<groupId>com.example</groupId>
<artifactId>my-cool-app</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>My Cool App</name>
<url>http://your.cool.app</url>
<build>
<plugins>
<plugin>
<groupId>io.blitz</groupId>
<artifactId>blitz-maven-plugin</artifactId>
<version>0.1.0</version>
<configuration>
<url>http://your.cool.app</url>
<username>your@account.com</username>
<apiKey>aqbcdge-sjfkgurti-sjdhgft-skdiues</apiKey>
<region>california</region>
<pattern>
<interval implementation="io.blitz.curl.config.Interval">
<start>10</start>
<end>100</end>
<duration>30</duration>
</interval>
</pattern>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment