OSGi properties.
Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/0d3069a3 Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/0d3069a3 Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/0d3069a3 Branch: refs/heads/multimodule Commit: 0d3069a39b5e0cc7904703db163d0528e93c06de Parents: a57ab6a Author: Gilles <[email protected]> Authored: Fri Nov 4 09:15:49 2016 +0100 Committer: Gilles <[email protected]> Committed: Fri Nov 4 09:15:49 2016 +0100 ---------------------------------------------------------------------- commons-rng-client-api/pom.xml | 7 +++++++ commons-rng-core/pom.xml | 7 +++++++ commons-rng-examples/pom.xml | 7 ++++++- commons-rng-jmh/pom.xml | 5 +++++ commons-rng-simple/pom.xml | 8 ++++++++ 5 files changed, 33 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/0d3069a3/commons-rng-client-api/pom.xml ---------------------------------------------------------------------- diff --git a/commons-rng-client-api/pom.xml b/commons-rng-client-api/pom.xml index cbea3ef..c6ba946 100644 --- a/commons-rng-client-api/pom.xml +++ b/commons-rng-client-api/pom.xml @@ -19,4 +19,11 @@ <inceptionYear>2016</inceptionYear> <description>The Apache Commons RNG API module defines the API for client code that uses random numbers generators.</description> + <properties> + <!-- This value must reflect the current name of the base package. --> + <commons.osgi.symbolicName>org.apache.commons.rng</commons.osgi.symbolicName> + <!-- OSGi --> + <commons.osgi.export>org.apache.commons.rng</commons.osgi.export> + </properties> + </project> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/0d3069a3/commons-rng-core/pom.xml ---------------------------------------------------------------------- diff --git a/commons-rng-core/pom.xml b/commons-rng-core/pom.xml index eabca38..4b9faf9 100644 --- a/commons-rng-core/pom.xml +++ b/commons-rng-core/pom.xml @@ -20,6 +20,13 @@ <description>The Apache Commons RNG Core module provides pure Java implementations of random numbers generator algorithms.</description> + <properties> + <!-- This value must reflect the current name of the base package. --> + <commons.osgi.symbolicName>org.apache.commons.rng.core</commons.osgi.symbolicName> + <!-- OSGi --> + <commons.osgi.export>org.apache.commons.rng.core</commons.osgi.export> + </properties> + <dependencies> <dependency> <groupId>org.apache.commons</groupId> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/0d3069a3/commons-rng-examples/pom.xml ---------------------------------------------------------------------- diff --git a/commons-rng-examples/pom.xml b/commons-rng-examples/pom.xml index 233d577..47936ff 100644 --- a/commons-rng-examples/pom.xml +++ b/commons-rng-examples/pom.xml @@ -24,7 +24,12 @@ <properties> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> - </properties> + + <!-- This value must reflect the current name of the base package. --> + <commons.osgi.symbolicName>org.apache.commons.rng.examples</commons.osgi.symbolicName> + <!-- OSGi --> + <commons.osgi.export>org.apache.commons.rng.examples</commons.osgi.export> + </properties> <dependencies> <dependency> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/0d3069a3/commons-rng-jmh/pom.xml ---------------------------------------------------------------------- diff --git a/commons-rng-jmh/pom.xml b/commons-rng-jmh/pom.xml index 037d62b..346d094 100644 --- a/commons-rng-jmh/pom.xml +++ b/commons-rng-jmh/pom.xml @@ -41,6 +41,11 @@ </dependencies> <properties> + <!-- This value must reflect the current name of the base package. --> + <commons.osgi.symbolicName>org.apache.commons.rng.jmh</commons.osgi.symbolicName> + <!-- OSGi --> + <commons.osgi.export>org.apache.commons.rng.jmh</commons.osgi.export> + <!-- JMH Benchmark related properties, version, target compiler and name of the benchmarking uber jar. --> <jmh.version>1.13</jmh.version> <uberjar.name>benchmarks</uberjar.name> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/0d3069a3/commons-rng-simple/pom.xml ---------------------------------------------------------------------- diff --git a/commons-rng-simple/pom.xml b/commons-rng-simple/pom.xml index a029834..3d53739 100644 --- a/commons-rng-simple/pom.xml +++ b/commons-rng-simple/pom.xml @@ -20,6 +20,14 @@ <description>The Apache Commons RNG Simple module provides a factory class to easily instantiate a random numbers generator implementation.</description> + <properties> + <!-- This value must reflect the current name of the base package. --> + <commons.osgi.symbolicName>org.apache.commons.rng.simple</commons.osgi.symbolicName> + <!-- OSGi --> + <commons.osgi.export>org.apache.commons.rng.simple</commons.osgi.export> + <commons.osgi.private>org.apache.commons.rng.simple.internal</commons.osgi.private> + </properties> + <dependencies> <dependency> <groupId>org.apache.commons</groupId>
