reflection-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>xyz.luan</groupId>
<artifactId>reflection-utils</artifactId>
<version>0.8.0</version>
</dependency><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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>xyz.luan</groupId> <artifactId>parent-pom</artifactId> <version>1.0.0</version> </parent> <artifactId>reflection-utils</artifactId> <version>0.8.0</version> <packaging>jar</packaging> <name>reflection-utils</name> <url>https://github.com/luanpotter/reflection-utils</url> <description>Reflection Utils adds a few but essential missing methods in Java default Reflection API.</description> <scm> <url>https://github.com/luanpotter/reflection-utils</url> <connection>scm:git:git://github.com/luanpotter/reflection-utils.git</connection> <developerConnection>scm:git:git@github.com:luanpotter/reflection-utils.git</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>8</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.fasterxml</groupId> <artifactId>classmate</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> </project>