qlack2-fuse-file-upload-rest-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.eurodyn.qlack2.fuse</groupId>
<artifactId>qlack2-fuse-file-upload-rest-impl</artifactId>
<version>2.2.4</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.eurodyn.qlack2.fuse</groupId>
<artifactId>qlack2-fuse-file-upload</artifactId>
<version>2.2.4</version>
<relativePath>..</relativePath>
</parent>
<artifactId>qlack2-fuse-file-upload-rest-impl</artifactId>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-Description>QLACK2 :: Fuse :: File upload :: impl-rest</Bundle-Description>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>blueprint-maven-plugin</artifactId>
<version>${blueprint.maven.plugin}</version>
<configuration>
<scanPaths>
<scanPath>com.eurodyn.qlack2.fuse.fileupload.impl</scanPath>
</scanPaths>
</configuration>
<executions>
<execution>
<goals>
<goal>blueprint-generate</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>attach-config-admin-artifact</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${basedir}/src/main/resources/OSGI-INF/config-admin.cfg</file>
<type>cfg</type>
<classifier>config-admin</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<version>${karaf.cxf.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${javax.servlet-api.version}</version>
</dependency>
<dependency>
<groupId>com.eurodyn.qlack2.fuse</groupId>
<artifactId>qlack2-fuse-file-upload-rest-api</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>${javax.inject.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.cdi</groupId>
<artifactId>pax-cdi-api</artifactId>
<version>${pax.cdi.version}</version>
</dependency>
</dependencies>
</project>