Goals available for this plugin:
| Goal | Description |
|---|---|
| dnsme:adddomain | Add a domain name to a DNSME account |
| dnsme:addrecord | Add a dns record to a domain name managed by a DNSME account |
| dnsme:deletedomain | Delete a domain from a DNSME account |
| dnsme:deleterecord | Delete a dns record from a domain managed by a DNSME account. Must provide either a name or an id |
| dnsme:showdomains | Show all domains belonging to this DNSME account |
| dnsme:showrecords | Show records for the domain indicated. By default, all records are shown. Search criteria can be used to restrict the display |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.0 |
| JDK | 1.6 |
| Memory | No minimum requirement. |
| Disk Space | No minimum requirement. |
You should specify the version in your project's plugin configuration:
<project>
...
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.kuali.maven.plugins</groupId>
<artifactId>maven-dnsme-plugin</artifactId>
<version>1.0.3</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.kuali.maven.plugins</groupId>
<artifactId>maven-dnsme-plugin</artifactId>
<version>1.0.3</version>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"