Fork me on GitHub

Obtaining the plugin via Maven repository

The advanced search taxonomy workflow plugin is available via the Hippo Forge Maven repository. It's version is managed in the Hippo release pom that your project normally used as parent.

Make sure you have the forge Maven2 repository reference and dependency definition in the root pom.xml of your project.

<repositories>
 
  <!-- SNIP -->
 
  <repository>
    <id>hippo-maven2-forge</id>
    <name>Hippo Maven 2 Forge Repository</name>
    <url>http://maven.onehippo.com/maven2-forge/</url>
  </repository>
 
  <!-- SNIP -->
 
</repositories>
 
<!-- SNIP -->
 
<dependencyManagement>
 
  <!-- SNIP -->
 
  <dependencies>
 
    <!-- SNIP -->
 
    <!-- NOTE: You should set a property named 'taxonomy-bulkwf.version' to a version of this plugin! -->
    <dependency>
      <groupId>org.onehippo.forge.taxonomy-bulkwf</groupId>
      <artifactId>taxonomy-bulkwf-frontend</artifactId>
      <version>${taxonomy-bulkwf.version}</version>
    </dependency>
 
    <dependency>
      <groupId>org.onehippo.forge.taxonomy-bulkwf</groupId>
      <artifactId>taxonomy-bulkwf-repository</artifactId>
      <version>${taxonomy-bulkwf.version}</version>
    </dependency>
 
    <!-- SNIP -->
 
  </dependencies>
 
  <!-- SNIP -->
           
          

Please add the taxonomy-bulkwf-frontend and taxonomy-bulkwf-repository dependencies to your project's CMS pom.xml.

<!-- Advanced Search Taxonomy Workflow plugin -->
<dependency>
  <groupId>org.onehippo.forge.taxonomy-bulkwf</groupId>
  <artifactId>taxonomy-bulkwf-frontend</artifactId>
</dependency>
<dependency>
  <groupId>org.onehippo.forge.taxonomy-bulkwf</groupId>
  <artifactId>taxonomy-bulkwf-repository</artifactId>
</dependency>
					

Note: if you want to add this to an existing repository, be sure to use startup option -Drepo.bootstrap=true for initializing the types, see Content Bootstrap