Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
ROO-3008: database introspect does not work with firebird
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Stewart committed Jan 7, 2012
1 parent 65c6d9c commit d81d328
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
39 changes: 39 additions & 0 deletions connector/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.roo</groupId>
<artifactId>wrapping</artifactId>
<version>1.1.5.RELEASE</version>
</parent>
<groupId>org.springframework.roo.wrapping</groupId>
<artifactId>${project.groupId}.${pkgArtifactId}</artifactId>
<version>${osgiVersion}</version>
<packaging>bundle</packaging>
<name>Spring Roo - Wrapping - ${pkgArtifactId}</name>
<description>This bundle wraps the standard Maven artifact: ${pkgArtifactId}-${pkgVersion}.</description>

<properties>
<pkgArtifactId>connector</pkgArtifactId>
<pkgVersion>1.0</pkgVersion>
<osgiVersion>${pkgVersion}.0010</osgiVersion>
</properties>

<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>javax.resource</groupId>
<artifactId>${pkgArtifactId}</artifactId>
<version>${pkgVersion}</version>
<optional>true</optional>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions firebird/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<properties>
<pkgArtifactId>firebird</pkgArtifactId>
<pkgVersion>2.1.6</pkgVersion>
<osgiVersion>${pkgVersion}.0010</osgiVersion>
<osgiVersion>${pkgVersion}.0020</osgiVersion>
<pkgVendor>The Firebird Project</pkgVendor>
<pkgDocUrl>http://www.firebirdsql.org/</pkgDocUrl>
<pkgLicense><![CDATA[http://www.firebirdsql.org/index.php?op=doc&amp;id=idpl]]></pkgLicense>
Expand Down Expand Up @@ -53,7 +53,7 @@
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>javax.resource.*;resolution:=optional,com.sun.*;resolution:=optional,org.apache.*;resolution:=optional,sun.io.*;resolution:=optional,*</Import-Package>
<Import-Package>com.sun.*;resolution:=optional,org.apache.*;resolution:=optional,sun.io.*;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
</plugin>
Expand Down

0 comments on commit d81d328

Please sign in to comment.