net.osgiliath.wrapper.hibernate.validator.cdi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.osgiliath.wrappers</groupId>
<artifactId>net.osgiliath.wrapper.hibernate.validator.cdi</artifactId>
<version>0.3.7</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>net.osgiliath.wrappers</groupId>
<artifactId>net.osgiliath.wrappers</artifactId>
<version>0.3.7</version>
</parent>
<artifactId>net.osgiliath.wrapper.hibernate.validator.cdi</artifactId>
<name>Wrapper for Hibernate validator CDI</name>
<description>OSGI manifest wrapper for Hibernate validator CDI</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>compile</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-cdi</artifactId>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<_include>-osgi.bnd</_include>
<Bundle-Version>${org.hibernate_hibernate-validator-cdi.version}</Bundle-Version>
<Embed-Dependency>hibernate-validator-cdi,!*</Embed-Dependency>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-cdi</artifactId>
</dependency>
</dependencies>
</project>