Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 557 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 557 Bytes

Determiner

Maven plugin which replaces usages of non deterministic classes with deterministic equivalents.

Code based on Simulare.

Example Configuration

<plugin>
    <groupId>net.md-5</groupId>
    <artifactId>determiner</artifactId>
    <version>0.1</version>
    <executions>
        <execution>
            <phase>process-classes</phase>
            <goals>
                <goal>transform</goal>
            </goals>
        </execution>
    </executions>
</plugin>