hibernate-datasource-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.n52.sensorweb.sos</groupId> <artifactId>hibernate-datasource-common</artifactId> <version>5.0.0-alpha.10</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.sos</groupId> <artifactId>hibernate-datasource</artifactId> <version>5.0.0-alpha.10</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hibernate-datasource-common</artifactId> <packaging>jar</packaging> <name>52°North SOS - Hibernate Common Datasource</name> <description>52°North Sensor Observation Service Hibernate common datasource module</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>iceland</artifactId> </dependency> <dependency> <groupId>org.n52.arctic-sea</groupId> <artifactId>shetland</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>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.n52.series.db</groupId> <artifactId>types</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hibernate-common</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hibernate-session-factory</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-c3p0</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>