You can download de.flapdoodle.embed.memcached-1.06.2.jar in this page.
The Apache Software License, Version 2.0
de.flapdoodle.embed.memcached-1.06.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/de.flapdoodle.embed/de.flapdoodle.embed.memcached/pom.properties META-INF/maven/de.flapdoodle.embed/de.flapdoodle.embed.memcached/pom.xml de.flapdoodle.embed.memcached.Command.class de.flapdoodle.embed.memcached.MemcachedExecutable.class de.flapdoodle.embed.memcached.MemcachedProcess.class de.flapdoodle.embed.memcached.MemcachedStarter.class de.flapdoodle.embed.memcached.PackagePaths.class de.flapdoodle.embed.memcached.config.ArtifactStoreBuilder.class de.flapdoodle.embed.memcached.config.ArtifactStores.class de.flapdoodle.embed.memcached.config.DownloadConfigBuilder.class de.flapdoodle.embed.memcached.config.MemcachedConfig.class de.flapdoodle.embed.memcached.config.MemcachedLibraryStore.class de.flapdoodle.embed.memcached.config.MemcachedProcessOutputConfig.class de.flapdoodle.embed.memcached.config.RuntimeConfigBuilder.class de.flapdoodle.embed.memcached.config.SupportConfig.class de.flapdoodle.embed.memcached.distribution.Version.class de.flapdoodle.embed.memcached.runtime.Memcached.class de.flapdoodle.embed.memcached.tests.MemcachedForTestsFactory.class
de.flapdoodle.embed.memcached-1.06.2.pom file content.
<?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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.memcached</artifactId> <name>Flapdoodle Embedded Memcache</name> <version>1.06.2</version> <description>A embedded memcache ...</description> <url>http://github.com/flapdoodle-oss/de.flapdoodle.embed.memcached.git</url> <licenses> <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:git:git@github.com:flapdoodle-oss/de.flapdoodle.embed.memcached.git</connection> <developerConnection>scm:git:git@github.com:flapdoodle-oss/de.flapdoodle.embed.memcached.git</developerConnection> <url>git@github.com:flapdoodle-oss/de.flapdoodle.embed.memcached.git</url> </scm> <!-- https://docs.sonatype.org/display/Repository/Central+Sync+Requirements https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <excludes> <exclude>**/live/**</exclude> <exclude>**/examples/**</exclude> </excludes> <runOrder>alphabetical</runOrder> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <!-- <basedir>${basedir}</basedir> --> <header>${basedir}/src/etc/header.txt</header> <!-- <validHeaders> <validHeader>/otherSupportedHeader.txt</validHeader> <validHeader>http://www.company.com/yetAnotherSupportedHeader.txt</validHeader> </validHeaders> --> <quiet>false</quiet> <failIfMissing>true</failIfMissing> <strictCheck>true</strictCheck> <aggregate>false</aggregate> <includes> <include>src/**</include> <include>**/test/**</include> </includes> <!-- <excludes> <exclude>target/**</exclude> <exclude>.clover/**</exclude> </excludes> <useDefaultExcludes>true</useDefaultExcludes> --> <!-- <mapping> <jwc>XML_STYLE</jwc> <application>XML_STYLE</application> <myFileExtension>JAVADOC_STYLE</myFileExtension> </mapping> <useDefaultMapping>true</useDefaultMapping> --> <properties> <lic.year>2011</lic.year> <lic.email>michael@mosmann.de</lic.email> <lic.username>Michael Mosmann</lic.username> <lic.email2>m.joehren@googlemail.com</lic.email2> <lic.username2>Martin J?hren</lic.username2> <lic.developers>konstantin-ba@github, Archimedes Trajano (trajano@github), Christian Bayer (chrbayer84@googlemail.com)</lic.developers> </properties> <encoding>UTF-8</encoding> <!-- <headerDefinitions> <headerDefinition>def1.xml</headerDefinition> <headerDefinition>def2.xml</headerDefinition> </headerDefinitions> --> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> <configuration> <configLocation>config/checkstyle.xml</configLocation> <excludes> ${basedir}/src/test/**/* </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <classpathScope>test</classpathScope> <mainClass>de.flapdoodle.embed.memcached.buildsupport.ExtractMarkdownFromCode</mainClass> <arguments> <argument>${basedir}/src/test/java/de/flapdoodle/embed/memcached/examples/TestExampleReadMeCode.java</argument> <argument>${project.build.directory}/usage-reademe.md</argument> </arguments> </configuration> </execution> </executions> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <executions> <execution> <id>deploy-to-sonatype</id> <phase>deploy</phase> <goals> <goal>deploy</goal> <goal>close</goal> <goal>release</goal> </goals> </execution> </executions> <configuration> <serverId>sonatype.nexus</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <stagingRepositoryId>de.flapdoodle</stagingRepositoryId> <deployUrl>https://oss.sonatype.org/service/local/staging/deploy/maven2</deployUrl> <! - - https://oss.sonatype.org/service/local/staging/deploy/maven2/de/flapdoodle/embed/de.flapdoodle.embed.memcache/1.33/de.flapdoodle.embed.memcache-1.33-sources.jar.asc - - > <description>${project.version}</description> </configuration> </plugin> --> <!-- skip this --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Djava.library.path=target/lib/</argLine> </configuration> </plugin> --> <!-- download and unpack the Sigar distribution as part of the 'package' phase such that we can map into the assembly --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack.sigar</id> <phase>compile</phase> <goals> <goal>unpack</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/sigar</outputDirectory> <artifactItems> <artifactItem> <groupId>org.hyperic</groupId> <artifactId>sigar-dist</artifactId> <version>1.6.5.132-5</version> <type>zip</type> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> --> <!-- Get rid of the version "hyperic-sigar-x.y.z" directory by flat-copying libraries. --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy.sigar.lib</id> <phase>compile</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <mkdir dir="target/lib" /> <move todir="target/lib" flatten="true"> <fileset dir="target/sigar"> <include name="**/lib/*.*" /> </fileset> </move> </tasks> </configuration> </execution> </executions> </plugin> --> <!-- skip this - end --> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>skip-test-in-release</id> <activation> <property> <name>skipTests</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <excludes> <exclude>**/**</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.process</artifactId> <version>1.41.0</version> </dependency> <dependency> <groupId>net.spy</groupId> <artifactId>spymemcached</artifactId> <version>2.10.0</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>6.1.25</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.memcached</artifactId> <version>1.06.2</version> </dependency>
If you think the following de.flapdoodle.embed.memcached-1.06.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download de.flapdoodle.embed.memcached-1.06.2.jar file