green-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.tmtron</groupId>
<artifactId>green-annotations</artifactId>
<version>1.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright © 2016 Martin Trummer (martin.trummer@tmtron.com)
~
~ 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.tmtron</groupId>
<artifactId>green-annotations-parent</artifactId>
<version>1.0.2</version>
</parent>
<artifactId>green-annotations</artifactId>
<name>GreenAnnotations Plugin</name>
<description>The GreenAnnotations Plugin to add GreenRobot support to AndroidAnnotations</description>
<!-- must explicitly be set so that the site-plugin will use the correct -->
<url>${github.url}</url>
<properties>
<main.basedir>${project.parent.basedir}</main.basedir>
</properties>
<scm>
<connection>${github.connection}</connection>
<developerConnection>${github.developerConnection}</developerConnection>
<url>https://github.com/tmtron/${github.project.name}/tree/develop/${project.artifactId}</url>
</scm>
<dependencies>
<dependency>
<groupId>com.tmtron</groupId>
<artifactId>green-annotations-api</artifactId>
</dependency>
<dependency>
<groupId>org.androidannotations</groupId>
<artifactId>androidannotations</artifactId>
</dependency>
<dependency>
<groupId>org.androidannotations</groupId>
<artifactId>androidannotations-testutils</artifactId>
</dependency>
<dependency>
<groupId>org.greenrobot</groupId>
<artifactId>eventbus</artifactId>
</dependency>
<dependency>
<groupId>com.helger</groupId>
<artifactId>jcodemodel</artifactId>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.3.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!--
disable annotation processing
http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javac.html
-->
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>