You can download ormlite-jdbc-5.0.jar in this page.
ISC License
ormlite-jdbc-5.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.j256.ormlite/ormlite-jdbc/pom.properties META-INF/maven/com.j256.ormlite/ormlite-jdbc/pom.xml com.j256.ormlite.db.DatabaseTypeUtils.class com.j256.ormlite.db.Db2DatabaseType.class com.j256.ormlite.db.DerbyClientServerDatabaseType.class com.j256.ormlite.db.DerbyEmbeddedDatabaseType.class com.j256.ormlite.db.GenericOdbcDatabaseType.class com.j256.ormlite.db.H2DatabaseType.class com.j256.ormlite.db.HsqldbDatabaseType.class com.j256.ormlite.db.MariaDbDatabaseType.class com.j256.ormlite.db.MysqlDatabaseType.class com.j256.ormlite.db.NetezzaDatabaseType.class com.j256.ormlite.db.OracleDatabaseType.class com.j256.ormlite.db.PostgresDatabaseType.class com.j256.ormlite.db.SqlServerDatabaseType.class com.j256.ormlite.db.SqlServerJtdsDatabaseType.class com.j256.ormlite.db.SqliteDatabaseType.class com.j256.ormlite.jdbc.DataSourceConnectionSource.class com.j256.ormlite.jdbc.JdbcCompiledStatement.class com.j256.ormlite.jdbc.JdbcConnectionSource.class com.j256.ormlite.jdbc.JdbcDatabaseConnection.class com.j256.ormlite.jdbc.JdbcDatabaseResults.class com.j256.ormlite.jdbc.JdbcPooledConnectionSource.class com.j256.ormlite.jdbc.JdbcSingleConnectionSource.class com.j256.ormlite.jdbc.TypeValMapper.class com.j256.ormlite.logger.CommonsLoggingLog.class com.j256.ormlite.logger.JavaUtilLog.class com.j256.ormlite.logger.Log4j2Log.class com.j256.ormlite.logger.Log4jLog.class com.j256.ormlite.spring.DaoFactory.class com.j256.ormlite.spring.TableCreator.class com/j256/ormlite/jdbc/LICENSE.txt com/j256/ormlite/jdbc/README.txt
ormlite-jdbc-5.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <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"> <!-- ormlite configuration file for Maven (http://maven.apache.org/) --> <modelVersion>4.0.0</modelVersion> <groupId>com.j256.ormlite</groupId> <artifactId>ormlite-jdbc</artifactId> <version>5.0</version> <packaging>jar</packaging> <name>ORMLite JDBC</name> <url>http://ormlite.sourceforge.net/</url> <description>Lightweight Object Relational Model (ORM) JDBC classes</description> <licenses> <license> <name>ISC License</name> <url>http://ormlite.com/docs/license</url> <distribution>repo</distribution> </license> </licenses> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <scm> <url>https://github.com/j256/ormlite-jdbc</url> <connection>scm:git:ssh://git@github.com/j256/ormlite-jdbc.git</connection> <developerConnection>scm:git:ssh://git@github.com/j256/ormlite-jdbc.git</developerConnection> </scm> <properties> <!-- default empty string that can be overridden on command line. due to surefire's parser bug, if we don't have this here and have any other characters where this is used, it'll get replaced with string "null" --> <surefire.argLine /> <!-- external test package versions --> <persistence-api-version>1.0</persistence-api-version> <easymock-version>2.3</easymock-version> <h2-version>1.2.128</h2-version> <junit-version>4.8.1</junit-version> <joda-time-version>1.5</joda-time-version> <ormlite-version>${project.version}</ormlite-version> <commons-logging-version>1.1.1</commons-logging-version> <log4j-version>1.2.12</log4j-version> <log4j2-version>2.0-beta4</log4j2-version> </properties> <developers> <developer> <id>gray</id> <name>Gray Watson</name> <url>http://256.com/gray/</url> <organization>256.com</organization> <organizationUrl>http://256.com/</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-5</timezone> </developer> </developers> <profiles> <profile> <id>sf</id> <distributionManagement> <repository> <id>sourceforge</id> <name>SourceForge</name> <url>sftp://graywatson,ormlite@frs.sourceforge.net:/home/frs/project/o/or/ormlite/releases</url> </repository> <snapshotRepository> <id>sourceforge</id> <name>SourceForge</name> <url>sftp://graywatson,ormlite@frs.sourceforge.net:/home/frs/project/o/or/ormlite/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>${gpgPhase}</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>D3412AC1</keyname> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>st</id> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>${gpgPhase}</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>D3412AC1</keyname> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <finalName>ormlite-jdbc</finalName> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <!-- copied from the sonatype stuff so we can override the params --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release -DgpgPhase=${gpgPhase} -Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <goals> <goal>jar</goal> </goals> <configuration> <showPackage>false</showPackage> <additionalparam>-tag inheritDoc:X</additionalparam> </configuration> </execution> </executions> <configuration> <showPackage>false</showPackage> <bottom> This documentation is licensed by Gray Watson under the <a href="http://creativecommons.org/licenses/by-sa/3.0/" >Creative Commons Attribution-Share Alike 3.0 License. </a> </bottom> <additionalparam>-tag inheritDoc:X</additionalparam> <excludePackageNames>com.j256.ormlite.stmt.query,com.j256.ormlite.stmt.mapped </excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <archive> <manifestEntries> <Application-Version>${appVersion}</Application-Version> </manifestEntries> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <version>1.5.0</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>replace</goal> </goals> </execution> <execution> <id>prepare-package</id> <phase>prepare-package</phase> <goals> <goal>replace</goal> </goals> </execution> </executions> <configuration> <ignoreMissingFile>false</ignoreMissingFile> <file>src/main/java/com/j256/ormlite/jdbc/JdbcDatabaseConnection.java</file> <outputFile>src/main/java/com/j256/ormlite/jdbc/JdbcDatabaseConnection.java</outputFile> <regex>true</regex> <token>(VERSION__).*(__)</token> <value>$1${version}$2</value> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <versionRange>[1.5.0,)</versionRange> <goals> <goal>replace</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>enforce</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <!-- =================================================================== --> <!-- main dependencies --> <dependency> <groupId>com.j256.ormlite</groupId> <artifactId>ormlite-core</artifactId> <version>${ormlite-version}</version> </dependency> <!-- =================================================================== --> <!-- test dependencies --> <dependency> <groupId>com.j256.ormlite</groupId> <artifactId>ormlite-core</artifactId> <version>${ormlite-version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> <version>${persistence-api-version}</version> <scope>test</scope> </dependency> <!-- THESE ARE FOR TESTING PURPOSES ONLY --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>${easymock-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>${joda-time-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons-logging-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j2-version}</version> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.j256.ormlite</groupId> <artifactId>ormlite-jdbc</artifactId> <version>5.0</version> </dependency>
If you think the following ormlite-jdbc-5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download ormlite-jdbc-5.0.jar file