Allow imports for javadoc.
1 file changed
tree: df2d19d662200cd4c47b4861e8287f9ab3dc6ed0
  1. generator/
  2. integration/
  3. src-subject/
  4. .gitignore
  5. .travis.yml
  6. checkstyle.xml
  7. CONTRIBUTING.md
  8. LICENSE.txt
  9. pom.xml
  10. README.md
README.md

AutoFactory

A source code generator for JSR-330-compatible factories

For more information please see the website.

Download

In order to activate code generation you will need to include autofactory-${autofactory.version}.jar in your build at compile time.

In a Maven project, one would include the autofactory-generator artifact as an “optional” dependency:

<dependencies>
  <dependency>
    <groupId>com.google.autofactory</groupId>
    <artifactId>autofactory-generator</artifactId>
    <version>${autofactory.version}</version>
    <optional>true</optional>
  </dependency>
</dependencies>

You can also find downloadable .jars on the GitHub download page.

License

Copyright 2013 Google, Inc.

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.