cdi-query-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ctp.cdi.query</groupId>
<artifactId>cdi-query-api</artifactId>
<version>1.0.0.Alpha5</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>com.ctp.cdi.query</groupId>
<artifactId>cdi-query-parent</artifactId>
<version>1.0.0.Alpha5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>cdi-query-api</artifactId>
<packaging>jar</packaging>
<name>CDI Query API</name>
<url>${project.parent.url}</url>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<properties>
<project.parent.url>${project.artifactId}</project.parent.url>
</properties>
<dependencies>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.ejb</groupId>
<artifactId>jboss-ejb-api_3.1_spec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-jpa</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<!-- no test phase for API module -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>