mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Refactored the source & modified the build
This commit is contained in:
parent
b543337371
commit
2b52e3ccd2
@ -1,4 +1,3 @@
|
||||
|
||||
/*
|
||||
* Copyright (c) 2015, WSO2 Inc. (http:www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
@ -227,6 +226,9 @@ public class MobileFeatureDAOTestSuite {
|
||||
@Test(dependsOnMethods = {"addMobileFeatureTest"})
|
||||
public void deleteMobileFeatureByIdTest()
|
||||
throws MobileDeviceManagementDAOException {
|
||||
Connection conn = null;
|
||||
Statement stmt = null;
|
||||
|
||||
boolean status = mblFeatureDAO.deleteMobileFeatureById(mblFeatureId);
|
||||
try {
|
||||
conn = DriverManager.getConnection(testDBConfiguration.getConnectionURL());
|
||||
@ -237,7 +239,6 @@ public class MobileFeatureDAOTestSuite {
|
||||
while (resultSet.next()) {
|
||||
status = false;
|
||||
}
|
||||
conn.close();
|
||||
} catch (SQLException e) {
|
||||
log.error("Error in deleting Mobile Feature data ", e);
|
||||
throw new MobileDeviceManagementDAOException("Error in deleting Mobile Feature data ",
|
||||
@ -252,6 +253,9 @@ public class MobileFeatureDAOTestSuite {
|
||||
public void updateMobileFeatureTest()
|
||||
throws MobileDeviceManagementDAOException {
|
||||
|
||||
Connection conn = null;
|
||||
Statement stmt = null;
|
||||
|
||||
MobileFeature mobileFeature = new MobileFeature();
|
||||
MobileFeature testMblFeature = new MobileFeature();
|
||||
mobileFeature.setCode(MBL_FEATURE_UPDATED_CODE);
|
||||
@ -272,7 +276,6 @@ public class MobileFeatureDAOTestSuite {
|
||||
testMblFeature.setName(resultSet.getString(3));
|
||||
testMblFeature.setDescription(resultSet.getString(4));
|
||||
}
|
||||
conn.close();
|
||||
} catch (SQLException e) {
|
||||
log.error("Error in updating Mobile Feature data ", e);
|
||||
throw new MobileDeviceManagementDAOException("Error in updating Mobile Feature data ",
|
||||
|
||||
123
pom.xml
123
pom.xml
@ -26,9 +26,9 @@
|
||||
<artifactId>wso2mdm-parent</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<name>WSO2 CDM - Parent</name>
|
||||
<name>WSO2 MDM - Parent</name>
|
||||
<url>http://wso2.org</url>
|
||||
<description>WSO2 Connected Device Manager</description>
|
||||
<description>WSO2 Mobile Device Manager</description>
|
||||
|
||||
<parent>
|
||||
<groupId>org.wso2</groupId>
|
||||
@ -64,16 +64,100 @@
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.wso2.carbon</groupId>
|
||||
<groupId>org.wso2.carbon.automationutils</groupId>
|
||||
<artifactId>org.wso2.carbon.integration.common.extensions</artifactId>
|
||||
<version>${test.framework.version}</version>
|
||||
<version>${automation.utils.version}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.apache.ftpserver</groupId>
|
||||
<artifactId>ftpserver-core</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-all</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-logging-juli</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.springframework.ws.wso2</groupId>
|
||||
<artifactId>spring.framework</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.seleniumhq.selenium</groupId>
|
||||
<artifactId>selenium-java</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>com.opera</groupId>
|
||||
<artifactId>operadriver</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.jmeter</groupId>
|
||||
<artifactId>ApacheJMeter_core</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>com.saucelabs.selenium</groupId>
|
||||
<artifactId>sauce-ondemand-driver</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>com.saucelabs.selenium</groupId>
|
||||
<artifactId>selenium-client-factory</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.axis2.wso2</groupId>
|
||||
<artifactId>axis2</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.ws.commons.axiom.wso2</groupId>
|
||||
<artifactId>axiom</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>net.lingala.zip4j</groupId>
|
||||
<artifactId>zip4j</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.wso2.carbon</groupId>
|
||||
<groupId>org.wso2.carbon.automationutils</groupId>
|
||||
<artifactId>org.wso2.carbon.integration.common.admin.client</artifactId>
|
||||
<version>${test.automation.stub.version}</version>
|
||||
<version>${automation.utils.version}</version>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon.commons</groupId>
|
||||
<artifactId>org.wso2.carbon.user.mgt.stub</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon.commons</groupId>
|
||||
<artifactId>org.wso2.carbon.logging.view.stub</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon.commons</groupId>
|
||||
<artifactId>org.wso2.carbon.ndatasource.stub</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon.commons</groupId>
|
||||
<artifactId>org.wso2.carbon.authenticator.stub</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon.commons</groupId>
|
||||
<artifactId>org.wso2.carbon.authenticator.stub</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon</groupId>
|
||||
<artifactId>org.wso2.carbon.utils</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!--Carbon Kernel Dependencies-->
|
||||
@ -364,7 +448,7 @@
|
||||
<artifactId>org.wso2.carbon.user.core</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.wso2.carbon</groupId>
|
||||
<groupId>org.wso2.carbon.governance</groupId>
|
||||
<artifactId>org.wso2.carbon.governance.api</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
@ -542,12 +626,14 @@
|
||||
<!--Jaggery -->
|
||||
<jaggery.version>0.9.0.ALPHA6</jaggery.version>
|
||||
<jaggery.extensions.version>1.0.0</jaggery.extensions.version>
|
||||
<jaggery.extensions.sso.version>1.1.0-SNAPSHOT</jaggery.extensions.sso.version>
|
||||
<jaggery.extensions.sso.version>1.2.0</jaggery.extensions.sso.version>
|
||||
<jaggery.extensions.carbon.version>1.1.0</jaggery.extensions.carbon.version>
|
||||
<jaggery.extensions.test.version>1.1.0</jaggery.extensions.test.version>
|
||||
|
||||
<!--Testing -->
|
||||
<test.framework.version>4.3.1</test.framework.version>
|
||||
<testng.version>6.8</testng.version>
|
||||
<test.automation.stub.version>4.3.0-SNAPSHOT</test.automation.stub.version>
|
||||
<automation.utils.version>4.3.0</automation.utils.version>
|
||||
<test.automation.emm.ui.version>1.1.0</test.automation.emm.ui.version>
|
||||
|
||||
<!--Eclipse Osgi-->
|
||||
@ -574,25 +660,25 @@
|
||||
<javax.ws.rs.version>1.1.1</javax.ws.rs.version>
|
||||
|
||||
<!-- Carbon Commons -->
|
||||
<carbon.commons.version>4.3.2</carbon.commons.version>
|
||||
<carbon.commons.version>4.3.4</carbon.commons.version>
|
||||
|
||||
<!-- Carbon Utils -->
|
||||
<carbon.utils.version>4.3.0-SNAPSHOT</carbon.utils.version>
|
||||
|
||||
<!-- Carbon Deployment -->
|
||||
<carbon.deployment.version>4.3.0</carbon.deployment.version>
|
||||
<carbon.deployment.version>4.3.1</carbon.deployment.version>
|
||||
|
||||
<!-- Identity -->
|
||||
<carbon.identity.version>4.3.0</carbon.identity.version>
|
||||
<carbon.identity.version>4.3.2</carbon.identity.version>
|
||||
|
||||
<!-- Multi-tenancy -->
|
||||
<carbon.multitenancy.version>4.3.0</carbon.multitenancy.version>
|
||||
<carbon.multitenancy.version>4.3.3</carbon.multitenancy.version>
|
||||
|
||||
<!-- Registry -->
|
||||
<carbon.registry.version>4.3.0</carbon.registry.version>
|
||||
|
||||
<!-- Governance -->
|
||||
<carbon.governance.version>4.3.0-SNAPSHOT</carbon.governance.version>
|
||||
<carbon.governance.version>4.3.0</carbon.governance.version>
|
||||
|
||||
<!-- Transport Management -->
|
||||
<carbon.transport.mgt.version>4.3.0-SNAPSHOT</carbon.transport.mgt.version>
|
||||
@ -606,19 +692,12 @@
|
||||
<!-- API Management -->
|
||||
<carbon.api.mgt.version>4.3.0-SNAPSHOT</carbon.api.mgt.version>
|
||||
|
||||
<!-- Spongycastle Management-->
|
||||
<!-- Third Party Dependencies-->
|
||||
<spongycastle.version>1.51.0.0</spongycastle.version>
|
||||
|
||||
<!-- Bouncycastle Management-->
|
||||
<bouncycastle.version>1.49</bouncycastle.version>
|
||||
|
||||
<!-- Apache wss4j Management-->
|
||||
<apache.wss4j.version>2.0.0</apache.wss4j.version>
|
||||
|
||||
<!-- Codehaus Plexus Management-->
|
||||
<codehaus.plexus.version>3.0.21</codehaus.plexus.version>
|
||||
|
||||
|
||||
</properties>
|
||||
|
||||
<scm>
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.wso2.carbon</groupId>
|
||||
<groupId>org.wso2.carbon.automationutils</groupId>
|
||||
<artifactId>org.wso2.carbon.integration.common.admin.client</artifactId>
|
||||
<scope>compile</scope>
|
||||
<exclusions>
|
||||
|
||||
@ -126,6 +126,9 @@
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.deployment:org.wso2.carbon.module.mgt.feature:${carbon.deployment.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.deployment:org.wso2.carbon.as.runtimes.cxf.feature:${carbon.deployment.version}
|
||||
</featureArtifactDef>
|
||||
<!-- End of Carbon Deployment Features -->
|
||||
|
||||
<!-- Jaggery Features -->
|
||||
@ -133,7 +136,7 @@
|
||||
org.jaggeryjs:org.jaggeryjs.feature:${jaggery.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.jaggeryjs.modules:carbon.feature:${jaggery.extensions.version}
|
||||
org.jaggeryjs.modules:carbon.feature:${jaggery.extensions.carbon.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.jaggeryjs.modules:process.feature:${jaggery.extensions.version}
|
||||
@ -148,19 +151,10 @@
|
||||
org.jaggeryjs.modules:i18n.feature:${jaggery.extensions.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.jaggeryjs.modules:jaggery-test.feature:${jaggery.extensions.version}
|
||||
org.jaggeryjs.modules:jaggery-test.feature:${jaggery.extensions.test.version}
|
||||
</featureArtifactDef>
|
||||
<!-- End of Jaggery Features -->
|
||||
|
||||
<!-- Misc Features -->
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.transport.mgt.feature:${carbon.transport.mgt.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.as.runtimes.cxf.feature:${carbon.platform.version}
|
||||
</featureArtifactDef>
|
||||
<!-- End of Misc Features -->
|
||||
|
||||
<!-- API Management Features -->
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.apimgt.core.feature:${carbon.api.mgt.version}
|
||||
@ -189,14 +183,14 @@
|
||||
<!-- End of Carbon Commons Features -->
|
||||
|
||||
<!-- Carbon Multi-tenancy Features -->
|
||||
<!--<featureArtifactDef>-->
|
||||
<!--org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.common.server.feature:${carbon.multitenancy.version}-->
|
||||
<!--</featureArtifactDef>-->
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.common.server.feature:${carbon.multitenancy.version}
|
||||
</featureArtifactDef>
|
||||
<!-- End of Carbon Multi-tenancy Features -->
|
||||
|
||||
<!-- Identity Features -->
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.security.mgt.feature:${carbon.platform.version}
|
||||
org.wso2.carbon.identity:org.wso2.carbon.security.mgt.feature:${carbon.identity.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.identity:org.wso2.carbon.um.ws.service.client.feature:${carbon.identity.version}
|
||||
@ -284,13 +278,13 @@
|
||||
|
||||
<!-- Governance Features -->
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.governance.metadata.feature:${carbon.governance.version}
|
||||
org.wso2.carbon.governance:org.wso2.carbon.governance.metadata.feature:${carbon.governance.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.governance.lifecycle.management.feature:${carbon.governance.version}
|
||||
org.wso2.carbon.governance:org.wso2.carbon.governance.lifecycle.management.feature:${carbon.governance.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon:org.wso2.carbon.registry.extensions.feature:${carbon.governance.version}
|
||||
org.wso2.carbon.governance:org.wso2.carbon.registry.extensions.feature:${carbon.governance.version}
|
||||
</featureArtifactDef>
|
||||
<!-- End of Governance Features -->
|
||||
|
||||
@ -336,6 +330,10 @@
|
||||
<id>org.wso2.carbon.module.mgt.feature.group</id>
|
||||
<version>${carbon.deployment.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.wso2.carbon.as.runtimes.cxf.feature.group</id>
|
||||
<version>${carbon.deployment.version}</version>
|
||||
</feature>
|
||||
<!-- End of Carbon Deployment Features -->
|
||||
|
||||
<!-- Jaggery Features -->
|
||||
@ -345,7 +343,7 @@
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.jaggeryjs.modules.carbon.feature.group</id>
|
||||
<version>${jaggery.extensions.version}</version>
|
||||
<version>${jaggery.extensions.carbon.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.jaggeryjs.modules.process.feature.group</id>
|
||||
@ -365,21 +363,10 @@
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.jaggeryjs.modules.jaggery-test.feature.group</id>
|
||||
<version>${jaggery.extensions.version}</version>
|
||||
<version>${jaggery.extensions.test.version}</version>
|
||||
</feature>
|
||||
<!-- End of Jaggery Features -->
|
||||
|
||||
<!-- Misc Features -->
|
||||
<feature>
|
||||
<id>org.wso2.carbon.transport.mgt.feature.group</id>
|
||||
<version>${carbon.transport.mgt.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.wso2.carbon.as.runtimes.cxf.feature.group</id>
|
||||
<version>${carbon.platform.version}</version>
|
||||
</feature>
|
||||
<!-- End of Misc Features -->
|
||||
|
||||
<!-- API Management Features -->
|
||||
<feature>
|
||||
<id>org.wso2.carbon.apimgt.core.feature.group</id>
|
||||
@ -416,16 +403,16 @@
|
||||
<!-- End of Carbon Commons Features -->
|
||||
|
||||
<!-- Carbon Multi-tenancy Features -->
|
||||
<!--<feature>-->
|
||||
<!--<id>org.wso2.carbon.tenant.common.server.feature.group</id>-->
|
||||
<!--<version>${carbon.multitenancy.version}</version>-->
|
||||
<!--</feature>-->
|
||||
<feature>
|
||||
<id>org.wso2.carbon.tenant.common.server.feature.group</id>
|
||||
<version>${carbon.multitenancy.version}</version>
|
||||
</feature>
|
||||
<!-- End of Carbon Multi-tenancy Features -->
|
||||
|
||||
<!-- Identity Features -->
|
||||
<feature>
|
||||
<id>org.wso2.carbon.security.mgt.feature.group</id>
|
||||
<version>${carbon.platform.version}</version>
|
||||
<version>${carbon.identity.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.wso2.carbon.um.ws.service.client.feature.group</id>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user