<?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</groupId>
    <artifactId>nc-common</artifactId>
    <version>5.3.3</version>
    <packaging>jar</packaging>
    <parent>
        <groupId>com.alachisoft</groupId>
        <artifactId>nc-root</artifactId>
        <version>5.3.3</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
	<name>NC-Common</name>
    <url>http://www.alachisoft.com/</url>
    <description>Internal package of Alachisoft.</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>

    <properties>
        <maven.compiler.source>1.9</maven.compiler.source>
        <maven.compiler.target>1.9</maven.compiler.target>
    </properties>
    <repositories>
        <repository>
            <id>org.source.repo</id>
            <url>https://repo.typesafe.com/typesafe/maven-releases/</url>
        </repository>
        <repository>
            <id>clojars</id>
            <url>https://clojars.org/repo/</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>protoc-plugin</id>
            <url>https://repo.typesafe.com/typesafe/maven-releases/</url>
        </pluginRepository>
    </pluginRepositories>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.google.protobuf</groupId>
                <artifactId>protobuf-java</artifactId>
                <version>3.24.4</version>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 -->
        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>sqljdbc4</artifactId>
            <version>4.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.7</version>
        </dependency>


        <dependency>
            <groupId>com.alachisoft</groupId>
            <artifactId>nc-jmxsnmp</artifactId>
            <version>5.3.3</version>
        </dependency>

        <dependency>
            <groupId>com.alachisoft</groupId>
            <artifactId>nc-serialization</artifactId>
            <version>5.3.3</version>
        </dependency>
        <dependency>
            <groupId>com.alachisoft.ncache</groupId>
            <artifactId>ncache-runtime</artifactId>
            <version>5.3.3</version>
            <scope>compile</scope>
        </dependency>
		<dependency>
            <groupId>com.google.protobuf</groupId>
            <artifactId>protobuf-java</artifactId>
            <version>3.24.4</version>
		</dependency>
        <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna-platform</artifactId>
            <version>5.13.0</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.33</version> <!-- Use the latest version available -->
        </dependency>
    </dependencies>

</project>