Maven Repository - POM file for Business querydsl-core 2.3.0 2.3.0

Summary

Querydsl - Core module.

core module for querydsl.

Declaration

Here is the list of declaration for querydsl-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.mysema.querydsl</groupId>
   <artifactId>querydsl-core</artifactId>
   <version>2.3.0</version>
</dependency>

If you think this Maven repository POM file listing for querydsl-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The querydsl-core-2.3.0 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Developmentjsr305 1.3.2
support for jsr305 annotation project
19
Testing Coding Styleannotations 1.3.2
Annotation supports the FindBugs tool
37
Inversion of Controljavax.inject 1
The javax.inject API
539




Plugin

The following plugins are used in the querydsl-core-2.3.0.jar

  1. com.springsource.bundlor.maven
  2. maven-jar-plugin
  3. maven-source-plugin

Packages

The following packages are defined in the querydsl-core-2.3.0.jar

com.mysema.query
com.mysema.query.alias
com.mysema.query.annotations
com.mysema.query.codegen
com.mysema.query.dml
com.mysema.query.group
com.mysema.query.support
com.mysema.query.types
com.mysema.query.types.expr
com.mysema.query.types.path
com.mysema.query.types.query
com.mysema.query.types.template
com.mysema.query.util
com.mysema.util




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>com.mysema.querydsl</groupId>
    <artifactId>querydsl-root</artifactId>
    <version>2.3.0</version>
    <relativePath>../querydsl-root/pom.xml</relativePath> 
  </parent>

  <groupId>com.mysema.querydsl</groupId>
  <artifactId>querydsl-core</artifactId>
  <name>Querydsl - Core module</name>
  <description>core module for querydsl</description>
  <packaging>jar</packaging>
  
  <dependencies>
   <dependency>
     <groupId>net.sourceforge.collections</groupId>
     <artifactId>collections-generic</artifactId>
     <version>${commons.collections.version}</version>
   </dependency> 
   <dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>${commons.lang.version}</version>
   </dependency>
   <dependency>
      <groupId>com.mysema.commons</groupId>
      <artifactId>mysema-commons-lang</artifactId>
      <version>${mysema.lang.version}</version>
    </dependency>
    <dependency>
      <groupId>com.mysema.codegen</groupId>
      <artifactId>codegen</artifactId>
      <version>${codegen.version}</version>
    </dependency>
    
    <dependency>
      <groupId>net.sourceforge.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>1.3.2</version>
    </dependency>
    <dependency>
      <groupId>net.sourceforge.findbugs</groupId>
      <artifactId>annotations</artifactId>
      <version>1.3.2</version>
    </dependency>  

    <dependency>  
      <groupId>javax.inject</groupId>  
      <artifactId>javax.inject</artifactId>  
      <version>1</version>  
    </dependency>  

    <!-- alias dependencies -->

    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib</artifactId>
      <version>2.2</version>
    </dependency>
    
    <!--  test -->
    
    <dependency>
      <groupId>jdepend</groupId>
      <artifactId>jdepend</artifactId>
      <version>2.9.1</version>
      <scope>test</scope>
  </dependency>
    
  </dependencies>
  
  <build>
    <plugins>
      <plugin>
        <groupId>com.springsource.bundlor</groupId>
        <artifactId>com.springsource.bundlor.maven</artifactId>
      </plugin>    
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>test-jar</id>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>