Download org.everit.osgi.jdbc.dsf-2.0.0.jar file

Introduction

You can download org.everit.osgi.jdbc.dsf-2.0.0.jar in this page.

License

GNU Lesser General Public License v3.0

Type List

org.everit.osgi.jdbc.dsf-2.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.everit.osgi/org.everit.osgi.jdbc.dsf/pom.properties
META-INF/maven/org.everit.osgi/org.everit.osgi.jdbc.dsf/pom.xml
OSGI-INF/metatype/metatype.properties
OSGI-INF/metatype/org.everit.osgi.jdbc.dsf.internal.DataSourceComponent.xml
OSGI-INF/metatype/org.everit.osgi.jdbc.dsf.internal.XADataSourceComponent.xml
OSGI-INF/org.everit.osgi.jdbc.dsf.internal.DataSourceComponent.xml
OSGI-INF/org.everit.osgi.jdbc.dsf.internal.XADataSourceComponent.xml
org.everit.osgi.jdbc.dsf.DSFConstants.class
org.everit.osgi.jdbc.dsf.internal.DSFUtil.class
org.everit.osgi.jdbc.dsf.internal.DataSourceComponent.class
org.everit.osgi.jdbc.dsf.internal.XADataSourceComponent.class

Pom

org.everit.osgi.jdbc.dsf-2.0.0.pom file content.

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

    This file is part of Everit - DataSourceFactory Component.

    Everit - DataSourceFactory Component 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 - DataSourceFactory Component 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 - DataSourceFactory Component.  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.0</version>
  </parent>

  <groupId>org.everit.osgi</groupId>
  <artifactId>org.everit.osgi.jdbc.dsf</artifactId>
  <version>2.0.0</version>

  <packaging>bundle</packaging>

  <name>Everit - DataSourceFactory Component</name>
  <description>A simple component that makes it possible to create DataSource or XADataSource based on configuration with the help of DataSourceFactory.</description>

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

  <scm>
    <connection>scm:git:git://github.com/everit-org/osgi-jdbc-dsf.git</connection>
    <developerConnection>scm:git:https://github.com/everit-org/osgi-jdbc-dsf.git</developerConnection>
    <url>https://github.com/everit-org/osgi-jdbc-dsf</url>
  </scm>
  <url>http://everit.org</url>
  <ciManagement>
    <system>Jenkins</system>
    <url>https://ci.everit.biz/jenkins/job/osgi-jdbc-dsf</url>
  </ciManagement>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/everit-org/osgi-jdbc-dsf/issues</url>
  </issueManagement>

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

  <developers>
    <developer>
      <name>Everit Team</name>
    </developer>
  </developers>
  
  <properties>
    <maven.compiler.source>1.5</maven.compiler.source>
    <maven.compiler.target>1.5</maven.compiler.target>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.4.0</version>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
            <Import-Package>*</Import-Package>
            <Export-Package />
          </instructions>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-scr-plugin</artifactId>
        <version>1.15.0</version>
        <executions>
          <execution>
            <id>generate-scr-scrdescriptor</id>
            <goals>
              <goal>scr</goal>
            </goals>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.scr.generator</artifactId>
            <version>1.8.2</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.apache.felix.scr.annotations</artifactId>
      <version>1.9.6</version>
    </dependency>

    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
      <version>4.3.1</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.compendium</artifactId>
      <version>4.3.1</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.everit.osgi</groupId>
   <artifactId>org.everit.osgi.jdbc.dsf</artifactId>
   <version>2.0.0</version>
</dependency>

Download

If you think the following org.everit.osgi.jdbc.dsf-2.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download org.everit.osgi.jdbc.dsf-2.0.0.jar file




PreviousNext

Related