pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. </dependency>
  15. <dependency>
  16. <groupId>org.apache.commons</groupId>
  17. <artifactId>commons-math3</artifactId>
  18. <version>3.6.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>de.jplag</groupId>
  22. <artifactId>language-api</artifactId>
  23. <version>${revision}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>de.jplag</groupId>
  27. <artifactId>java</artifactId>
  28. <version>${revision}</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>de.jplag</groupId>
  33. <artifactId>cpp</artifactId>
  34. <version>${revision}</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>de.jplag</groupId>
  39. <artifactId>rlang</artifactId>
  40. <version>${revision}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>de.jplag</groupId>
  45. <artifactId>golang</artifactId>
  46. <version>${revision}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>de.jplag</groupId>
  51. <artifactId>scala</artifactId>
  52. <version>${revision}</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>de.jplag</groupId>
  57. <artifactId>kotlin</artifactId>
  58. <version>${revision}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>de.jplag</groupId>
  63. <artifactId>emf-metamodel</artifactId>
  64. <version>${revision}</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>de.jplag</groupId>
  69. <artifactId>emf-metamodel-dynamic</artifactId>
  70. <version>${revision}</version>
  71. <scope>test</scope>
  72. </dependency>
  73. </dependencies>
  74. </project>