rapid-generator-cmd-line
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.rapid-framework</groupId> <artifactId>rapid-generator-cmd-line</artifactId> <version>4.0.5</version> </dependency>
<?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> <groupId>com.googlecode.rapid-framework</groupId> <artifactId>rapid-generator-cmd-line</artifactId> <version>4.0.5</version> <name>rapid-generator-cmd-line</name> <url>http://maven.apache.org</url> <packaging>jar</packaging> <parent> <groupId>com.googlecode.rapid-framework</groupId> <artifactId>rapid-generator-parent</artifactId> <version>4.0.5</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2</version> <configuration> <descriptors> <descriptor>src/main/assembly/zip.xml</descriptor> </descriptors> <descriptorRefs> <descriptorRef>project</descriptorRef> </descriptorRefs> <attach>false</attach> </configuration> <executions> <execution> <id>make-assembly</id> <phase>process-resources</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>