jnoise-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.grimoire.jnoise</groupId> <artifactId>jnoise-examples</artifactId> <version>1.3.0</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ca.grimoire.jnoise</groupId> <artifactId>jnoise</artifactId> <version>1.3.0</version> </parent> <artifactId>jnoise-examples</artifactId> <name>JNoise Example Applications</name> <description> JNoise GUI demo for displaying noise XML files. </description> <dependencies> <dependency> <groupId>${groupId}</groupId> <artifactId>jnoise-modules</artifactId> </dependency> <dependency> <groupId>${groupId}</groupId> <artifactId>jnoise-tools</artifactId> </dependency> <dependency> <groupId>${groupId}</groupId> <artifactId>jnoise-config</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>ca.grimoire.jnoise.examples.ShowNoise</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-2</version> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/examples.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>