rest-app-jpa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.osgi.enroute.examples.microservice</groupId> <artifactId>rest-app-jpa</artifactId> <version>0.0.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>microservice</artifactId> <groupId>org.osgi.enroute.examples.microservice</groupId> <version>0.0.1</version> </parent> <artifactId>rest-app-jpa</artifactId> <description>The rest-app-jpa application packaging project - using OSGi enRoute R7</description> <dependencies> <dependency> <groupId>org.osgi.enroute.examples.microservice</groupId> <artifactId>dao-impl-jpa</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>org.osgi.enroute.examples.microservice</groupId> <artifactId>rest-service</artifactId> <version>0.0.1</version> </dependency> <!-- We choose the Apache Johnzon JSONP implementation, H2 and Hibernate for our application --> <dependency> <groupId>org.apache.johnzon</groupId> <artifactId>johnzon-core</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.196</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-osgi</artifactId> <version>5.2.12.Final</version> </dependency> <!-- Needed by Hibernate, but not present as OSGi bundles in Hibernate's dependencies --> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.antlr</artifactId> <version>2.7.7_5</version> </dependency> <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.dom4j</artifactId> <version>1.6.1_5</version> </dependency> <dependency> <groupId>org.osgi.enroute</groupId> <artifactId>osgi-api</artifactId> <type>pom</type> </dependency> <dependency> <groupId>org.osgi.enroute</groupId> <artifactId>impl-index</artifactId> <type>pom</type> </dependency> <dependency> <groupId>org.osgi.enroute</groupId> <artifactId>debug-bundles</artifactId> <type>pom</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-indexer-maven-plugin</artifactId> <configuration> <includeJar>true</includeJar> </configuration> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-export-maven-plugin</artifactId> <configuration> <bndruns> <bndrun>rest-app-jpa.bndrun</bndrun> </bndruns> </configuration> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-resolver-maven-plugin</artifactId> <configuration> <bndruns> <bndrun>rest-app-jpa.bndrun</bndrun> <bndrun>debug.bndrun</bndrun> </bndruns> </configuration> </plugin> </plugins> </build> </project>