diff --git a/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/pom.xml b/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/pom.xml
index 1934338712..e4cf00b565 100644
--- a/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/pom.xml
+++ b/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/pom.xml
@@ -220,5 +220,9 @@
+
+
+ true
+
diff --git a/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/src/test/java/org/wso2/carbon/apimgt/webapp/publisher/BaseAPIPublisherTest.java b/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/src/test/java/org/wso2/carbon/apimgt/webapp/publisher/BaseAPIPublisherTest.java
index dd2d111c34..cc1c8e757a 100644
--- a/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/src/test/java/org/wso2/carbon/apimgt/webapp/publisher/BaseAPIPublisherTest.java
+++ b/components/apimgt-extensions/org.wso2.carbon.apimgt.webapp.publisher/src/test/java/org/wso2/carbon/apimgt/webapp/publisher/BaseAPIPublisherTest.java
@@ -22,22 +22,11 @@ import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.mockito.Mockito;
import org.testng.annotations.BeforeSuite;
-import org.wso2.carbon.apimgt.integration.client.IntegrationClientServiceImpl;
-import org.wso2.carbon.apimgt.integration.client.internal.APIIntegrationClientDataHolder;
-import org.wso2.carbon.apimgt.integration.client.publisher.PublisherClient;
-import org.wso2.carbon.apimgt.integration.client.service.IntegrationClientService;
-import org.wso2.carbon.apimgt.integration.generated.client.publisher.api.APIIndividualApi;
import org.wso2.carbon.apimgt.webapp.publisher.internal.APIPublisherDataHolder;
import org.wso2.carbon.apimgt.webapp.publisher.utils.MockAPIIndividualApi;
import org.wso2.carbon.base.MultitenantConstants;
import org.wso2.carbon.context.PrivilegedCarbonContext;
import org.wso2.carbon.context.internal.OSGiDataHolder;
-import org.wso2.carbon.identity.jwt.client.extension.JWTClient;
-import org.wso2.carbon.identity.jwt.client.extension.dto.AccessTokenInfo;
-import org.wso2.carbon.identity.jwt.client.extension.exception.JWTClientException;
-import org.wso2.carbon.identity.jwt.client.extension.internal.JWTClientExtensionDataHolder;
-import org.wso2.carbon.identity.jwt.client.extension.service.JWTClientManagerService;
-import org.wso2.carbon.identity.jwt.client.extension.service.JWTClientManagerServiceImpl;
import org.wso2.carbon.registry.core.config.RegistryContext;
import org.wso2.carbon.registry.core.exceptions.RegistryException;
import org.wso2.carbon.registry.core.internal.RegistryDataHolder;
@@ -45,6 +34,7 @@ import org.wso2.carbon.registry.core.jdbc.realm.InMemoryRealmService;
import org.wso2.carbon.registry.core.service.RegistryService;
import org.wso2.carbon.user.api.UserStoreException;
import org.wso2.carbon.user.core.service.RealmService;
+import org.wso2.carbon.identity.jwt.client.extension.exception.JWTClientException;
import java.io.File;
import java.io.InputStream;
diff --git a/components/application-mgt/io.entgra.application.mgt.core/pom.xml b/components/application-mgt/io.entgra.application.mgt.core/pom.xml
index 05104b8b57..5ca9f9a655 100644
--- a/components/application-mgt/io.entgra.application.mgt.core/pom.xml
+++ b/components/application-mgt/io.entgra.application.mgt.core/pom.xml
@@ -258,6 +258,12 @@
5.1.34
test
+
+ xerces.wso2
+ xercesImpl
+ 2.8.1.wso2v2
+ test
+
com.h2database.wso2
h2-database-engine
diff --git a/components/application-mgt/io.entgra.application.mgt.core/src/test/java/io/entgra/application/mgt/core/management/ApplicationManagementTest.java b/components/application-mgt/io.entgra.application.mgt.core/src/test/java/io/entgra/application/mgt/core/management/ApplicationManagementTest.java
index 2652cbf714..998e10e5b1 100644
--- a/components/application-mgt/io.entgra.application.mgt.core/src/test/java/io/entgra/application/mgt/core/management/ApplicationManagementTest.java
+++ b/components/application-mgt/io.entgra.application.mgt.core/src/test/java/io/entgra/application/mgt/core/management/ApplicationManagementTest.java
@@ -20,6 +20,7 @@ package io.entgra.application.mgt.core.management;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.cxf.jaxrs.ext.multipart.Attachment;
+import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import io.entgra.application.mgt.common.*;
import io.entgra.application.mgt.common.dto.ApplicationDTO;
@@ -40,6 +41,7 @@ import io.entgra.application.mgt.core.dto.ApplicationsDTO;
import io.entgra.application.mgt.core.impl.ApplicationManagerImpl;
import io.entgra.application.mgt.core.internal.DataHolder;
import io.entgra.application.mgt.core.util.ConnectionManagerUtil;
+import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException;
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
import org.wso2.carbon.device.mgt.core.dto.DeviceTypeVersion;
@@ -68,7 +70,7 @@ public class ApplicationManagementTest extends BaseTestCase {
ConnectionManagerUtil.closeDBConnection();
}
- @Test(dependsOnMethods = ("addApplicationCategories"))
+ @Test(dependsOnMethods = "addApplicationCategories")
public void createApplication() throws Exception {
log.debug("Creating the first application ....!");
@@ -124,102 +126,117 @@ public class ApplicationManagementTest extends BaseTestCase {
manager.createEntApp(applicationWrapper, applicationArtifact);
}
- @Test
+ @DataProvider(name = "applicationIdDataProvider")
+ public static Object[][] applicationId() {
+ return new Object[][] {{-1}};
+ }
+
+ @DataProvider(name = "updateApplicationDataProvider")
+ public static Object[][] updateApplicationDataProvider() {
+ return new Object[][] {{-1, new ApplicationUpdateWrapper()}};
+ }
+
+ @DataProvider(name = "uuidDataProvider")
+ public static Object[][] uuidDataProvider() {
+ return new Object[][] {{"TEST_APP_UUID"}};
+ }
+
+ @Test(enabled = false)
public void updateApplication(int applicationId, ApplicationUpdateWrapper applicationUpdateWrapper) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public void deleteApplication(int applicationId) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public void retireApplication(int applicationId) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public void deleteApplicationRelease(String releaseUuid) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public ApplicationList getApplications(Filter filter) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public Application getApplicationById(int id, String state) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public ApplicationRelease getApplicationReleaseByUUID(String uuid) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public ApplicationDTO getApplicationByUuid(String uuid, String state) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public ApplicationDTO getApplicationByRelease(String appReleaseUUID) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public List getLifecycleStateChangeFlow(String releaseUuid) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public void changeLifecycleState(String releaseUuid, String stateName) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public void updateApplicationImageArtifact(String uuid, ApplicationArtifact applicationArtifact) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public void updateApplicationArtifact(String deviceType, String appType, String uuid, ApplicationArtifact applicationArtifact) throws ApplicationManagementException {
}
- @Test
+ @Test(enabled = false)
public ApplicationRelease createRelease(int applicationId, EntAppReleaseWrapper entAppReleaseWrapper, ApplicationArtifact applicationArtifact) throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public boolean updateRelease(String deviceType, String applicationType, String releaseUuid, EntAppReleaseWrapper entAppReleaseWrapper, ApplicationArtifact applicationArtifact) throws ApplicationManagementException {
return false;
}
- @Test
+ @Test(enabled = false)
public void validateAppCreatingRequest(ApplicationWrapper applicationWrapper) throws RequestValidatingException {
}
- @Test
+ @Test(enabled = false)
public void validateReleaseCreatingRequest(EntAppReleaseWrapper entAppReleaseWrapper, String applicationType) throws RequestValidatingException {
}
- @Test
+ @Test(enabled = false)
public void validateImageArtifacts(Attachment iconFile, Attachment bannerFile, List attachmentList) throws RequestValidatingException {
}
- @Test
+ @Test(enabled = false)
public void validateBinaryArtifact(Attachment binaryFile, String applicationType) throws RequestValidatingException {
}
- @Test(dependsOnMethods = ("addDeviceVersions"))
+ @Test(dependsOnMethods = "addDeviceVersions")
public void addApplicationCategories() throws ApplicationManagementException {
List categories = new ArrayList<>();
categories.add("Test Category");
@@ -264,17 +281,17 @@ public class ApplicationManagementTest extends BaseTestCase {
}
}
- @Test
+ @Test(enabled = false)
public List getRegisteredTags() throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public List getRegisteredCategories() throws ApplicationManagementException {
return null;
}
- @Test
+ @Test(enabled = false)
public void deleteTagMapping(int appId, String tagName) throws ApplicationManagementException {
}
diff --git a/components/certificate-mgt/org.wso2.carbon.certificate.mgt.core/pom.xml b/components/certificate-mgt/org.wso2.carbon.certificate.mgt.core/pom.xml
index b129c7affa..9f7a444da1 100644
--- a/components/certificate-mgt/org.wso2.carbon.certificate.mgt.core/pom.xml
+++ b/components/certificate-mgt/org.wso2.carbon.certificate.mgt.core/pom.xml
@@ -200,6 +200,12 @@
h2-database-engine
test
+
+ org.wso2.carbon
+ org.wso2.carbon.securevault
+
+ test
+
org.powermock
powermock-api-mockito
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.api/pom.xml b/components/device-mgt/org.wso2.carbon.device.mgt.api/pom.xml
index d683786250..3c9272a596 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.api/pom.xml
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.api/pom.xml
@@ -145,11 +145,22 @@
+
+ org.testng
+ testng
+ test
+
org.springframework
spring-web
provided
+
+ org.apache.cxf
+ cxf-bundle
+ 3.0.0-milestone2
+ test
+
org.apache.cxf
cxf-bundle-jaxrs
@@ -190,11 +201,11 @@
org.wso2.carbon.device.mgt.common
provided
-
- org.wso2.carbon.devicemgt
- org.wso2.carbon.device.mgt.extensions
- provided
-
+
+ org.wso2.carbon.devicemgt
+ org.wso2.carbon.device.mgt.extensions
+ provided
+
org.wso2.carbon.devicemgt
org.wso2.carbon.device.mgt.core
@@ -332,21 +343,21 @@
jsr311-api
provided
-
- org.wso2.carbon.commons
- org.wso2.carbon.application.mgt.stub
- provided
-
+
+ org.wso2.carbon.commons
+ org.wso2.carbon.application.mgt.stub
+ provided
+
org.wso2.carbon.analytics
org.wso2.carbon.analytics.api
provided
-
- org.wso2.carbon.devicemgt
- org.wso2.carbon.identity.jwt.client.extension
- provided
-
+
+ org.wso2.carbon.devicemgt
+ org.wso2.carbon.identity.jwt.client.extension
+ provided
+
org.wso2.carbon
org.wso2.carbon.registry.core
@@ -363,31 +374,31 @@
${carbon.identity.framework.version}
provided
-
-
-
-
-
-
- org.wso2.carbon.analytics-common
- org.wso2.carbon.event.receiver.stub
- provided
-
-
- org.wso2.carbon.analytics-common
- org.wso2.carbon.event.stream.stub
- provided
-
-
- org.wso2.carbon.analytics-common
- org.wso2.carbon.event.publisher.stub
- provided
-
-
- org.wso2.carbon.analytics-common
- org.wso2.carbon.event.stream.persistence.stub
- provided
-
+
+
+
+
+
+
+ org.wso2.carbon.analytics-common
+ org.wso2.carbon.event.receiver.stub
+ provided
+
+
+ org.wso2.carbon.analytics-common
+ org.wso2.carbon.event.stream.stub
+ provided
+
+
+ org.wso2.carbon.analytics-common
+ org.wso2.carbon.event.publisher.stub
+ provided
+
+
+ org.wso2.carbon.analytics-common
+ org.wso2.carbon.event.stream.persistence.stub
+ provided
+
org.powermock
powermock-module-testng
@@ -415,4 +426,4 @@
provided
-
+
\ No newline at end of file
diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.api/src/test/java/org/wso2/carbon/device/mgt/jaxrs/service/impl/DeviceAgentServiceTest.java b/components/device-mgt/org.wso2.carbon.device.mgt.api/src/test/java/org/wso2/carbon/device/mgt/jaxrs/service/impl/DeviceAgentServiceTest.java
index 729b1827cd..05415a9671 100644
--- a/components/device-mgt/org.wso2.carbon.device.mgt.api/src/test/java/org/wso2/carbon/device/mgt/jaxrs/service/impl/DeviceAgentServiceTest.java
+++ b/components/device-mgt/org.wso2.carbon.device.mgt.api/src/test/java/org/wso2/carbon/device/mgt/jaxrs/service/impl/DeviceAgentServiceTest.java
@@ -34,9 +34,6 @@ import org.wso2.carbon.base.MultitenantConstants;
import org.wso2.carbon.caching.impl.CacheImpl;
import org.wso2.carbon.context.CarbonContext;
import org.wso2.carbon.context.PrivilegedCarbonContext;
-import org.wso2.carbon.device.mgt.analytics.data.publisher.exception.DataPublisherConfigurationException;
-import org.wso2.carbon.device.mgt.analytics.data.publisher.service.EventsPublisherService;
-import org.wso2.carbon.device.mgt.analytics.data.publisher.service.EventsPublisherServiceImpl;
import org.wso2.carbon.device.mgt.common.Device;
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
import org.wso2.carbon.device.mgt.common.EnrolmentInfo;
@@ -482,125 +479,6 @@ public class DeviceAgentServiceTest {
Mockito.reset(eventStreamAdminServiceStub);
}
- @Test(description = "Test the error scenario of Publishing Events with null event attributes.")
- public void testEventPublishWithEventAttributesNULLAndPublishEventsFailure() throws
- DeviceAccessAuthorizationException, RemoteException {
- PowerMockito.stub(PowerMockito.method(PrivilegedCarbonContext.class, "getThreadLocalCarbonContext"))
- .toReturn(this.privilegedCarbonContext);
- PowerMockito.stub(PowerMockito.method(DeviceMgtAPIUtils.class,
- "getDeviceAccessAuthorizationService")).toReturn(this.deviceAccessAuthorizationService);
- Mockito.when(this.deviceAccessAuthorizationService.isUserAuthorized(Mockito.any(DeviceIdentifier.class)))
- .thenReturn(true);
- PowerMockito.stub(PowerMockito.method(DeviceMgtAPIUtils.class, "getEventStreamAdminServiceStub"))
- .toReturn(this.eventStreamAdminServiceStub);
- EventStreamAttributeDto eventStreamAttributeDto = Mockito.mock(EventStreamAttributeDto.class,
- Mockito.RETURNS_MOCKS);
- EventStreamDefinitionDto eventStreamDefinitionDto = Mockito.mock(EventStreamDefinitionDto.class,
- Mockito.RETURNS_MOCKS);
- Mockito.when(this.eventStreamAdminServiceStub.getStreamDefinitionDto(Mockito.anyString()))
- .thenReturn(eventStreamDefinitionDto);
- Mockito.when(eventStreamDefinitionDto.getPayloadData()).thenReturn(new EventStreamAttributeDto[]{});
- EventsPublisherService eventPublisherService = Mockito.mock(EventsPublisherServiceImpl.class,
- Mockito.RETURNS_MOCKS);
- PowerMockito.stub(PowerMockito.method(DeviceMgtAPIUtils.class, "getEventPublisherService"))
- .toReturn(eventPublisherService);
- Map payload = new HashMap<>();
- CacheImpl cache = Mockito.mock(CacheImpl.class);
- PowerMockito.stub(PowerMockito.method(DeviceMgtAPIUtils.class, "getDynamicEventCache"))
- .toReturn(cache);
- Response response = this.deviceAgentService.publishEvents(payload, TEST_DEVICE_TYPE, TEST_DEVICE_IDENTIFIER);
- Assert.assertNotNull(response, "Response should not be null");
- Assert.assertEquals(response.getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(),
- "The response status should be 500");
- List
+
+ org.testng
+ testng
+
org.wso2.carbon.identity.framework
org.wso2.carbon.identity.core
@@ -195,16 +199,6 @@
org.wso2.carbon.identity.inbound.auth.oauth2
org.wso2.carbon.identity.oauth
-
-
- org.wso2.orbit.com.nimbusds
- nimbus-jose-jwt
-
-
- com.nimbusds
- nimbus-jose-jwt
-
-
org.wso2.carbon
@@ -284,7 +278,17 @@
org.apache.sling.testing.osgi-mock
test
+
+ org.wso2.carbon
+ javax.cache.wso2
+ 4.6.3-m5
+ test
+
+
+
+ true
+
diff --git a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/BaseWebAppAuthenticatorFrameworkTest.java b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/BaseWebAppAuthenticatorFrameworkTest.java
index fc437004a0..a956c5f3dc 100644
--- a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/BaseWebAppAuthenticatorFrameworkTest.java
+++ b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/BaseWebAppAuthenticatorFrameworkTest.java
@@ -18,6 +18,7 @@
package org.wso2.carbon.webapp.authenticator.framework;
+
import org.testng.annotations.BeforeSuite;
import org.wso2.carbon.CarbonConstants;
import org.wso2.carbon.context.PrivilegedCarbonContext;
diff --git a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/WebappAuthenticationValveTest.java b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/WebappAuthenticationValveTest.java
index 91dfad24ca..bd94dad56c 100644
--- a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/WebappAuthenticationValveTest.java
+++ b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/java/org/wso2/carbon/webapp/authenticator/framework/WebappAuthenticationValveTest.java
@@ -106,12 +106,9 @@ public class WebappAuthenticationValveTest {
@Test(description = "This method tests the behaviour of the invoke method of WebAuthenticationValve when "
+ "secured endpoints are invoked.")
- public void testInvokeSecuredEndpoints() throws NoSuchFieldException, IllegalAccessException {
- String encodedString = new String(Base64.getEncoder().encode((ADMIN_USER + ":" + ADMIN_USER).getBytes()));
+ public void testInvokeSecuredEndpointsUnauthorized() throws NoSuchFieldException, IllegalAccessException {
+ String encodedString = new String(Base64.getEncoder().encode((ADMIN_USER + ":" + ADMIN_USER + "test").getBytes()));
Request request = createRequest("basic " + encodedString);
- webappAuthenticationValve.invoke(request, null, compositeValve);
- encodedString = new String(Base64.getEncoder().encode((ADMIN_USER + ":" + ADMIN_USER + "test").getBytes()));
- request = createRequest("basic " + encodedString);
Response response = new Response();
org.apache.coyote.Response coyoteResponse = new org.apache.coyote.Response();
Connector connector = new Connector();
@@ -122,6 +119,21 @@ public class WebappAuthenticationValveTest {
"Response of un-authorized request is not updated");
}
+ @Test(description = "This method tests the behaviour of the invoke method of WebAuthenticationValve when "
+ + "secured endpoints are invoked.")
+ public void testInvokeSecuredEndpointsAuthorized() throws NoSuchFieldException, IllegalAccessException {
+ String encodedString = new String(Base64.getEncoder().encode((ADMIN_USER + ":" + ADMIN_USER).getBytes()));
+ Request request = createRequest("basic " + encodedString);
+ Response response = new Response();
+ org.apache.coyote.Response coyoteResponse = new org.apache.coyote.Response();
+ Connector connector = new Connector();
+ response.setConnector(connector);
+ response.setCoyoteResponse(coyoteResponse);
+ webappAuthenticationValve.invoke(request, response, compositeValve);
+ Assert.assertEquals(response.getStatus(), HttpServletResponse.SC_ACCEPTED,
+ "Response of un-authorized request is not updated");
+ }
+
@Test(description = "This method tests the behaviour of invoke method when the request does not satisfy any "
+ "authenticator requirements")
public void testInvokeWithoutProperAuthenticator() throws NoSuchFieldException, IllegalAccessException {
diff --git a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/resources/carbon-home/repository/conf/registry.xml b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/resources/carbon-home/repository/conf/registry.xml
index 0bb97a7dc9..a226ae80a8 100644
--- a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/resources/carbon-home/repository/conf/registry.xml
+++ b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/test/resources/carbon-home/repository/conf/registry.xml
@@ -1,50 +1,50 @@
-
-
-
-
-
-
-
- wso2registry
- false
- true
- /
-
-
- jdbc:h2:./target/databasetest/CARBON_TEST
-
- org.h2.Driver
- 80
- 60000
- 5
-
-
- false
-
-
-
- true
- true
- true
- true
-
-
+
+
+
+
+
+
+
+ wso2registry
+ false
+ true
+ /
+
+
+ jdbc:h2:./target/databasetest/CARBON_TEST
+
+ org.h2.Driver
+ 80
+ 60000
+ 5
+
+
+ false
+
+
+
+ true
+ true
+ true
+ true
+
+
diff --git a/pom.xml b/pom.xml
index b8aacf28c3..83ceb160d4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1975,7 +1975,7 @@
2.2.1
- 6.1.1
+ 7.4.0
4.6.2
[4.5.0, 5.0.0)
5.1.2
@@ -2000,7 +2000,6 @@
4.3.1
4.4.2
- 6.8
1.1.0
4.8.2
@@ -2186,7 +2185,7 @@
0.7.8
0.7.5.201505241946
1.0b3
- 1.7.0
+ 1.7.4
1.4.0.wso2v1
1.7.25
@@ -2208,8 +2207,6 @@
[1.6.0, 2.0.0)
[1.2.0,1.3.0)
-
- true