<?xml version="1.0" encoding="UTF-8" ?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.entropy-cloud</groupId>
<artifactId>nop-code</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>nop-code-lang-python</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>io.github.entropy-cloud</groupId>
<artifactId>nop-code-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.bonede</groupId>
<artifactId>tree-sitter</artifactId>
<version>0.25.3</version>
</dependency>
<dependency>
<groupId>io.github.bonede</groupId>
<artifactId>tree-sitter-python</artifactId>
<version>0.23.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>