diff options
| author | Andrew Donald Kennedy <grkvlt@apache.org> | 2011-10-31 17:20:53 +0000 |
|---|---|---|
| committer | Andrew Donald Kennedy <grkvlt@apache.org> | 2011-10-31 17:20:53 +0000 |
| commit | e51af3f317225439765141d1701c729deafdef16 (patch) | |
| tree | cba06a5debef5834ec6b3802df6f151ad951766f /java/broker | |
| parent | 7d103d11496928583df900fcd463c8aea86fc2af (diff) | |
| download | qpid-python-e51af3f317225439765141d1701c729deafdef16.tar.gz | |
QPID-3558: Add broker Maven and OSGi artifacts to build
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1195572 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker')
| -rw-r--r-- | java/broker/build.xml | 3 | ||||
| -rwxr-xr-x | java/broker/src/main/java/broker.bnd | 26 |
2 files changed, 28 insertions, 1 deletions
diff --git a/java/broker/build.xml b/java/broker/build.xml index e733474ef0..0731e08103 100644 --- a/java/broker/build.xml +++ b/java/broker/build.xml @@ -19,10 +19,10 @@ - --> <project name="AMQ Broker" default="build"> - <property name="module.depends" value="management/common common"/> <property name="module.test.depends" value="common/test" /> <property name="module.main" value="org.apache.qpid.server.Main"/> + <property name="module.genpom" value="true"/> <import file="../module.xml"/> @@ -84,4 +84,5 @@ <target name="release-bin" depends="release-bin-tasks"/> + <target name="bundle" depends="bundle-tasks"/> </project> diff --git a/java/broker/src/main/java/broker.bnd b/java/broker/src/main/java/broker.bnd new file mode 100755 index 0000000000..36c7d1a5b3 --- /dev/null +++ b/java/broker/src/main/java/broker.bnd @@ -0,0 +1,26 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +ver: 0.13.0 + +Bundle-SymbolicName: qpid-broker +Bundle-Version: ${ver} +Export-Package: *;version=${ver} +Bundle-RequiredExecutionEnvironment: J2SE-1.5 + |
