filter-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.aflak.libraries</groupId> <artifactId>filter-processor</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>me.aflak.libraries</groupId> <artifactId>filter-processor</artifactId> <version>1.2</version> <name>Filter</name> <description>Android library to filter any object in a list using a simple annotation.</description> <url>https://github.com/omaflak/Filter-Library</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>omaflak</id> <name>Omar Aflak</name> <email>aflakomar@gmail.com</email> </developer> </developers> <scm> <connection>https://github.com/omaflak/Filter-Library.git</connection> <developerConnection>https://github.com/omaflak/Filter-Library.git</developerConnection> <url>https://github.com/omaflak/Filter-Library</url> </scm> <dependencies> <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> <version>1.9.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>me.aflak.libraries</groupId> <artifactId>filter-annotation</artifactId> <version>1.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>1.0-rc3</version> <scope>runtime</scope> </dependency> </dependencies> </project>