Download hibernate4-sqlite-dialect-0.1.2.jar file

Introduction

You can download hibernate4-sqlite-dialect-0.1.2.jar in this page.

License

MIT

Type List

hibernate4-sqlite-dialect-0.1.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.enigmabridge/hibernate4-sqlite-dialect/pom.properties
META-INF/maven/com.enigmabridge/hibernate4-sqlite-dialect/pom.xml
com.enigmabridge.hibernate.dialect.SQLiteDialect.class

Pom

hibernate4-sqlite-dialect-0.1.2.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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.enigmabridge</groupId>
    <artifactId>hibernate4-sqlite-dialect</artifactId>
    <version>0.1.2</version>
    <name>Hibernate4 SQLite dialect</name>
    <description>Dialect for SQLite for Hibernate ORM</description>
    <packaging>jar</packaging>
    <url>https://github.com/EnigmaBridge/hibernate4-sqlite-dialect</url>

    <licenses>
        <license>
            <name>MIT</name>
            <url>https://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <issueManagement>
        <system>github</system>
        <url>https://github.com/EnigmaBridge/hibernate4-sqlite-dialect/issues</url>
    </issueManagement>

    <scm>
        <url>https://github.com/EnigmaBridge/hibernate4-sqlite-dialect</url>
        <connection>scm:git:git://github.com/EnigmaBridge/hibernate4-sqlite-dialect</connection>
        <developerConnection>scm:git:git@github.com:EnigmaBridge/hibernate4-sqlite-dialect.git</developerConnection>
    </scm>

    <developers>
        <developer>
            <name>Dusan Klinec</name>
            <email>dusan.klinec@gmail.com</email>
            <organization>EnigmaBridge</organization>
            <organizationUrl>https://enigmabridge.com/</organizationUrl>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>4.3.11.Final</version>
        </dependency>
    </dependencies>

    <!-- Maven distribution repositories -->
    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <!-- Releasing: http://central.sonatype.org/pages/apache-maven.html -->
    <profiles>
        <profile>
            <id>release</id>
            <build>
                <plugins>

                    <!-- Release -->
                    <plugin>
                        <groupId>org.sonatype.plugins</groupId>
                        <artifactId>nexus-staging-maven-plugin</artifactId>
                        <version>1.6.3</version>
                        <extensions>true</extensions>
                        <configuration>
                            <serverId>ossrh</serverId>
                            <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                            <autoReleaseAfterClose>true</autoReleaseAfterClose>
                        </configuration>
                    </plugin>

                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-release-plugin</artifactId>
                        <version>2.5</version>
                        <configuration>
                            <autoVersionSubmodules>true</autoVersionSubmodules>
                            <useReleaseProfile>false</useReleaseProfile>
                            <releaseProfiles>release</releaseProfiles>
                            <goals>deploy</goals>
                        </configuration>
                    </plugin>

                    <!-- Sources & Javadocs -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.2.1</version>
                        <executions>
                            <execution>
                                <id>attach-sources</id>
                                <goals>
                                    <goal>jar-no-fork</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.9.1</version>
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>

                    <!-- GPG signature -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <build>
        <plugins>

            <!-- Project building -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>

        </plugins>
    </build>


</project>

POM Entry

<dependency>
   <groupId>com.enigmabridge</groupId>
   <artifactId>hibernate4-sqlite-dialect</artifactId>
   <version>0.1.2</version>
</dependency>

Download

If you think the following hibernate4-sqlite-dialect-0.1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download hibernate4-sqlite-dialect-0.1.2.jar file




PreviousNext

Related