Reac front end for psicometric app

pom.xml 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.psicoweb.test</groupId>
  7. <artifactId>test</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>test</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.11</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.seleniumhq.selenium</groupId>
  26. <artifactId>selenium-java</artifactId>
  27. <version>4.14.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.javafaker</groupId>
  31. <artifactId>javafaker</artifactId>
  32. <version>0.15</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to
  37. parent pom) -->
  38. <plugins>
  39. <!-- clean lifecycle, see
  40. https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  41. <plugin>
  42. <artifactId>maven-clean-plugin</artifactId>
  43. <version>3.1.0</version>
  44. </plugin>
  45. <!-- default lifecycle, jar packaging: see
  46. https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  47. <plugin>
  48. <artifactId>maven-resources-plugin</artifactId>
  49. <version>3.0.2</version>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.8.0</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-surefire-plugin</artifactId>
  57. <version>2.22.1</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-jar-plugin</artifactId>
  61. <version>3.0.2</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-install-plugin</artifactId>
  65. <version>2.5.2</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-deploy-plugin</artifactId>
  69. <version>2.8.2</version>
  70. </plugin>
  71. <!-- site lifecycle, see
  72. https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  73. <plugin>
  74. <artifactId>maven-site-plugin</artifactId>
  75. <version>3.7.1</version>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-project-info-reports-plugin</artifactId>
  79. <version>3.0.0</version>
  80. </plugin>
  81. </plugins>
  82. </pluginManagement>
  83. </build>
  84. </project>