reflection-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.code.reflection-utils</groupId>
<artifactId>reflection-utils</artifactId>
<version>0.0.4</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.google.code.reflection-utils</groupId>
<artifactId>reflection-utils</artifactId>
<version>0.0.4</version>
<packaging>pom</packaging>
<name>Reflection utils</name>
<description>A utility library to handle Java reflection with ease</description>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>com.google.code.sortpom</groupId>
<artifactId>maven-sortpom-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<predefinedSortOrder>custom_1</predefinedSortOrder>
<lineSeparator>\n</lineSeparator>
<encoding>${project.build.sourceEncoding}</encoding>
<sortProperties>true</sortProperties>
<keepBlankLines>true</keepBlankLines>
<sortDependencies>scope</sortDependencies>
<createBackupFile>false</createBackupFile>
</configuration>
<executions>
<execution>
<goals>
<goal>sort</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Misc -->
<url>http://code.google.com/p/reflection-utils/</url>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>New BSD License</name>
<url>http://en.wikipedia.org/wiki/BSD_licenses</url>
<distribution>repo</distribution>
<comments>Whatever</comments>
</license>
</licenses>
<developers>
<developer>
<id>bjorn.ekryd</id>
<name>Björn Ekryd</name>
<email>bjorn.ekryd(at)gmail(dot)com</email>
<url>http://www.linkedin.com/in/bjornekryd</url>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:https://code.google.com/p/reflection-utils/</connection>
<developerConnection>scm:git:https://code.google.com/p/reflection-utils/</developerConnection>
<url>http://code.google.com/p/reflection-utils/source/browse/</url>
</scm>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/reflection-utils/issues/list</url>
</issueManagement>
<distributionManagement>
<relocation>
<groupId>com.github.ekryd.reflection-utils</groupId>
</relocation>
</distributionManagement>
<!-- Profiles -->
<profiles>
<profile>
<id>distribution</id>
<activation>
<property>
<name>!dev</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>