device-mgt-plugins/components/mobile-plugins/android-plugin/io.entgra.device.mgt.plugins.mobile.android/pom.xml

198 lines
10 KiB
XML
Raw Normal View History

2020-03-10 09:06:24 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
2023-06-07 04:28:48 +00:00
~ Copyright (c) 2018 - 2023, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
2020-03-10 09:06:24 +00:00
~
2023-06-07 04:28:48 +00:00
~ Entgra (Pvt) Ltd. licenses this file to you under the Apache License,
2020-03-10 09:06:24 +00:00
~ 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
~
2023-06-07 04:28:48 +00:00
~ http://www.apache.org/licenses/LICENSE-2.0
2020-03-10 09:06:24 +00:00
~
~ 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
2023-06-07 04:28:48 +00:00
~ KIND, either express or implied. See the License for the
2020-03-10 09:06:24 +00:00
~ specific language governing permissions and limitations
~ under the License.
-->
<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">
<parent>
2023-05-11 08:22:22 +00:00
<artifactId>android-plugin</artifactId>
2023-05-03 06:20:16 +00:00
<groupId>io.entgra.device.mgt.plugins</groupId>
<version>7.0.0-SNAPSHOT</version>
2020-03-10 09:06:24 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
2023-05-03 06:20:16 +00:00
<artifactId>io.entgra.device.mgt.plugins.mobile.android</artifactId>
2020-03-10 09:06:24 +00:00
<packaging>bundle</packaging>
<name>Entgra Device Management Plugins - Mobile Device Management Android Impl</name>
<description>Entgra Device Management Plugins - Mobile Device Management Android Implementation</description>
2023-06-07 16:06:27 +00:00
<url>http://entgra.io</url>
2020-03-10 09:06:24 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2023-06-06 08:40:28 +00:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
2020-03-10 09:06:24 +00:00
</plugin>
<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:10:05 +00:00
<Bundle-Version>${io.entgra.device.mgt.plugins.version}</Bundle-Version>
2020-03-10 09:06:24 +00:00
<Bundle-Description>Device Management Mobile Android Impl Bundle</Bundle-Description>
2023-05-03 09:23:40 +00:00
<Private-Package>io.entgra.device.mgt.plugins.mobile.android.internal</Private-Package>
2020-03-10 09:06:24 +00:00
<Import-Package>
2023-06-06 08:40:28 +00:00
com.google.gson;version="[2.9,3)",
2024-10-01 08:58:59 +00:00
io.entgra.device.mgt.core.device.mgt.common;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.app.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.configuration.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.exceptions;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.general;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.invitation.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.license.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.operation.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.policy.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.policy.mgt.monitor;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.pull.notification;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.push.notification;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.spi;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.common.type.mgt;version="${io.entgra.device.mgt.core.version.range}",
io.entgra.device.mgt.core.device.mgt.extensions.license.mgt.registry;version="${io.entgra.device.mgt.core.version.range}",
2023-06-06 08:40:28 +00:00
io.entgra.device.mgt.plugins.mobile.android.impl.config.datasource,
io.entgra.device.mgt.plugins.mobile.android.impl.dao,
io.entgra.device.mgt.plugins.mobile.android.impl.dao.impl,
io.entgra.device.mgt.plugins.mobile.android.impl.dao.util,
io.entgra.device.mgt.plugins.mobile.android.impl.dto,
javax.naming,
2020-03-10 09:06:24 +00:00
javax.sql,
2023-06-06 08:40:28 +00:00
javax.xml.bind;version="[0.0,1)",
javax.xml.bind.annotation;version="[0.0,1)",
javax.xml.bind.annotation.adapters;version="[0.0,1)",
javax.xml.parsers,
javax.xml.stream;version="[1.0,2)",
org.apache.commons.logging;version="[1.2,2)",
org.osgi.service.*;version="${imp.package.version.osgi.service}",
2020-03-10 09:06:24 +00:00
org.w3c.dom,
2023-06-06 08:40:28 +00:00
org.wso2.carbon.context;version="[4.8,5)",
org.wso2.carbon.ndatasource.core;version="[4.8,5)",
org.wso2.carbon.registry.api;version="[1.0,2)",
org.wso2.carbon.registry.core;version="[1.0,2)",
org.wso2.carbon.registry.core.service;version="[1.0,2)",
org.wso2.carbon.registry.core.session;version="[1.0,2)",
org.wso2.carbon.utils;version="[4.8,5)"
2020-03-10 09:06:24 +00:00
</Import-Package>
<Export-Package>
2023-05-03 09:23:40 +00:00
!io.entgra.device.mgt.plugins.mobile.android.internal,
io.entgra.device.mgt.plugins.mobile.android.*
2020-03-10 09:06:24 +00:00
</Export-Package>
</instructions>
</configuration>
</plugin>
<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>
</plugins>
</build>
<dependencies>
<dependency>
2023-06-06 08:40:28 +00:00
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.ds-annotations</artifactId>
<scope>provided</scope>
2020-03-10 09:06:24 +00:00
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.core</artifactId>
</dependency>
<dependency>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-api</artifactId>
2020-03-10 09:06:24 +00:00
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.utils</artifactId>
</dependency>
<dependency>
2023-05-11 08:22:22 +00:00
<groupId>io.entgra.device.mgt.core</groupId>
<artifactId>io.entgra.device.mgt.core.device.mgt.common</artifactId>
2020-03-10 09:06:24 +00:00
</dependency>
<dependency>
2023-05-11 08:22:22 +00:00
<groupId>io.entgra.device.mgt.core</groupId>
<artifactId>io.entgra.device.mgt.core.device.mgt.extensions</artifactId>
2020-03-10 09:06:24 +00:00
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
<artifactId>org.wso2.carbon.ndatasource.core</artifactId>
</dependency>
<dependency>
2023-05-11 08:22:22 +00:00
<groupId>io.entgra.device.mgt.core</groupId>
<artifactId>io.entgra.device.mgt.core.policy.mgt.common</artifactId>
2020-03-10 09:06:24 +00:00
</dependency>
<dependency>
2023-05-11 08:22:22 +00:00
<groupId>io.entgra.device.mgt.core</groupId>
<artifactId>io.entgra.device.mgt.core.policy.mgt.core</artifactId>
2020-03-10 09:06:24 +00:00
</dependency>
<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.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<dependency>
2024-03-07 10:37:39 +00:00
<groupId>org.wso2.orbit.org.apache.tomcat</groupId>
2020-03-10 09:06:24 +00:00
<artifactId>jdbc-pool</artifactId>
</dependency>
<dependency>
2023-02-16 13:12:27 +00:00
<groupId>org.wso2.orbit.com.h2database</groupId>
<artifactId>h2</artifactId>
2020-03-10 09:06:24 +00:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
</dependencies>
</project>