Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. plugins {
  2. id 'java'
  3. id 'maven-publish'
  4. }
  5.  
  6. repositories {
  7. mavenLocal()
  8. maven {
  9. url = 'http://repo.maven.apache.org/maven2'
  10. }
  11. }
  12.  
  13. dependencies {
  14. compile 'org.junit.jupiter:junit-jupiter-api:5.3.1'
  15. compile 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
  16. compile 'org.junit.vintage:junit-vintage-engine:5.3.1'
  17. compile 'org.junit.platform:junit-platform-engine:1.3.1'
  18. compile 'org.junit.platform:junit-platform-launcher:1.3.1'
  19. compile 'org.junit.platform:junit-platform-runner:1.3.1'
  20. compile 'com.codeborne:selenide:5.1.0'
  21. compile 'io.qameta.allure:allure-junit5:2.10.0'
  22. }
  23.  
  24. group = 'testgroup'
  25. version = '1.0-SNAPSHOT'
  26. sourceCompatibility = '1.8'
  27.  
  28. publishing {
  29. publications {
  30. maven(MavenPublication) {
  31. from(components.java)
  32. }
  33. }
  34. }
  35.  
  36. tasks.withType(JavaCompile) {
  37. options.encoding = 'UTF-8'
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement