usage of my plugin ``` <plugin> ...
# compiler
s
usage of my plugin
Copy code
<plugin>
                <groupId>org.jetbrains.kotlin</groupId>
                <artifactId>kotlin-maven-plugin</artifactId>
                <version>1.6.10</version>
                <executions>
                    <execution>
                        <id>compile</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>test-compile</id>
                        <phase>test-compile</phase>
                        <goals>
                            <goal>test-compile</goal>
                        </goals>
                    </execution>
                </executions>

                <configuration>
                    <compilerPlugins>
                        <!-- Or "spring" for the Spring support
                        <plugin>com.bnorm.template.kotlin-ir-plugin</plugin>
                        -->
                    </compilerPlugins>
                </configuration>

                <dependencies>
                    <dependency>
                        <groupId>org.jetbrains.kotlin</groupId>
                        <artifactId>kotlin-maven-allopen-x</artifactId>
                        <version>1</version>
                        <scope>system</scope>
                        <systemPath>C:\projects\plugin\kotlin-ir-plugin\build\libs\kotlin-ir-plugin-0.1.0-SNAPSHOT.jar</systemPath>
                    </dependency>
                </dependencies>
            </plugin>