You can download dagger-compiler-1.2.2.jar in this page.
Apache License
dagger-compiler-1.2.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.squareup.dagger/dagger-compiler/pom.properties META-INF/maven/com.squareup.dagger/dagger-compiler/pom.xml META-INF/services/javax.annotation.processing.Processor dagger.internal.codegen.AdapterJavadocs.class dagger.internal.codegen.GeneratorKeys.class dagger.internal.codegen.GraphAnalysisErrorHandler.class dagger.internal.codegen.GraphAnalysisInjectBinding.class dagger.internal.codegen.GraphAnalysisLoader.class dagger.internal.codegen.GraphAnalysisProcessor.class dagger.internal.codegen.GraphAnalysisStaticInjection.class dagger.internal.codegen.GraphVisualizer.class dagger.internal.codegen.GraphVizWriter.class dagger.internal.codegen.InjectAdapterProcessor.class dagger.internal.codegen.ModuleAdapterProcessor.class dagger.internal.codegen.Util.class dagger.internal.codegen.ValidationProcessor.class
dagger-compiler-1.2.2.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2012 Square, Inc. Copyright (C) 2012 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. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.squareup.dagger</groupId> <artifactId>dagger-parent</artifactId> <version>1.2.2</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>dagger-compiler</artifactId> <name>Dagger Compiler</name> <description> Tools to generate Dagger injection and module adapters from annotated code and validate them. </description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>dagger</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>javawriter</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>dagger</artifactId> <version>${project.version}</version> <scope>test</scope> <classifier>tests</classifier> </dependency> <dependency> <groupId>com.google.testing.compile</groupId> <artifactId>compile-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.truth0</groupId> <artifactId>truth</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <goals><goal>compile</goal></goals> <configuration> <compilerArgument>-proc:none</compilerArgument> </configuration> </execution> <execution> <id>default-test-compile</id> <goals><goal>testCompile</goal></goals> <configuration> <annotationProcessors> <annotationProcessor>dagger.internal.codegen.ValidationProcessor</annotationProcessor> <annotationProcessor>dagger.internal.codegen.InjectAdapterProcessor</annotationProcessor> <annotationProcessor>dagger.internal.codegen.ModuleAdapterProcessor</annotationProcessor> <annotationProcessor>dagger.internal.codegen.GraphAnalysisProcessor</annotationProcessor> </annotationProcessors> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <addTestClassPath>true</addTestClassPath> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <postBuildHookScript>verify</postBuildHookScript> <filterProperties> <dagger.version>${project.version}</dagger.version> <dagger.groupId>${project.groupId}</dagger.groupId> </filterProperties> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.squareup.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>1.2.2</version> </dependency>
If you think the following dagger-compiler-1.2.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download dagger-compiler-1.2.2.jar file