Guest User

Untitled

a guest
Dec 11th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <dependency>
  2. <groupId>org.jetbrains.kotlin</groupId>
  3. <artifactId>kotlin-stdlib</artifactId>
  4. <version>${kotlin.version}</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.jetbrains.kotlin</groupId>
  8. <artifactId>kotlin-test-junit</artifactId>
  9. <version>${kotlin.version}</version>
  10. <scope>test</scope>
  11. </dependency>
  12.  
  13. <plugin>
  14. <artifactId>kotlin-maven-plugin</artifactId>
  15. <groupId>org.jetbrains.kotlin</groupId>
  16. <version>${kotlin.version}</version>
  17. <configuration/>
  18. <executions>
  19. <execution>
  20. <id>compile</id>
  21. <phase>process-sources</phase>
  22. <goals>
  23. <goal>compile</goal>
  24. </goals>
  25. </execution>
  26. <execution>
  27. <id>test-compile</id>
  28. <phase>process-test-sources</phase>
  29. <goals>
  30. <goal>test-compile</goal>
  31. </goals>
  32. </execution>
  33. </executions>
  34. </plugin>
Add Comment
Please, Sign In to add comment