ehcache-explicitlocking
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache-explicitlocking</artifactId> <version>0.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> <parent> <artifactId>ehcache-parent</artifactId> <groupId>net.sf.ehcache</groupId> <version>2.1</version> </parent> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache-explicitlocking</artifactId> <version>0.2</version> <name>ehcache-explicitlocking</name> <url>http://ehcache.org</url> <description>Ehcache module that allows explicit locking</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencies> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>ehcache-core</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.8</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <!--With slf4j, users choose a concrete logging implementation at deploy time--> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.5.8</version> <scope>test</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>process-classes</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> <configuration> <configLocation>${basedir}/checkstyle/checkstyle.xml</configLocation> <suppressionsLocation>${basedir}/checkstyle/suppressions.xml </suppressionsLocation> <headerLocation>${basedir}/checkstyle/ClassHeader.txt</headerLocation> <enableRSS>false</enableRSS> <linkXRef>true</linkXRef> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <failOnViolation>true</failOnViolation> <includeTestSourceDirectory>false</includeTestSourceDirectory> <enableRulesSummary>true</enableRulesSummary> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <inherited>true</inherited> <configuration> <skip>false</skip> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/*$*</exclude> <exclude>**/web/**/*</exclude> <exclude>**/Abstract*Test.java</exclude> <exclude>**/constructs/web/**</exclude> </excludes> <forkMode>pertest</forkMode> <childDelegation>false</childDelegation> <disableXmlReport>false</disableXmlReport> <printSummary>true</printSummary> <!--<reportFormat>plain</reportFormat>--> <redirectTestOutputToFile>true</redirectTestOutputToFile> <systemProperties> <property> <name>net.sf.ehcache.skipUpdateCheck</name> <value>true</value> </property> <property> <name>java.awt.headless</name> <value>true</value> </property> <property> <name> net.sf.ehcache.speedAdjustmentFactor </name> <value> ${net.sf.ehcache.speedAdjustmentFactor} </value> </property> </systemProperties> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <filters> <filter>src/assemble/filter.properties</filter> </filters> <descriptors> <descriptor>src/assemble/distribution.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> </build> <!-- Note: site URL repeated here to ensure correct deployment path --> <distributionManagement> <!-- The server id here defined must also appear in ~/.m2/settings.xml with username --> <repository> <id>sourceforge-releases</id> <name>Sourceforge Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sourceforge-snapshots</id> <name>Sourceforge Snapshot Repository</name> <url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</url> </snapshotRepository> </distributionManagement> </project>