pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>de.jplag</groupId>
  6. <artifactId>aggregator</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>jplag</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.fasterxml.jackson.core</groupId>
  13. <artifactId>jackson-databind</artifactId>
  14. <version>2.13.3</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.apache.commons</groupId>
  18. <artifactId>commons-math3</artifactId>
  19. <version>3.6.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>de.jplag</groupId>
  23. <artifactId>languages.api</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>de.jplag</groupId>
  28. <artifactId>java</artifactId>
  29. <version>${revision}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>de.jplag</groupId>
  34. <artifactId>cpp</artifactId>
  35. <version>${revision}</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>de.jplag</groupId>
  40. <artifactId>rlang</artifactId>
  41. <version>${revision}</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>de.jplag</groupId>
  46. <artifactId>golang</artifactId>
  47. <version>${revision}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>de.jplag</groupId>
  52. <artifactId>scala</artifactId>
  53. <version>${revision}</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>de.jplag</groupId>
  58. <artifactId>kotlin</artifactId>
  59. <version>${revision}</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>de.jplag</groupId>
  64. <artifactId>emf-metamodel</artifactId>
  65. <version>${revision}</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>de.jplag</groupId>
  70. <artifactId>emf-metamodel-dynamic</artifactId>
  71. <version>${revision}</version>
  72. <scope>test</scope>
  73. </dependency>
  74. </dependencies>
  75. </project>