Skip to content

bitstrings/indexer-maven-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

indexer-maven-plugin

Creates an index file for selected directories.

<plugin>
    <groupId>org.bitstrings.maven.plugins</groupId>
    <artifactId>indexer-maven-plugin</artifactId>
    <version>1.1</version>
    <executions>
        <execution>
            <id>index-res</id>
            <goals>
                <goal>index</goal>
            </goals>
            <configuration>
                <indexes>
                    <index>
                        <directory>${project.build.outputDirectory}/res</directory>
                    </index>
                </indexes>
            </configuration>
        </execution>
    </executions>
</plugin>