ncache-professional-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alachisoft.ncache</groupId> <artifactId>ncache-professional-client</artifactId> <version>5.3.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.alachisoft.ncache</groupId> <artifactId>ncache-professional-client</artifactId> <version>5.3.0</version> <parent> <groupId>com.alachisoft</groupId> <artifactId>nc-pro-root</artifactId> <version>5.3.0</version> <relativePath>../pom.xml</relativePath> </parent> <name>NCache Professional Client</name> <url>https://www.alachisoft.com/NCache</url> <description>NCache Professional client for java.</description> <licenses> <license> <name>The Alachisoft Software License</name> <url>https://www.alachisoft.com/licenses/license.txt</url> </license> </licenses> <organization> <name>Alachisoft</name> <url>https://www.alachisoft.com/</url> </organization> <developers> <developer> <name>Waleed Anjum</name> <email>waled_anjum@diyatech.com</email> <organization>https://github.com/Alachisoft/NCache.git</organization> <organizationUrl>https://github.com/Alachisoft/NCache</organizationUrl> </developer> </developers> <properties> <main.basedir>${project.basedir}</main.basedir> <maven.compiler.source>1.9</maven.compiler.source> <maven.compiler.target>1.9</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>com.alachisoft</groupId> <artifactId>nc-pro-management</artifactId> <version>5.3.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory> ${project.build.directory}/libs </outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>