sos-hibernate-datasource-postgres
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-hibernate-datasource-postgres</artifactId> <version>6.0.0-PR.14</version> </dependency>
<?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"> <parent> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-hibernate-datasource</artifactId> <version>6.0.0-PR.14</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>sos-hibernate-datasource-postgres</artifactId> <packaging>jar</packaging> <name>52°North SOS - Hibernate Postgres/PostGIS Datasource</name> <description>52°North Sensor Observation Service Hibernate PostgresSQL/PostGIS module</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-hibernate-datasource-common</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-hibernate-session-factory</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.n52.sensorweb-server.db-model</groupId> <artifactId>db-model-dialects</artifactId> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>faroe</artifactId> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>faroe-utils</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-c3p0</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-spatial</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>net.postgis</groupId> <artifactId>postgis-jdbc</artifactId> <scope>runtime</scope> </dependency> </dependencies> </project>