Pierre De Rop | 3a00a21 | 2015-03-01 09:27:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | * contributor license agreements. See the NOTICE file distributed with |
| 4 | * this work for additional information regarding copyright ownership. |
| 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | * (the "License"); you may not use this file except in compliance with |
| 7 | * the License. You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | Welcome to Apache Felix Dependency Manager |
| 19 | ========================================== |
| 20 | |
| 21 | Apache Felix Dependency Manager is a versatile java API, allowing to declaratively |
| 22 | register, acquire, and manage dynamic OSGi services. |
| 23 | |
| 24 | Building and testing Apache Felix Dependency Manager |
| 25 | ==================================================== |
| 26 | |
| 27 | ** Compilation Using gradle: |
| 28 | |
| 29 | - If necessary, configure your https proxy settings: |
| 30 | |
| 31 | export GRADLE_OPTS="-Dhttps.proxyHost=www.somehost.org -Dhttps.proxyPort=8080" |
| 32 | |
| 33 | - If you are building a released org.apache.felix.dependencymanager-r<n>-src.zip artifact, then |
| 34 | you also have to unfold the org.apache.felix.dependencymanager-r<n>-deps.zip on the same directory where you have unfolded the source archive. |
| 35 | (no need to do this if you have checked out from the felix-trunk). |
| 36 | |
| 37 | - Install java7. |
| 38 | |
| 39 | - Compile Dependendency Manager annotations bndtools plugin: |
| 40 | |
| 41 | $ ./gradlew org.apache.felix.dependencymanager.annotation:jar |
| 42 | |
| 43 | - Compile all other bundles: |
| 44 | |
| 45 | $ ./gradlew jar |
| 46 | |
| 47 | - run junit tests: |
| 48 | |
| 49 | $ ./gradlew test |
| 50 | |
| 51 | - run integration tests: |
| 52 | |
| 53 | $ ./gradlew check |
| 54 | |
| 55 | ** Compilation Using Eclipse: |
| 56 | |
| 57 | - Install either Eclipse Kepler SR2 or Eclipse Luna and configure two JREs for both java7 and java8: |
| 58 | |
| 59 | * go to Windows -> Preferences -> Java -> Installed JREs |
| 60 | * Then add two JREs: one for java7, and the other for java8. |
| 61 | * Declare the java7 JRE as the default one. |
| 62 | |
| 63 | Java8 is only used to build and run the org.apache.felix.dependencymanager.benchmark module, which is used to perform |
| 64 | DM performance tests within eclipse bndtools. |
| 65 | |
| 66 | - Install BndTools 2.4.1, and a subversion plugin for eclipse. |
| 67 | - Open BndTools perspective |
| 68 | - Import Dependency Manager into Eclipse, and compile everything |
| 69 | - if it's the first time you import the project into eclipse, it may happen that some modules that requires the |
| 70 | Dependency Manager Annotations bnd plugin don't compile: It's a know issue. To work around, restart eclipse and |
| 71 | rebuild every modules. |
| 72 | - Click on org.apache.felix.dependencymanager project and run it as "JUnit test". |
| 73 | - Click on org.apache.felix.dependencymanager.shell and run it as "JUnit test" |
| 74 | - Click on org.apache.felix.dependencymanager.itest and run it as "Bnd OSGi Test Launcer (Junit)". |
| 75 | - Click on org.apache.felix.dependencymanager.runtime.itest and run it as ""Bnd OSGi Test Launcer (Junit)". |
| 76 | |
| 77 | Getting Started |
| 78 | =============== |
| 79 | |
| 80 | To start using Apache Felix Dependency Manager, please go to our website and read the |
| 81 | getting started guide for users: |
| 82 | |
| 83 | http://felix.apache.org/documentation/subprojects/apache-felix-dependency-manager.html |
| 84 | |
| 85 | Many examples are also available from the dependency manager samples module. |
| 86 | See ./org.apache.felix.dependencymanager.samples/README.samples |
| 87 | |
| 88 | Many thanks for using Apache Felix Dependency Manager. |
| 89 | |
| 90 | The Felix Team |