2014-12-03 09:24:57 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-12-03 09:49:07 +00:00
|
|
|
<!--
|
|
|
|
|
~ Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
|
|
|
~
|
|
|
|
|
~ WSO2 Inc. licenses this file to you under the Apache License,
|
|
|
|
|
~ Version 2.0 (the "License"); you may not use this file except
|
|
|
|
|
~ in compliance with the License.
|
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
|
~
|
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
~
|
|
|
|
|
~ Unless required by applicable law or agreed to in writing,
|
|
|
|
|
~ software distributed under the License is distributed on an
|
|
|
|
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
~ KIND, either express or implied. See the License for the
|
|
|
|
|
~ specific language governing permissions and limitations
|
|
|
|
|
~ under the License.
|
|
|
|
|
-->
|
2014-12-08 09:38:31 +00:00
|
|
|
|
2015-12-22 02:58:33 +00:00
|
|
|
<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">
|
2016-03-27 10:34:15 +00:00
|
|
|
|
2014-12-03 09:24:57 +00:00
|
|
|
<parent>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2014-12-03 09:24:57 +00:00
|
|
|
<artifactId>device-mgt</artifactId>
|
2023-04-26 03:50:38 +00:00
|
|
|
<version>5.0.26-SNAPSHOT</version>
|
2014-12-03 09:24:57 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-05-11 07:59:16 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.device.mgt.core</artifactId>
|
2014-12-03 09:24:57 +00:00
|
|
|
<packaging>bundle</packaging>
|
|
|
|
|
<name>WSO2 Carbon - Device Management Core</name>
|
|
|
|
|
<description>WSO2 Carbon - Device Management Core</description>
|
|
|
|
|
<url>http://wso2.org</url>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
|
<artifactId>maven-scr-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2017-09-21 19:28:16 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>jacoco-initialize</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>jacoco-site</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>report</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
|
|
|
|
|
<outputDirectory>${basedir}/target/coverage-reports/site</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2014-12-03 09:24:57 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<instructions>
|
|
|
|
|
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
|
|
|
|
|
<Bundle-Name>${project.artifactId}</Bundle-Name>
|
2023-05-11 09:08:47 +00:00
|
|
|
<Bundle-Version>${io.entgra.device.mgt.core.version}</Bundle-Version>
|
2014-12-03 09:24:57 +00:00
|
|
|
<Bundle-Description>Device Management Core Bundle</Bundle-Description>
|
2023-05-11 07:59:16 +00:00
|
|
|
<Private-Package>io.entgra.device.mgt.core.device.mgt.core.internal</Private-Package>
|
2014-12-03 09:24:57 +00:00
|
|
|
<Import-Package>
|
2014-12-04 12:48:30 +00:00
|
|
|
org.apache.axis2.*;version="${axis2.osgi.version.range}",
|
2021-05-10 04:11:45 +00:00
|
|
|
org.osgi.framework.*;version="${imp.package.version.osgi.framework}",
|
|
|
|
|
org.osgi.service.*;version="${imp.package.version.osgi.service}",
|
2014-12-03 09:24:57 +00:00
|
|
|
org.apache.commons.logging,
|
2015-01-31 13:19:56 +00:00
|
|
|
javax.naming,
|
2016-09-14 11:53:09 +00:00
|
|
|
javax.xml.parsers;version="${javax.xml.parsers.import.pkg.version}";resolution:=optional,
|
2015-08-26 12:50:37 +00:00
|
|
|
javax.servlet.*,
|
2015-04-03 15:02:15 +00:00
|
|
|
org.xml.sax,
|
2015-02-19 11:54:50 +00:00
|
|
|
javax.sql.*,
|
2015-01-31 13:19:56 +00:00
|
|
|
org.wso2.carbon.context,
|
|
|
|
|
org.wso2.carbon.core,
|
|
|
|
|
org.wso2.carbon.utils.*,
|
2023-05-11 07:59:16 +00:00
|
|
|
io.entgra.device.mgt.core.device.mgt.common.*,
|
2015-01-31 13:19:56 +00:00
|
|
|
org.wso2.carbon.user.api,
|
|
|
|
|
org.wso2.carbon.user.core.*,
|
2015-02-19 11:54:50 +00:00
|
|
|
org.wso2.carbon.registry.core.service,
|
2015-08-26 12:50:37 +00:00
|
|
|
org.wso2.carbon.registry.core,
|
|
|
|
|
org.wso2.carbon.registry.core.exceptions,
|
|
|
|
|
org.wso2.carbon.registry.core.session,
|
|
|
|
|
org.wso2.carbon.registry.api,
|
2015-03-17 12:00:30 +00:00
|
|
|
org.w3c.dom,
|
2015-03-25 14:33:06 +00:00
|
|
|
org.wso2.carbon.identity.oauth.stub,
|
2015-03-26 18:41:21 +00:00
|
|
|
org.wso2.carbon.identity.oauth.stub.dto,
|
2015-05-17 12:26:44 +00:00
|
|
|
org.wso2.carbon.ndatasource.core,
|
2016-03-14 06:18:43 +00:00
|
|
|
org.wso2.carbon.ntask.core.*,
|
|
|
|
|
org.wso2.carbon.ntask.common,
|
2023-05-10 14:38:20 +00:00
|
|
|
io.entgra.device.mgt.core.task.mgt.common.*,
|
2017-06-05 04:42:22 +00:00
|
|
|
org.apache.commons.collections;version="${commons-collections.version.range}",
|
2016-03-28 17:35:47 +00:00
|
|
|
org.wso2.carbon.email.sender.*,
|
2016-05-12 19:04:38 +00:00
|
|
|
io.swagger.annotations.*;resolution:=optional,
|
2016-03-29 06:37:58 +00:00
|
|
|
org.wso2.carbon,
|
2017-01-24 14:02:59 +00:00
|
|
|
org.wso2.carbon.base,
|
2023-05-11 07:00:03 +00:00
|
|
|
org.scannotation.*,
|
2017-05-29 06:21:41 +00:00
|
|
|
org.wso2.carbon.event.processor.stub,
|
2023-05-11 07:00:03 +00:00
|
|
|
io.entgra.device.mgt.core.identity.jwt.client.extension.service,
|
2020-11-17 03:32:45 +00:00
|
|
|
org.apache.commons.codec.binary,
|
2023-05-11 07:00:03 +00:00
|
|
|
io.entgra.device.mgt.core.server.bootup.heartbeat.beacon,
|
2023-05-11 06:44:29 +00:00
|
|
|
io.entgra.device.mgt.core.device.mgt.extensions.logger.*,
|
2023-05-11 07:00:03 +00:00
|
|
|
io.entgra.device.mgt.core.notification.logger.*
|
2014-12-03 09:24:57 +00:00
|
|
|
</Import-Package>
|
|
|
|
|
<Export-Package>
|
2023-05-11 07:59:16 +00:00
|
|
|
!io.entgra.device.mgt.core.device.mgt.core.internal,
|
|
|
|
|
io.entgra.device.mgt.core.device.mgt.core.*
|
2014-12-03 09:24:57 +00:00
|
|
|
</Export-Package>
|
2016-07-03 09:33:47 +00:00
|
|
|
<Embed-Dependency>
|
2017-01-24 14:02:59 +00:00
|
|
|
scribe;scope=compile|runtime;inline=false,
|
2016-07-03 09:33:47 +00:00
|
|
|
</Embed-Dependency>
|
2016-05-18 18:50:45 +00:00
|
|
|
<DynamicImport-Package>*</DynamicImport-Package>
|
2014-12-03 09:24:57 +00:00
|
|
|
</instructions>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2015-01-06 14:14:01 +00:00
|
|
|
<plugin>
|
2014-12-08 11:54:29 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2014-12-12 14:25:41 +00:00
|
|
|
<configuration>
|
2015-07-24 13:52:14 +00:00
|
|
|
<systemPropertyVariables>
|
|
|
|
|
<log4j.configuration>file:src/test/resources/log4j.properties</log4j.configuration>
|
|
|
|
|
</systemPropertyVariables>
|
2014-12-12 14:25:41 +00:00
|
|
|
<suiteXmlFiles>
|
2017-10-17 04:52:03 +00:00
|
|
|
<file>src/test/resources/testng.xml</file>
|
2017-10-16 12:38:10 +00:00
|
|
|
<file>src/test/resources/mysql-testng.xml</file>
|
2017-10-17 05:16:04 +00:00
|
|
|
<file>src/test/resources/mssql-testng.xml</file>
|
|
|
|
|
<file>src/test/resources/oracle-testng.xml</file>
|
|
|
|
|
<file>src/test/resources/postgre-testng.xml</file>
|
2014-12-12 14:25:41 +00:00
|
|
|
</suiteXmlFiles>
|
|
|
|
|
</configuration>
|
2015-01-06 14:14:01 +00:00
|
|
|
</plugin>
|
2014-12-03 09:24:57 +00:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2014-12-04 04:30:37 +00:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
|
|
|
</dependency>
|
2015-03-24 12:58:56 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
|
|
|
|
</dependency>
|
2017-01-24 14:02:59 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.orbit.org.scannotation</groupId>
|
|
|
|
|
<artifactId>scannotation</artifactId>
|
|
|
|
|
</dependency>
|
2014-12-04 04:30:37 +00:00
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-11 07:59:16 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.device.mgt.common</artifactId>
|
2014-12-04 04:30:37 +00:00
|
|
|
</dependency>
|
2014-12-04 05:49:17 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
2014-12-04 06:08:19 +00:00
|
|
|
<artifactId>org.wso2.carbon.logging</artifactId>
|
2014-12-04 05:49:17 +00:00
|
|
|
</dependency>
|
2014-12-05 05:33:28 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.utils</artifactId>
|
|
|
|
|
</dependency>
|
2014-12-08 13:22:26 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.core</artifactId>
|
|
|
|
|
</dependency>
|
2015-03-26 18:41:21 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.ndatasource.core</artifactId>
|
2016-09-20 05:08:39 +00:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2015-03-26 18:41:21 +00:00
|
|
|
</dependency>
|
2014-12-12 11:52:16 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.h2database.wso2</groupId>
|
|
|
|
|
<artifactId>h2-database-engine</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-12-05 09:11:43 +00:00
|
|
|
<dependency>
|
2014-12-08 11:01:10 +00:00
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
|
<artifactId>testng</artifactId>
|
2014-12-05 09:11:43 +00:00
|
|
|
</dependency>
|
2017-09-27 08:29:16 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
|
<artifactId>powermock-module-testng</artifactId>
|
2017-09-29 06:22:44 +00:00
|
|
|
<scope>test</scope>
|
2017-09-27 08:29:16 +00:00
|
|
|
</dependency>
|
2014-12-23 09:33:40 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
2015-01-14 09:39:40 +00:00
|
|
|
<artifactId>org.wso2.carbon.user.core</artifactId>
|
2014-12-23 09:33:40 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
2015-01-14 09:39:40 +00:00
|
|
|
<artifactId>org.wso2.carbon.user.api</artifactId>
|
2014-12-23 09:33:40 +00:00
|
|
|
</dependency>
|
2015-01-31 13:19:56 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.registry.api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.registry.core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat.wso2</groupId>
|
|
|
|
|
<artifactId>jdbc-pool</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.base</artifactId>
|
|
|
|
|
</dependency>
|
2015-03-17 12:00:30 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.governance</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.governance.api</artifactId>
|
|
|
|
|
</dependency>
|
2015-03-20 06:57:45 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.axis2.transport</groupId>
|
|
|
|
|
<artifactId>axis2-transport-mail</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-09-14 11:53:09 +00:00
|
|
|
<groupId>org.apache.ws.commons.axiom.wso2</groupId>
|
|
|
|
|
<artifactId>axiom</artifactId>
|
2015-03-20 06:57:45 +00:00
|
|
|
</dependency>
|
2016-09-14 11:53:09 +00:00
|
|
|
<!--dependency>
|
|
|
|
|
<groupId>org.apache.ws.commons.axiom.wso2</groupId>
|
2015-03-20 06:57:45 +00:00
|
|
|
<artifactId>axiom-impl</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.ws.commons.axiom.wso2</groupId>
|
|
|
|
|
<artifactId>axiom</artifactId>
|
2016-09-14 11:53:09 +00:00
|
|
|
</dependency-->
|
2015-03-24 12:58:56 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.axis2.wso2</groupId>
|
|
|
|
|
<artifactId>axis2</artifactId>
|
|
|
|
|
</dependency>
|
2015-03-25 14:33:06 +00:00
|
|
|
<dependency>
|
2016-12-19 06:08:03 +00:00
|
|
|
<groupId>org.wso2.carbon.identity.inbound.auth.oauth2</groupId>
|
2015-03-25 14:33:06 +00:00
|
|
|
<artifactId>org.wso2.carbon.identity.oauth.stub</artifactId>
|
|
|
|
|
</dependency>
|
2015-07-23 04:31:56 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.tomcat</groupId>
|
|
|
|
|
<artifactId>tomcat</artifactId>
|
|
|
|
|
</dependency>
|
2015-07-23 09:05:02 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.tomcat</groupId>
|
|
|
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
2016-03-14 06:18:43 +00:00
|
|
|
|
|
|
|
|
<!--Ntask dependencies-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.commons</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.ntask.core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-03-21 05:03:35 +00:00
|
|
|
|
2016-03-12 07:16:36 +00:00
|
|
|
<dependency>
|
2016-03-12 19:21:54 +00:00
|
|
|
<groupId>commons-collections.wso2</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
2016-03-12 07:16:36 +00:00
|
|
|
</dependency>
|
2016-07-03 09:33:47 +00:00
|
|
|
|
2016-03-12 07:16:36 +00:00
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-11 04:01:30 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.transport.mgt.email.sender.core</artifactId>
|
2016-03-12 07:16:36 +00:00
|
|
|
</dependency>
|
2016-03-21 05:03:35 +00:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-03-31 12:37:05 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
</dependency>
|
2016-03-29 17:16:09 +00:00
|
|
|
|
2016-05-12 16:28:23 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2016-07-03 09:33:47 +00:00
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-11 06:03:09 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.apimgt.annotations</artifactId>
|
2016-07-03 09:33:47 +00:00
|
|
|
</dependency>
|
2017-05-29 06:21:41 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.event-processing</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.event.processor.stub</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-11 07:00:03 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.identity.jwt.client.extension</artifactId>
|
2017-05-29 06:21:41 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec.wso2</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2016-07-03 09:33:47 +00:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
|
|
|
|
</dependency>
|
2020-01-27 16:02:16 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.javassist</groupId>
|
|
|
|
|
<artifactId>javassist</artifactId>
|
2017-09-29 06:34:03 +00:00
|
|
|
</dependency>
|
2017-09-28 12:23:20 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
|
<artifactId>powermock-api-mockito</artifactId>
|
|
|
|
|
</dependency>
|
2019-09-17 14:33:23 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.wso2.carbon.multitenancy</groupId>
|
|
|
|
|
<artifactId>org.wso2.carbon.tenant.mgt</artifactId>
|
|
|
|
|
</dependency>
|
2020-08-12 06:51:58 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
|
<artifactId>commons-validator</artifactId>
|
|
|
|
|
</dependency>
|
2020-11-17 03:32:45 +00:00
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-11 07:00:03 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.server.bootup.heartbeat.beacon</artifactId>
|
2020-11-17 03:32:45 +00:00
|
|
|
</dependency>
|
2022-01-18 03:11:08 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
2022-02-24 18:15:13 +00:00
|
|
|
<dependency>
|
2022-03-08 16:35:17 +00:00
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
2022-02-24 18:15:13 +00:00
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2023-02-21 16:53:10 +00:00
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-10 14:38:20 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.task.mgt.common</artifactId>
|
2023-02-21 16:53:10 +00:00
|
|
|
</dependency>
|
2023-05-11 06:44:29 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
|
|
|
|
<artifactId>io.entgra.device.mgt.core.device.mgt.extensions.logger</artifactId>
|
|
|
|
|
</dependency>
|
2023-03-22 07:07:59 +00:00
|
|
|
<dependency>
|
2023-05-10 06:23:11 +00:00
|
|
|
<groupId>io.entgra.device.mgt.core</groupId>
|
2023-05-11 07:00:03 +00:00
|
|
|
<artifactId>io.entgra.device.mgt.core.notification.logger</artifactId>
|
2023-03-22 07:07:59 +00:00
|
|
|
</dependency>
|
2014-12-04 04:30:37 +00:00
|
|
|
</dependencies>
|
2014-12-03 09:24:57 +00:00
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|
|