Download org.everit.osgi.bundles.javax.sql-4.1.0.jar file

Introduction

You can download org.everit.osgi.bundles.javax.sql-4.1.0.jar in this page.

License

GNU General Public License, version 2, with the Classpath Exception

Type List

org.everit.osgi.bundles.javax.sql-4.1.0.jar file has the following types.

LICENSE
META-INF.maven.org.everit.osgi.bundles.org.everit.osgi.bundles.javax.sql.pom.properties
META-INF.maven.org.everit.osgi.bundles.org.everit.osgi.bundles.javax.sql.pom.xml
META-INF/MANIFEST.MF
THIRD_PARTY_README
javax.sql.CommonDataSource.class
javax.sql.ConnectionEvent.class
javax.sql.ConnectionEventListener.class
javax.sql.ConnectionPoolDataSource.class
javax.sql.DataSource.class
javax.sql.PooledConnection.class
javax.sql.RowSet.class
javax.sql.RowSetEvent.class
javax.sql.RowSetInternal.class
javax.sql.RowSetListener.class
javax.sql.RowSetMetaData.class
javax.sql.RowSetReader.class
javax.sql.RowSetWriter.class
javax.sql.StatementEvent.class
javax.sql.StatementEventListener.class
javax.sql.XAConnection.class
javax.sql.XADataSource.class

Pom

org.everit.osgi.bundles.javax.sql-4.1.0.pom file content.

<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>

  <groupId>org.everit.osgi.bundles</groupId>
  <artifactId>org.everit.osgi.bundles.javax.sql</artifactId>
  <version>4.1.0</version>
  <packaging>bundle</packaging>

  <name>JDBC 4.1 API</name>
  <description>OSGi bundle that contains the JDBC API coming from OpenJDK 1.7. In case of OSGi, it is better to exclude
   javax.sql.*, com.sun.rowset.* and javax.transaction.* packages from the boot classpath and use them from bundles.
   Very often javax.transaction.* packages are used from a custom bundle. As javax.sql.XADataSource wires to that
   package, it is logical to have that in a custom bundle as well so there will be no package wiring issues. 
  </description>

  <url>http://www.oracle.com/technetwork/java/javase/jdbc/index.html</url>

  <scm>
    <connection>scm:hg:http://hg.openjdk.java.net/jdk7/jdk7/jdk</connection>
    <developerConnection>scm:hg:http://hg.openjdk.java.net/jdk7/jdk7/jdk</developerConnection>
    <url>http://hg.openjdk.java.net/jdk7/jdk7/jdk/</url>
  </scm>

  <licenses>
    <license>
      <name>GNU General Public License, version 2, with the Classpath Exception</name>
      <url>http://openjdk.java.net/legal/gplv2+ce.html</url>
    </license>
  </licenses>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>
  
  <developers>
    <developer>
      <name>See the javadoc of classes</name>
    </developer>
  </developers>
  
  <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>
              *;resolution:=optional
            </Import-Package>
            <Export-Package>
              javax.sql;version="4.1.0",
            </Export-Package>
            <Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.everit.osgi.bundles</groupId>
   <artifactId>org.everit.osgi.bundles.javax.sql</artifactId>
   <version>4.1.0</version>
</dependency>

Download

If you think the following org.everit.osgi.bundles.javax.sql-4.1.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.bundles.javax.sql-4.1.0.jar file




PreviousNext

Related