Skip to content

Instantly share code, notes, and snippets.

@webdevwilson
Created January 29, 2012 13:48
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save webdevwilson/1698906 to your computer and use it in GitHub Desktop.
Roo database reverse engineer with Oracle
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
<groupId>com.oracle.roo.jdbc</groupId>
<artifactId>com.oracle.roo.jdbc.ojdbc6</artifactId>
<packaging>bundle</packaging>
<version>11.2.0.3</version>
<name>com-oracle-roo-jdbc</name>
<description>This bundle wraps the standard Maven artifact: ${pkgArtifactId}-${pkgVersion}.</description>
<properties>
<pkgArtifactId>ojdbc6</pkgArtifactId>
<pkgVersion>11.2.0.3</pkgVersion>
<osgiVersion>${pkgVersion}.0001</osgiVersion>
<pkgVendor>Oracle</pkgVendor>
<pkgDocUrl/>
<pkgLicense>http://www.oracle.com</pkgLicense>
<repo.folder>com/oracle/roo/jdbc</repo.folder>
<google.code.project.name>${project.name}</google.code.project.name>
</properties>
<dependencies>
<!-- Put your oracle dependency here. This is mine -->
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
<optional>true</optional>
</dependency>
</dependencies>
<scm>
<connection>scm:svn:https://${google.code.project.name}.googlecode.com/svn/trunk</connection>
<developerConnection>scm:svn:https://${google.code.project.name}.googlecode.com/svn/trunk</developerConnection>
<url>http://code.google.com/p/${google.code.project.name}/source/browse</url>
</scm>
<distributionManagement>
<repository>
<id>Google Code</id>
<url>dav:https://${google.code.project.name}.googlecode.com/svn/repo</url>
</repository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.4</version>
<extensions>true</extensions>
<configuration>
<remoteOBR>true</remoteOBR>
<bundleUrl>httppgp://${google.code.project.name}.googlecode.com/svn/repo/${repo.folder}/${project.artifactId}/${project.version}/${project.artifactId}-${project.version}.jar</bundleUrl>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Export-Package>*;version=${project.version}</Export-Package>
<Bundle-Vendor>${pkgVendor} (wrapped into an OSGi bundle by the Spring Roo project build system)</Bundle-Vendor>
<Bundle-DocURL>${pkgDocUrl}</Bundle-DocURL>
<Bundle-License>${pkgLicense}</Bundle-License>
<Import-Package>oracle.i18n.*;resolution:=optional,oracle.ons.*;resolution:=optional,oracle.security.pki.*;resolution:=optional,oracle.xdb.*;resolution:=optional,com.sun.security.auth.module.*;resolution:=optional,sun.security.krb5.*;resolution:=optional,sun.security.util.*;resolution:=optional,javax.resource.*;resolution:=optional,oracle.xml.parser.v2.*;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment