``` <plugin> <gro...
# server
g
Copy code
<plugin>
                <groupId>org.jetbrains.kotlin</groupId>
                <artifactId>kotlin-maven-plugin</artifactId>
                <version>1.3.72</version>

                                <configuration>
                                    <args>
                                        <arg>-Xjsr305=strict</arg>
                                    </args>
                                    <compilerPlugins>
                                        <plugin>spring</plugin>
                                    </compilerPlugins>
                                    <jvmTarget>11</jvmTarget>

                                </configuration>
                <executions>
                    <execution>
                        <id>compile</id>
                        <phase>compile</phase>
                        <goals> <goal> compile </goal> </goals>
                    </execution>
                    <execution>
                        <id>test-compile</id>
                        <goals> <goal> test-compile </goal> </goals>
                    </execution>
                </executions>
                                <dependencies>
                                    <dependency>
                                        <groupId>org.jetbrains.kotlin</groupId>
                                        <artifactId>kotlin-maven-allopen</artifactId>
                                        <version>${kotlin.version}</version>
                                    </dependency>
                                    <dependency>
                                        <groupId>com.adobe.ams.ifttt</groupId>
                                        <artifactId>commons</artifactId>
                                        <version>0.0.1-SNAPSHOT</version>
                                    </dependency>
                                </dependencies>
            </plugin>