http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/blob/890a5b8a/bndrun/org.apache.aries.jax-rs.example.bndrun ---------------------------------------------------------------------- diff --git a/bndrun/org.apache.aries.jax-rs.example.bndrun b/bndrun/org.apache.aries.jax-rs.example.bndrun new file mode 100644 index 0000000..df887ad --- /dev/null +++ b/bndrun/org.apache.aries.jax-rs.example.bndrun @@ -0,0 +1,47 @@ +-standalone: + +-plugin.pom.repo = \ + aQute.bnd.repository.maven.pom.provider.BndPomRepository; \ + snapshotUrls=https://oss.sonatype.org/content/repositories/osgi/; \ + releaseUrls=https://repo1.maven.org/maven2/; \ + pom=${.}/pom.xml; \ + name=pom.repo; \ + location=${.}/target/cached.xml + +-runrequires: osgi.identity;filter:='(osgi.identity=org.apache.aries.jax-rs.example)' +-runfw: org.eclipse.osgi;version='[3.10.100.v20150529-1857,3.10.100.v20150529-1857]' +-runbundles: \ + log4j;version='[1.2.17,1.2.18)',\ + org.apache.aries.jax-rs.example;version=snapshot,\ + org.apache.aries.jax-rs.cxf-common;version='[1.0.0,1.0.1)',\ + org.apache.aries.rest.extender;version='[1.0.0,1.0.1)',\ + org.apache.commons.fileupload;version='[1.2.2,1.2.3)',\ + org.apache.commons.io;version='[2.4.0,2.4.1)',\ + org.apache.felix.configadmin;version='[1.8.6,1.8.7)',\ + org.apache.felix.http.api;version='[3.0.0,3.0.1)',\ + org.apache.felix.scr;version='[2.0.6,2.0.7)',\ + org.eclipse.equinox.http.jetty;version='[3.4.0,3.4.1)',\ + org.eclipse.equinox.http.servlet;version='[1.4.0,1.4.1)',\ + org.eclipse.equinox.metatype;version='[1.4.200,1.4.201)',\ + org.eclipse.jetty.http;version='[9.3.9,9.3.10)',\ + org.eclipse.jetty.io;version='[9.3.9,9.3.10)',\ + org.eclipse.jetty.security;version='[9.3.9,9.3.10)',\ + org.eclipse.jetty.server;version='[9.3.9,9.3.10)',\ + org.eclipse.jetty.servlet;version='[9.3.9,9.3.10)',\ + org.eclipse.jetty.util;version='[9.3.9,9.3.10)',\ + org.objectweb.asm.all.debug;version='[5.0.3,5.0.4)',\ + org.osgi.service.metatype;version='[1.3.0,1.3.1)',\ + org.slf4j.api;version='[1.7.2,1.7.3)',\ + org.apache.felix.bundlerepository;version='[2.0.8,2.0.9)',\ + org.apache.felix.gogo.command;version='[1.0.0,1.0.1)',\ + org.apache.felix.gogo.runtime;version='[1.0.0,1.0.1)',\ + org.apache.felix.gogo.shell;version='[1.0.0,1.0.1)',\ + javax.servlet-api;version='[3.1.0,3.1.1)' + +-runee: JavaSE-1.8 +-resolve.effective: resolve, active +-runproperties.eqnx: \ + osgi.console.enable.builtin=false, \ + osgi.console=, \ + org.osgi.service.http.port=8080 +-runsystemcapabilities.dflt: ${native_capability} \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/blob/890a5b8a/bndrun/pom.xml ---------------------------------------------------------------------- diff --git a/bndrun/pom.xml b/bndrun/pom.xml new file mode 100644 index 0000000..444e74d --- /dev/null +++ b/bndrun/pom.xml @@ -0,0 +1,50 @@ +<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.apache.aries</groupId> + <artifactId>org.apache.aries.jax-rs</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + + <artifactId>org.apache.aries.jax-rs.example.bndrun</artifactId> + + <packaging>jar</packaging> + + <build> + <plugins> + <plugin> + <groupId>biz.aQute.bnd</groupId> + <artifactId>bnd-export-maven-plugin</artifactId> + <version>3.4.0-SNAPSHOT</version> + <configuration> + <resolve>true</resolve> + <bndruns> + <bndrun>org.apache.aries.jax-rs.example.bndrun</bndrun> + </bndruns> + <targetDir>.</targetDir> + </configuration> + <executions> + <execution> + <goals> + <goal>export</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.apache.aries</groupId> + <artifactId>org.apache.aries.jax-rs.example</artifactId> + <version>1.0.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>osgi.enroute.pom.distro</artifactId> + <version>2.0.0</version> + </dependency> + </dependencies> +</project> \ No newline at end of file
