quicktest-osgi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sun.phobos.samples</groupId>
<artifactId>quicktest-osgi</artifactId>
<version>0.6.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">
<parent>
<groupId>com.sun.phobos.samples</groupId>
<artifactId>phobos-osgi-samples</artifactId>
<version>0.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.sun.phobos.samples</groupId>
<artifactId>quicktest-osgi</artifactId>
<packaging>jar</packaging>
<version>0.6.0</version>
<name>quicktest-osgi</name>
<url>https://phobos.dev.java.net</url>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<extensions>true</extensions>
<version>1.30</version>
<executions>
<execution>
<id>expand-framework</id>
<phase>generate-resources</phase>
<configuration>
<tasks>
<resolveArtifact groupId="com.sun.phobos" artifactId="phobos-framework" property="phobos-framework.jar" />
<unjar src="${phobos-framework.jar}" dest="${project.build.directory}/${project.build.finalName}">
<patternset>
<exclude name="META-INF" />
<exclude name="META-INF/**" />
</patternset>
</unjar>
<copy todir="${project.build.directory}/${project.build.finalName}">
<fileset dir="{project.directory}/../../lib/equinox" />
</copy>
<copy todir="${project.build.directory}/${project.build.finalName}/configuration">
<fileset dir="lib" />
</copy>
<copy todir="${project.build.directory}/${project.build.finalName}/plugins">
<fileset dir="{project.directory}/../../lib/peaberry" />
</copy>
<copy todir="${project.build.directory}/${project.build.finalName}">
<fileset dir="src/main/phobos" />
</copy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<descriptors>
<descriptor>src/main/assembly/distro.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.sun.phobos</groupId>
<artifactId>phobos-framework</artifactId>
<version>0.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.guice</groupId>
<artifactId>guice</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>