Search code examples
javaspringannotations

Where I can find @Inject jar


I'm following the MVC unit test instructions from this site, but I cannot find the jar for the @Inject annotation. Does anybody know where the jar is?


Solution

  • Via Maven:

    <dependency>
      <groupId>javax.inject</groupId>
      <artifactId>javax.inject</artifactId>
      <version>1</version>
    </dependency>
    

    Or from the Project Home Page: http://code.google.com/p/atinject/

    Also, this MvnRepository.com page provides the necessary configurations for other build tools like Ivy, Gradle etc.