reflexive
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.reflexiveframework</groupId>
<artifactId>reflexive</artifactId>
<version>1.0</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.reflexiveframework</groupId>
<artifactId>reflexive</artifactId>
<version>1.0</version>
<name>Reflexive Framework</name>
<url>http://reflexive.sourceforge.net</url>
<packaging>jar</packaging>
<description>
Reflexive provides a clean way to handle string literals, by
dynamicaly resolving properties.
</description>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-full</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<issueManagement>
<system>JIRA</system>
<url>http://208.109.90.19:8081/</url>
</issueManagement>
<ciManagement>
<system>BAMBOO</system>
<url>http://208.109.90.19:8085/</url>
<notifiers>
<notifier>
<type>mail</type>
<address>wheazel [AT] users.sourceforge.net</address>
</notifier>
</notifiers>
</ciManagement>
<developers>
<developer>
<id>wheazel</id>
<name>Andries Inze</name>
<email>wheazel [AT] users.sourceforge.net</email>
<roles>
<role>Project Leader</role>
</roles>
</developer>
</developers>
<scm>
<connection>
scm:svn:https://reflexive.svn.sourceforge.net/svnroot/reflexive/trunk
</connection>
<developerConnection>
scm:svn:https://reflexive.svn.sourceforge.net/svnroot/reflexive/trunk
</developerConnection>
<url>scm:svn:https://reflexive.svn.sourceforge.net/svnroot/reflexive/trunk</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.3</source>
<target>1.3</target>
<debug>true</debug>
<optimize>false</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<check>
<haltOnFailure>false</haltOnFailure>
</check>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
<tag>todo</tag>
<tag>TODO</tag>
<tag>fixme</tag>
<tag>FIXME</tag>
</tags>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>
checkstyle-jjguidelines.xml
</configLocation>
</configuration>
</plugin>
-->
<!-- Maven 2 PMD Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.0</version>
<configuration>
<targetJdk>1.3</targetJdk>
</configuration>
</plugin>
</plugins>
</reporting>
</project>