sos-hibernate-h2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-hibernate-h2</artifactId> <version>6.0.1</version> </dependency>
<?xml version="1.0"?> <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> <parent> <groupId>org.n52.sensorweb-server.sos</groupId> <artifactId>sos-hibernate</artifactId> <version>6.0.1</version> </parent> <artifactId>sos-hibernate-h2</artifactId> <name>52°North SOS - Hibernate H2</name> <dependencies> <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.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-hibernate-session-factory</artifactId> </dependency> <dependency> <groupId>org.hibernate.common</groupId> <artifactId>hibernate-commons-annotations</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-cache</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.n52.sensorweb-server.db-model</groupId> <artifactId>db-model-mappings</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.n52.sensorweb-server.db-model</groupId> <artifactId>db-model-types</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sos-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>org.opengeo</groupId> <artifactId>geodb</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-spatial</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> <dependency> <artifactId>hamcrest</artifactId> <groupId>org.hamcrest</groupId> <scope>compile</scope> </dependency> <dependency> <artifactId>junit</artifactId> <groupId>junit</groupId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.n52.sensorweb-server.db-model</groupId> <artifactId>db-model-mappings</artifactId> <overWrite>false</overWrite> </artifactItem> </artifactItems> <includes>**/*.xml</includes> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <overWriteReleases>false</overWriteReleases> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>