qlack2-fuse-clipboard-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.eurodyn.qlack2.fuse</groupId>
<artifactId>qlack2-fuse-clipboard-impl</artifactId>
<version>2.3.19</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-clipboard</artifactId>
<version>2.3.19</version>
<relativePath>..</relativePath>
</parent>
<artifactId>qlack2-fuse-clipboard-impl</artifactId>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-Description>QLACK2 :: Fuse :: Clipboard :: impl</Bundle-Description>
<Meta-Persistence>META-INF/persistence.xml</Meta-Persistence>
<!-- For hibernate runtime enhancement -->
<DynamicImport-Package>
org.hibernate.proxy,
javassist.util.proxy,
org.hibernate,
weblogic.jndi
</DynamicImport-Package>
<Q-Liquibase-ChangeLog>db/qlack2-fuse-clipboard-impl.liquibase.changelog.xml
</Q-Liquibase-ChangeLog>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>blueprint-maven-plugin</artifactId>
<version>${blueprint-maven-plugin.version}</version>
<configuration>
<scanPaths>
<scanPath>com.eurodyn.qlack2.fuse.clipboard.impl.bootstrap</scanPath>
</scanPaths>
</configuration>
<executions>
<execution>
<goals>
<goal>blueprint-generate</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
<!-- Testing -->
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<useManifestOnlyJar>false</useManifestOnlyJar>
<environmentVariables>
<!--suppress MavenModelInspection -->
<jcoverage.command>${jcoverage.command}</jcoverage.command>
</environmentVariables>
<includes>
<include>**/*IntegrationTests.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>depends-maven-plugin</artifactId>
<version>${depends-maven-plugin.version}</version>
<executions>
<execution>
<id>generate-depends-file</id>
<phase>generate-resources</phase>
<goals>
<goal>generate-depends-file</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>jcoverage.command</propertyName>
<includes>
<include>com.eurodyn*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>com.eurodyn.qlack2.fuse</groupId>
<artifactId>qlack2-fuse-clipboard-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>${javax.persistence.version}</version>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<version>${javax.transaction-api.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgi.version}</version>
</dependency>
<dependency>
<groupId>com.eurodyn.qlack2.util</groupId>
<artifactId>qlack2-util-liquibase-api</artifactId>
</dependency>
<dependency>
<groupId>org.ops4j.pax.cdi</groupId>
<artifactId>pax-cdi-api</artifactId>
<version>${pax.cdi.version}</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>${javax.inject.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.eurodyn.qlack2.util</groupId>
<artifactId>qlack2-util-avail-check-mysql</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.eurodyn.qlack2.util</groupId>
<artifactId>qlack2-util-testing</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit4</artifactId>
<version>${pax-exam.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.eurodyn.qlack2.util</groupId>
<artifactId>qlack2-util-docker</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf</groupId>
<artifactId>apache-karaf</artifactId>
<version>${karaf.version}</version>
<scope>test</scope>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.eurodyn.qlack2.fuse</groupId>
<artifactId>qlack2-fuse-karaf-features</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>com.eurodyn.qlack2.util</groupId>
<artifactId>qlack2-util-karaf-features</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<classifier>features</classifier>
<type>xml</type>
</dependency>
</dependencies>
</project>