AndroidAnnotations Annotation Processor.
The Annotation Processor jar that generates code.
Here is the list of declaration for androidannotations. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.googlecode.androidannotations</groupId> <artifactId>androidannotations</artifactId> <version>2.7.1</version> </dependency>
If you think this Maven repository POM file listing for androidannotations is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the androidannotations-2.7.1.jar
The following packages are defined in the androidannotations-2.7.1.jar
com.googlecode.androidannotations com.googlecode.androidannotations.annotationprocessor com.googlecode.androidannotations.generation com.googlecode.androidannotations.helper com.googlecode.androidannotations.model com.googlecode.androidannotations.processing com.googlecode.androidannotations.processing.rest com.googlecode.androidannotations.rclass com.googlecode.androidannotations.validation com.googlecode.androidannotations.validation.rest
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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.googlecode.androidannotations</groupId> <artifactId>androidannotations-parent</artifactId> <version>2.7.1</version> </parent> <artifactId>androidannotations</artifactId> <name>AndroidAnnotations Annotation Processor</name> <description>The Annotation Processor jar that generates code</description> <dependencies> <dependency> <groupId>com.googlecode.androidannotations</groupId> <artifactId>androidannotations-api</artifactId> </dependency> <dependency> <groupId>com.sun.codemodel</groupId> <artifactId>codemodel</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>1.6_r2</version> <scope>test</scope> </dependency> <dependency> <!-- spring-android-rest-template is required to use the Rest API --> <groupId>org.springframework.android</groupId> <artifactId>spring-android-rest-template</artifactId> <version>1.0.0.RELEASE</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>rebel.xml</exclude> </excludes> </resource> </resources> </build> </project>