commit | 7f98b5932ee20bde370206f3959555ef2d798a4e | [log] [tgz] |
---|---|---|
author | Jake Wharton <jw@squareup.com> | Wed Nov 07 13:50:17 2012 -0800 |
committer | Jake Wharton <jw@squareup.com> | Wed Nov 07 13:50:17 2012 -0800 |
tree | a0512402e426226ba97e81023c18a0a3eb642a3d | |
parent | a47f5bbb67611cb872ae6a2cf3ccb67dd4706c07 [diff] |
Correct commit message for website deploy.
A fast dependency injector for Android and Java.
For more information please see the website.
You will need to include the dagger-${dagger.version}.jar
in your application's runtime. In order to activate code generation you will need to include dagger-compiler-${dagger.version}.jar
in your build at compile time.
In a Maven project, one would include the runtime in the dependencies section of your pom.xml
(replacing ${dagger.version}
with the appropriate current release), and the dagger-compiler
artifact as a dependency of the compiler plugin:
<dependencies> <dependency> <groupId>com.squareup</groupId> <artifactId>dagger</artifactId> <version>${dagger.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <dependencies> <dependency> <groupId>com.squareup</groupId> <artifactId>dagger-compiler</artifactId> <version>${dagger.version}</version> </dependency> </dependencies> </plugin> </plugins> </build>
You can also find downloadable .jars on the GitHub download page.
Copyright 2012 Square, 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.