graphene-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.deephacks.graphene</groupId> <artifactId>graphene-cli</artifactId> <version>0.3.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- vi:ts=2:sw=2:expandtab: --> <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/maven-v4_0_0.xsd"> <parent> <groupId>org.deephacks.graphene</groupId> <artifactId>graphene-root</artifactId> <version>0.3.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>graphene-cli</artifactId> <name>graphene cli</name> <description>graphene cli</description> <dependencies> <dependency> <groupId>org.deephacks.graphene</groupId> <artifactId>graphene-core</artifactId> </dependency> <dependency> <groupId>org.deephacks.launcher</groupId> <artifactId>launcher</artifactId> <version>0.1.0</version> </dependency> <dependency> <groupId>org.deephacks.tools4j</groupId> <artifactId>tools4j-cli</artifactId> <version>0.0.5</version> </dependency> <dependency> <groupId>jline</groupId> <artifactId>jline</artifactId> <version>2.6</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>add-test-source</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${basedir}/target/generated-sources/annotations</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>build-tarball</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>graphene-cli-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> <attach>true</attach> <descriptors> <descriptor>${project.basedir}/assembly.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-jars</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/jars</outputDirectory> </configuration> </execution> <execution> <id>copy-sources</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/jars</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <excludeArtifactIds>netty</excludeArtifactIds> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>