├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .checkstyle 2 | .classpath 3 | .pmd 4 | .project 5 | .ruleset 6 | .settings/ 7 | target/ 8 | *.iml 9 | *.iws 10 | *.ipr 11 | velocity.log 12 | maven-eclipse.xml 13 | .externalToolBuilders 14 | .idea/ 15 | *~ 16 | dependency-reduced-pom.xml 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apache Felix main repository (obsolete) 2 | 3 | This repository used to contain the Apache Felix git mirror. With the migration to Git 4 | the content is out of date and should not be relied upon. 5 | 6 | This old repository is still kept as an index to the current git repositories. The last (now stale) state before the migration can be found in the archived branch. 7 | 8 | Note that all git repositories have been migrated with history, so there should be no reason to clone this repository. 9 | 10 | Please do not open pull requests, they will be ignored. 11 | 12 | 13 | For a list of Apache Felix subprojecs and their code repositories please have a look at: 14 | 15 | [Apache Felix Subprojects](https://felix.apache.org/documentation/subprojects.html) 16 | 17 | 18 | For more information about the Apache Felix project see the [project information](https://felix.apache.org). 19 | --------------------------------------------------------------------------------