Downloading and installing JWbem is a simple two step process:

1. Add the Hyper9 Maven Repository to your Maven settings file or to your project's POM file.

01.<repository>
02.    <id>maven.hyper9.com</id>
03.    <name>Hyper9 Maven Repository</name>
04.    <url>http://maven.hyper9.com/repo/<;/url>
05.    <layout>default</layout>
06.    <releases>
07.        <updatePolicy>never</updatePolicy>
08.        <checksumPolicy>fail</checksumPolicy>
09.    </releases>
10.    <snapshots>
11.        <updatePolicy>always</updatePolicy>
12.        <checksumPolicy>fail</checksumPolicy>
13.    </snapshots>
14.</repository>

2. List JWbem as a dependency in your project's POM file.

1.<dependency>
2.    <groupId>com.hyper9</groupId>
3.    <artifactId>jwbem</artifactId>
4.    <version>0.0.1-SNAPSHOT</version>
5.    <type>jar</type>
6.    <scope>compile</scope>
7.</dependency>

And that's all there is to installing JWbem.