Fixed dependency issue ant removed ant as a dependecy

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@109779 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2015-08-07 12:32:14 +00:00
parent 264d45c7a0
commit 5e8cc326ca
2 changed files with 8 additions and 14 deletions

View File

@@ -452,17 +452,11 @@
<classifier>tests</classifier> <classifier>tests</classifier>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.alfresco.test</groupId> <groupId>org.alfresco.test</groupId>
<artifactId>alfresco-testng</artifactId> <artifactId>alfresco-testng</artifactId>
<version>1.1</version> <version>1.1</version>
<scope>test</scope> <scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.2</version>
<scope>test</scope>
</dependency> </dependency>
<!-- Database drivers --> <!-- Database drivers -->
<dependency> <dependency>

View File

@@ -59,7 +59,7 @@ import org.alfresco.module.org_alfresco_module_rm.test.util.BaseRMWebScriptTestC
import org.alfresco.service.cmr.repository.InvalidNodeRefException; import org.alfresco.service.cmr.repository.InvalidNodeRefException;
import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.StoreRef; import org.alfresco.service.cmr.repository.StoreRef;
import org.apache.tools.ant.util.DateUtils; import org.apache.commons.lang3.time.DateFormatUtils;
import org.json.JSONArray; import org.json.JSONArray;
import org.json.JSONException; import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
@@ -182,8 +182,8 @@ public class ClassificationRestApiTest extends BaseRMWebScriptTestCase
assertEquals(1, editedClassificationReasonsList.size()); assertEquals(1, editedClassificationReasonsList.size());
assertTrue(editedClassificationReasonsList.contains(CLASSIFICATION_REASON_3_ID_VALUE)); assertTrue(editedClassificationReasonsList.contains(CLASSIFICATION_REASON_3_ID_VALUE));
assertEquals(DOWNGRADE.toModelString(), nodeService.getProperty(record, PROP_LAST_RECLASSIFICATION_ACTION)); assertEquals(DOWNGRADE.toModelString(), nodeService.getProperty(record, PROP_LAST_RECLASSIFICATION_ACTION));
String date1 = DateUtils.format(new Date(), ISO_DATE_FORMAT.getPattern()); String date1 = DateFormatUtils.format(new Date(), ISO_DATE_FORMAT.getPattern());
String date2 = DateUtils.format((Date) nodeService.getProperty(record, PROP_LAST_RECLASSIFY_AT), ISO_DATE_FORMAT.getPattern()); String date2 = DateFormatUtils.format((Date) nodeService.getProperty(record, PROP_LAST_RECLASSIFY_AT), ISO_DATE_FORMAT.getPattern());
assertEquals(date1, date2); assertEquals(date1, date2);
assertEquals(LAST_RECLASSIFY_BY_VALUE, nodeService.getProperty(record, PROP_LAST_RECLASSIFY_BY)); assertEquals(LAST_RECLASSIFY_BY_VALUE, nodeService.getProperty(record, PROP_LAST_RECLASSIFY_BY));
assertEquals(LAST_RECLASSIFY_REASON_VALUE, nodeService.getProperty(record, PROP_LAST_RECLASSIFY_REASON)); assertEquals(LAST_RECLASSIFY_REASON_VALUE, nodeService.getProperty(record, PROP_LAST_RECLASSIFY_REASON));