<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>klay</artifactId> <groupId>io.github.ks-shim.klay</groupId> <version>0.3.8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>klay-python-wrapper</artifactId> <dependencies> <dependency> <groupId>io.github.ks-shim.klay</groupId> <artifactId>klay-core</artifactId> <version>0.3.8</version> </dependency> <!-- https://mvnrepository.com/artifact/net.sf.py4j/py4j --> <dependency> <groupId>net.sf.py4j</groupId> <artifactId>py4j</artifactId> <version>0.10.8.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${project.build.directory}/releases/</outputDirectory> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.github.ks-shim.klay</groupId> <artifactId>klay-python-wrapper</artifactId> <version>0.3.8</version> </dependency>
io.github.ks-shim.klay:klay-python-wrapper:0.3.8