rcache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.rcache</groupId>
<artifactId>rcache</artifactId>
<version>1.0.1</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>net.sourceforge.rcache</groupId>
<artifactId>rcache</artifactId>
<packaging>jar</packaging>
<name>RCache</name>
<version>1.0.1</version>
<description>Java Reference based simple cache implementations.</description>
<url>http://rcache.sourceforge.net</url>
<prerequisites>
<maven>2.0.9</maven>
</prerequisites>
<issueManagement>
<system>SourceForge Bug Tracking System</system>
<url>http://sourceforge.net/tracker/?group_id=192754</url>
</issueManagement>
<ciManagement/>
<inceptionYear>2007</inceptionYear>
<mailingLists>
<mailingList>
<name>rcache-announces</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/rcache-announces</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/rcache-announces</unsubscribe>
<post>rcache-announces@lists.sourceforge.net</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=rcache-announces</archive>
</mailingList>
<mailingList>
<name>rcache-devel</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/rcache-devel</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/rcache-devel</unsubscribe>
<post>rcache-devel@lists.sourceforge.net</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=rcache-devel</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>Nodens2k</id>
<name>Rodrigo Ruiz</name>
<email />
<roles>
<role>Analyst</role>
<role>Designer</role>
<role>Programmer</role>
</roles>
<timezone />
</developer>
</developers>
<contributors />
<licenses>
<license>
<name>GNU Lesser General Public License, version 2.1</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://rcache.svn.sourceforge.net/svnroot/rcache/</connection>
<developerConnection>scm:svn:https://rcache.svn.sourceforge.net/svnroot/rcache/</developerConnection>
<url>http://rcache.svn.sourceforge.net/viewvc/rcache/</url>
</scm>
<organization>
<name>Rodrigo Ruiz</name>
<url>http://rcache.sourceforge.net</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>false</optimize>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<encoding>ASCII</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>${basedir}/src/main/assembly/bundle-bin.xml</descriptor>
<descriptor>${basedir}/src/main/assembly/bundle-src.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<classifier>api</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<targetJdk>1.5</targetJdk>
<configLocation>${basedir}/checkstyle.xml</configLocation>
<enableRulesSummary>false</enableRulesSummary>
</configuration>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.5</targetJdk>
<rulesets>
<ruleset>/rulesets/basic.xml</ruleset>
<ruleset>/rulesets/imports.xml</ruleset>
<ruleset>/rulesets/unusedcode.xml</ruleset>
<ruleset>/rulesets/finalizers.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<threshold>Low</threshold>
<effort>Max</effort>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<check>
<branchRate>75</branchRate>
<lineRate>75</lineRate>
<haltOnFailure>false</haltOnFailure>
<totalBranchRate>75</totalBranchRate>
<totalLineRate>75</totalLineRate>
<packageLineRate>75</packageLineRate>
<packageBranchRate>75</packageBranchRate>
</check>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<downloadUrl>http://rcache.sourceforge.net/maven2</downloadUrl>
<repository>
<id>rcache</id>
<name>Project Repository</name>
<url>scp://shell.sourceforge.net/home/groups/r/rc/rcache/htdocs/maven2</url>
</repository>
<site>
<id>rcache</id>
<url>scp://shell.sourceforge.net/home/groups/r/rc/rcache/htdocs</url>
</site>
</distributionManagement>
</project>