Newer
Older
AlgebraicDataflowArchitectureModel / LanguageServer / pom.xml
  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.  
  7. <groupId>org.nittalab</groupId>
  8. <artifactId>LanguageServer</artifactId>
  9. <version>0.1</version>
  10.  
  11. <properties>
  12. <maven.compiler.source>21</maven.compiler.source>
  13. <maven.compiler.target>21</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.eclipse.lsp4j</groupId>
  20. <artifactId>org.eclipse.lsp4j</artifactId>
  21. <version>0.24.0</version>
  22. </dependency>
  23.  
  24. <dependency>
  25. <groupId>org.junit.jupiter</groupId>
  26. <artifactId>junit-jupiter-api</artifactId>
  27. <version>5.13.0-M2</version>
  28. <scope>test</scope>
  29. </dependency>
  30.  
  31. <dependency>
  32. <groupId>org.junit.platform</groupId>
  33. <artifactId>junit-platform-reporting</artifactId>
  34. <version>1.13.0-M2</version>
  35. <scope>test</scope>
  36. </dependency>
  37. </dependencies>
  38.  
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-surefire-plugin</artifactId>
  43. <version>3.5.3</version>
  44. <configuration>
  45. <properties>
  46. <configurationParameters>
  47. junit.platform.reporting.open.xml.enabled = true
  48. junit.platform.reporting.output.dir = target/surefire-reports
  49. </configurationParameters>
  50. </properties>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>