|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 5 | + contributor license agreements. See the NOTICE file distributed with |
| 6 | + this work for additional information regarding copyright ownership. |
| 7 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 8 | + (the "License"); you may not use this file except in compliance with |
| 9 | + the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, software |
| 14 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | + See the License for the specific language governing permissions and |
| 17 | + limitations under the License. |
| 18 | +
|
| 19 | +--> |
| 20 | +<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"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <parent> |
| 23 | + <groupId>org.apache.jclouds.labs</groupId> |
| 24 | + <artifactId>jclouds-labs</artifactId> |
| 25 | + <version>2.0.0-SNAPSHOT</version> |
| 26 | + </parent> |
| 27 | + <artifactId>h2-jdbc</artifactId> |
| 28 | + <name>jclouds h2 jdbc provider</name> |
| 29 | + <description>jclouds implementation to target h2 databases</description> |
| 30 | + <packaging>bundle</packaging> |
| 31 | + |
| 32 | + <properties> |
| 33 | + <jclouds.osgi.export>org.jclouds.jdbc*;version="${project.version}"</jclouds.osgi.export> |
| 34 | + <jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import> |
| 35 | + </properties> |
| 36 | + |
| 37 | + <dependencies> |
| 38 | + <dependency> |
| 39 | + <groupId>org.apache.jclouds.labs</groupId> |
| 40 | + <artifactId>jdbc</artifactId> |
| 41 | + <version>${project.version}</version> |
| 42 | + <type>jar</type> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.apache.jclouds</groupId> |
| 46 | + <artifactId>jclouds-blobstore</artifactId> |
| 47 | + <version>${project.version}</version> |
| 48 | + <type>jar</type> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.apache.jclouds</groupId> |
| 52 | + <artifactId>jclouds-core</artifactId> |
| 53 | + <version>${project.version}</version> |
| 54 | + <type>test-jar</type> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.apache.jclouds</groupId> |
| 59 | + <artifactId>jclouds-blobstore</artifactId> |
| 60 | + <version>${project.version}</version> |
| 61 | + <type>test-jar</type> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.apache.jclouds.driver</groupId> |
| 66 | + <artifactId>jclouds-log4j</artifactId> |
| 67 | + <version>${project.version}</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>com.google.auto.service</groupId> |
| 72 | + <artifactId>auto-service</artifactId> |
| 73 | + <scope>provided</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>com.google.inject.extensions</groupId> |
| 77 | + <artifactId>guice-persist</artifactId> |
| 78 | + <version>4.0</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.hibernate.javax.persistence</groupId> |
| 82 | + <artifactId>hibernate-jpa-2.1-api</artifactId> |
| 83 | + <version>1.0.0.Final</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.hibernate</groupId> |
| 87 | + <artifactId>hibernate-entitymanager</artifactId> |
| 88 | + <version>4.3.9.Final</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>com.h2database</groupId> |
| 92 | + <artifactId>h2</artifactId> |
| 93 | + <version>1.4.187</version> |
| 94 | + </dependency> |
| 95 | + |
| 96 | + <!-- Test Dependencies --> |
| 97 | + <dependency> |
| 98 | + <groupId>org.assertj</groupId> |
| 99 | + <artifactId>assertj-core</artifactId> |
| 100 | + <scope>test</scope> |
| 101 | + </dependency> |
| 102 | + </dependencies> |
| 103 | + |
| 104 | +</project> |
| 105 | + |
0 commit comments