Maven Repository - POM file for Database org.everit.osgi.resource.ri.schema.qdsl 1.0.0 1.0.0

Summary

Everit - Resource RI Schema.

The database schema of the Resource RI component based on QueryDSL..

Declaration

Here is the list of declaration for org.everit.osgi.resource.ri.schema.qdsl. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.everit.osgi</groupId>
   <artifactId>org.everit.osgi.resource.ri.schema.qdsl</artifactId>
   <version>1.0.0</version>
</dependency>

If you think this Maven repository POM file listing for org.everit.osgi.resource.ri.schema.qdsl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:GNU Lesser General Public License v3.0
URL: http://opensource.org/licenses/LGPL-3.0.





Depends on

The org.everit.osgi.resource.ri.schema.qdsl-1.0.0 has 4 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
Logslf4j-simple 1.7.7
SLF4J Simple binding
346

Plugin

The following plugins are used in the org.everit.osgi.resource.ri.schema.qdsl-1.0.0.jar

  1. build-helper-maven-plugin
  2. lqmg-maven-plugin
  3. maven-bundle-plugin

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--

    This file is part of Everit - Resource RI Schema.

    Everit - Resource RI Schema is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Everit - Resource RI Schema is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with Everit - Resource RI Schema.  If not, see <http://www.gnu.org/licenses/>.

-->
<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>org.everit.config</groupId>
    <artifactId>org.everit.config.oss</artifactId>
    <version>5.0.2</version>
  </parent>

  <groupId>org.everit.osgi</groupId>
  <artifactId>org.everit.osgi.resource.ri.schema.qdsl</artifactId>
  <version>1.0.0</version>

  <packaging>bundle</packaging>

  <name>Everit - Resource RI Schema</name>
  <description>The database schema of the Resource RI component based on QueryDSL.</description>

  <properties>
    <projectpath>resource-ri</projectpath>
    <maven.compiler.source>1.6</maven.compiler.source>
    <maven.compiler.target>1.6</maven.compiler.target>
  </properties>

  <scm>
    <connection>scm:git:git://github.com/everit-org/${projectpath}.git</connection>
    <developerConnection>scm:git:https://github.com/everit-org/${projectpath}.git</developerConnection>
    <url>https://github.com/everit-org/${projectpath}</url>
  </scm>

  <url>http://everit.org</url>

  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/everit-org/${projectpath}/issues</url>
  </issueManagement>

  <licenses>
    <license>
      <name>GNU Lesser General Public License v3.0</name>
      <url>http://opensource.org/licenses/LGPL-3.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  

  <organization>
    <name>Everit Kft.</name>
    <url>http://www.everit.biz</url>
  </organization>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.5.0</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
            <Import-Package>
              *
            </Import-Package>
            <Export-Package>
              org.everit.osgi.resource.ri.schema.qdsl
            </Export-Package>
            <Require-Capability>
            </Require-Capability>
            <Provide-Capability>
              liquibase.schema;name=org.everit.osgi.resource.ri;resource=/META-INF/liquibase/resource.ri.liquibase.xml;lqmg.config.resource=/META-INF/liquibase/resource.ri.lqmg.xml
            </Provide-Capability>
          </instructions>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.everit.osgi.dev</groupId>
        <artifactId>lqmg-maven-plugin</artifactId>
        <version>3.0.0</version>
        <configuration>
          <defaultSchema>org.everit.osgi.resource.ri</defaultSchema>
          <capability>org.everit.osgi.resource.ri</capability>
          <packages>org.everit.osgi.resource.ri.schema.qdsl</packages>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>1.8</version>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>add-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>src/main/generated/java/</source>
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>com.mysema.querydsl</groupId>
      <artifactId>querydsl-sql</artifactId>
      <version>3.4.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.servicemix.bundles</groupId>
      <artifactId>org.apache.servicemix.bundles.jsr305</artifactId>
      <version>2.0.0_1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.servicemix.bundles</groupId>
      <artifactId>org.apache.servicemix.bundles.javax-inject</artifactId>
      <version>1_2</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.7.7</version>
    </dependency>
  </dependencies>

</project>