<?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>protostuff-compiler</artifactId> <groupId>io.protostuff</groupId> <version>2.0.0-alpha36</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>protostuff-cli</artifactId> <name>Protostuff Compiler - Command Line Interface</name> <properties> <log4j.version>2.3</log4j.version> </properties> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.4</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <mainClass>io.protostuff.compiler.cli.ProtostuffCompilerCli</mainClass> </manifest> </archive> <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> <dependencies> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-parser</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-generator</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> </dependencies> </project>
<dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-cli</artifactId> <version>2.0.0-alpha36</version> <classifier>jar-with-dependencies</classifier> </dependency>
io.protostuff:protostuff-cli:2.0.0-alpha36:jar-with-dependencies