commit | 0d9fdb363bc307c6fcd6fd95e9512413d57e8fdf | [log] [tgz] |
---|---|---|
author | bcorso <bcorso@google.com> | Thu Oct 03 13:29:08 2019 -0700 |
committer | Chris Povirk <beigetangerine@gmail.com> | Fri Oct 04 10:22:16 2019 -0400 |
tree | c8e293a8a81fd539e3b7b5c4a04e12abb6311499 | |
parent | 6364fefc750a9fdb8f547d7597dc25207e6c541a [diff] |
Add blaze rule to validate and generate files for a maven artifact. This CL adds a skylark macro, `gen_maven_artifact`, that generates all of the maven artifact files: * pom.xml * jar file * src jar file * javadoc jar file In addition, the macro validates that the user has specified all of the target's required dependencies. A dependency is "required" if it is not included in any of the maven dependencies of the target. RELNOTES=N/A ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=272729031
A fast dependency injector for Java and Android.
Dagger is a compile-time framework for dependency injection. It uses no reflection or runtime bytecode generation, does all its analysis at compile-time, and generates plain Java source code.
Dagger is actively maintained by the same team that works on Guava. Snapshot releases are auto-deployed to Sonatype's central Maven repository on every clean build with the version HEAD-SNAPSHOT
. The current version builds upon previous work done at Square.
You can find the dagger documentation here which has extended usage instructions and other useful information. More detailed information can be found in the API documentation.
You can also learn more from the original proposal, this talk by Greg Kick, and on the dagger-discuss@googlegroups.com mailing list.
If you build with bazel
, follow the bazel
documentation for referencing external projects to include Dagger in your build.
Given the following WORKSPACE
definition, you can reference dagger via @com_google_dagger//:dagger_with_compiler
in your deps.
http_archive( name = "com_google_dagger", urls = ["https://github.com/google/dagger/archive/dagger-<version>.zip"], )
You will need to include the dagger-2.x.jar
in your application's runtime. In order to activate code generation and generate implementations to manage your graph you will need to include dagger-compiler-2.x.jar
in your build at compile time.
In a Maven project, include the dagger
artifact in the dependencies section of your pom.xml
and the dagger-compiler
artifact as an annotationProcessorPaths
value of the maven-compiler-plugin
:
<dependencies> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger</artifactId> <version>2.x</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <annotationProcessorPaths> <path> <groupId>com.google.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>2.x</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build>
If you are using a version of the maven-compiler-plugin
lower than 3.5
, add the dagger-compiler
artifact with the provided
scope:
<dependencies> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger</artifactId> <version>2.x</version> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>2.x</version> <scope>provided</scope> </dependency> </dependencies>
If you use the beta dagger-producers
extension (which supplies parallelizable execution graphs), then add this to your maven configuration:
<dependencies> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger-producers</artifactId> <version>2.x</version> </dependency> </dependencies>
// Add Dagger dependencies dependencies { api 'com.google.dagger:dagger:2.x' annotationProcessor 'com.google.dagger:dagger-compiler:2.x' }
If you're using classes in dagger.android
you'll also want to include:
api 'com.google.dagger:dagger-android:2.x' api 'com.google.dagger:dagger-android-support:2.x' // if you use the support libraries annotationProcessor 'com.google.dagger:dagger-android-processor:2.x'
Notes:
implementation
instead of api
for better compilation performance.kapt
in place of annotationProcessor
.If you're using the Android Databinding library, you may want to increase the number of errors that javac
will print. When Dagger prints an error, databinding compilation will halt and sometimes print more than 100 errors, which is the default amount for javac
. For more information, see Issue 306.
gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xmaxerrs" << "500" // or whatever number you want } }
If you do not use maven, gradle, ivy, or other build systems that consume maven-style binary artifacts, they can be downloaded directly via the Maven Central Repository.
Developer snapshots are available from Sonatype's snapshot repository, and are built on a clean build of the GitHub project's master branch.
Copyright 2012 The Dagger Authors 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.