Skip to content

kevinpollet/ioc-container

Repository files navigation

What is it ?

This project is an implementation of the JSR 330 specification.

Actually there is no version deployed in a Maven respository. To use this project you have to download and build it from its sources with Maven. Run mvn clean install from the root directory. To use this project with Maven or Ivy, add the following lines with the correct version.

  • API
<dependency>
   <groupId>com.my.container</groupId>
   <artifactId>container-api</artifactId>
   <version>project-version</version>
</dependency>
  • Core
<dependency>
   <groupId>com.my.container</groupId>
   <artifactId>container-core</artifactId>
   <version>project-version</version>
</dependency>

Note : if you want an example, you can have a look at the container-sample project.

System Requirements

JDK 1.5 or above.

Licence

Copyright 2010 Kevin Pollet

  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.

About

A simple implementation of JSR 330 (at-inject)

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages