ncache-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alachisoft.ncache</groupId> <artifactId>ncache-runtime</artifactId> <version>5.3.3</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-runtime</artifactId> <version>5.3.3</version> <parent> <groupId>com.alachisoft</groupId> <artifactId>nc-root</artifactId> <version>5.3.3</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <maven.compiler.source>1.9</maven.compiler.source> <maven.compiler.target>1.9</maven.compiler.target> </properties> <name>NCache Runtime</name> <url>www.alachisoft.com</url> <description>NCache Enterprise runtime for server side features.</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>Alachisoft</organization> <organizationUrl>www.alachisoft.com</organizationUrl> </developer> </developers> <repositories> <repository> <id>org.source.repo</id> <url>https://repo.typesafe.com/typesafe/maven-releases/</url> </repository> <repository> <id>clojars</id> <name>Clojars</name> <url>https://repo.clojars.org/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>protoc-plugin</id> <url>https://repo.typesafe.com/typesafe/maven-releases/</url> </pluginRepository> </pluginRepositories> <dependencies> <!-- https://mvnrepository.com/artifact/org.hyperic/sigar --> <dependency> <groupId>org.hyperic</groupId> <artifactId>sigar</artifactId> <version>1.6.5.132</version> </dependency> <!-- https://mvnrepository.com/artifact/oracle/ojdbc6 --> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.4</version> </dependency> <dependency> <groupId>javax.cache</groupId> <artifactId>cache-api</artifactId> <version>1.1.1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.guava/guava-gwt --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-gwt</artifactId> <version>31.1-jre</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.inject/guice --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>5.1.0</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.inject.extensions/guice-multibindings --> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-multibindings</artifactId> <version>4.2.3</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.16.1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.16.1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version> 2.16.1</version> </dependency> <!-- https://mvnrepository.com/artifact/org.javassist/javassist --> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.29.2-GA</version> </dependency> <!-- https://mvnrepository.com/artifact/com.thoughtworks.paranamer/paranamer --> <dependency> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer</artifactId> <version>2.8</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>3.24.4</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources/</directory> </resource> </resources> </build> </project>