guice/README.md

35 lines
1.5 KiB
Markdown
Raw Normal View History

2021-06-03 19:53:05 +02:00
= Guice - simplified and reduced version
2016-11-23 14:16:44 +01:00
This is xbib Guice, a build of Google Guice with the following differences to the
2016-01-07 19:22:16 +01:00
original [Google Guice Core Library](https://github.com/google/guice):
- only external dependencies are
2016-01-07 19:24:00 +01:00
- javax.inject:javax.inject:1
2016-11-23 14:16:44 +01:00
- org.xbib:jsr-305:1.0.0
2021-06-03 19:53:05 +02:00
- com.google.guava:guava:30.1
2016-01-07 19:22:16 +01:00
- the extra AOP stuff was removed (aopalliance/cglib), no intercepting any more
- removed all logging, uses of java.util.logger.* stuff and logger default binding
2019-12-09 15:32:54 +01:00
- removed all java.io.Serializable dependent stuff. Note: everything which relies to be serializable was removed.
2016-01-07 19:22:16 +01:00
- reformatted source by IntelliJ and cleaned up source of @author and @since tags
2021-06-03 19:53:05 +02:00
- target of compilation is Java 11, no support for Java 6/7
2016-01-07 19:22:16 +01:00
- introduced Gradle as build system
2021-06-03 19:53:05 +02:00
- junit tests made compatible to junit 4
- assistedinject and multibindings extensions are included
2016-01-07 19:22:16 +01:00
All credits belong to the original authors, especially Bob Lee http://blog.crazybob.org/
2021-06-03 19:53:05 +02:00
== License
2016-01-07 19:22:16 +01:00
Licensed 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.