<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.noear</groupId> <artifactId>luffy-parent</artifactId> <version>1.0.7</version> <relativePath>../luffy-parent/pom.xml</relativePath> </parent> <artifactId>luffy.executor.s.python</artifactId> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.python</groupId> <artifactId>jython</artifactId> <version>2.7-b1</version> </dependency> <dependency> <groupId>org.noear</groupId> <artifactId>solon</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.noear</groupId> <artifactId>snack3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.noear</groupId> <artifactId>luffy.base</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <compilerArgument>-parameters</compilerArgument> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <finalName>${project.artifactId}</finalName> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.noear</groupId> <artifactId>luffy.executor.s.python</artifactId> <version>1.0.7</version> </dependency>
org.noear:luffy.executor.s.python:1.0.7