cancel
Showing results for 
Search instead for 
Did you mean: 

DemoComponentTest fails when executed within Eclipse (Run as Junit Test)

sujaypillai
Confirmed Champ
Confirmed Champ
Hello All,

I just configured the AMP archetype project and then imported it to Eclipse. Within the eclipse when I try to
Project > Run As > Maven Test (or Maven Install) the tests get executed properly. But if I choose Project > Run As > JUnit Test
it fails with the below statck trace -

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'changeme.exampleComponent' is defined
   at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:529)
   at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1094)
   at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:276)
   at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:192)
   at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1075)
   at org.alfresco.demoamp.test.DemoComponentTest.initAppContext(DemoComponentTest.java:46)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
   at java.lang.reflect.Method.invoke(Method.java:597)
   at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
   at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
   at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
   at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27)
   at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
   at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
   at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
   at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
   at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
   at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
   at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

Can someone please help me in pointing out what piece I am misssing?
4 REPLIES 4

mibesis
Champ on-the-rise
Champ on-the-rise
Post pom.xml and Spring Context XML file. Smiley Wink

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.jabil</groupId>
   <artifactId>abc</artifactId>
   <version>1.0-SNAPSHOT</version>
   <name>abc AMP project</name>
   <packaging>amp</packaging>
   <description>Manages the lifecycle of the abc AMP (Alfresco Module Package)</description>
   <build>
      <pluginManagement>
         <plugins>
            <plugin>
               <groupId>org.eclipse.m2e</groupId>
               <artifactId>lifecycle-mapping</artifactId>
               <version>1.0.0</version>
               <configuration>
                  <lifecycleMappingMetadata>
                     <pluginExecutions>
                        <pluginExecution>
                           <pluginExecutionFilter>
                              <groupId>org.alfresco.maven.plugin</groupId>
                              <artifactId>alfresco-maven-plugin</artifactId>
                              <versionRange>[0.0.0,)</versionRange>
                              <goals>
                                 <goal>set-version</goal>
                              </goals>
                           </pluginExecutionFilter>
                           <action>
                              <execute>
                                 <runOnIncremental>false</runOnIncremental>
                              </execute>
                           </action>
                        </pluginExecution>
                     </pluginExecutions>
                  </lifecycleMappingMetadata>
               </configuration>
            </plugin>
         </plugins>
      </pluginManagement>
   </build>
   <parent>
      <groupId>org.alfresco.maven</groupId>
      <artifactId>alfresco-sdk-parent</artifactId>
      <version>1.0.2</version>
   </parent>

   <!– | SDK properties have sensible defaults in the SDK parent, | but you
      can override the properties below to use another version. | For more available
      properties see the alfresco-sdk-parent POM. –>
   <properties>
      <!– Defines the alfresco edition to compile against. Allowed values are
         [org.alfresco|org.alfresco.enterprise] –>
      <alfresco.groupId>org.alfresco.enterprise</alfresco.groupId>
      <!– Defines the alfresco version to compile against –>
      <alfresco.version>4.1.5</alfresco.version>
      <app.log.root.level>WARN</app.log.root.level>
      <alfresco.data.location>alf_data_dev</alfresco.data.location>
      <!– Defines the target WAR artifactId to run this amp, only used with
         the -Pamp-to-war switch . | Allowed values: alfresco | share. Defaults to
         a repository AMP, but could point to your foundation WAR –>
      <alfresco.client.war>alfresco</alfresco.client.war>
      <!– Defines the target WAR groupId to run this amp, only used with the
         -Pamp-to-war switch . | Could be org.alfresco | org.alfresco.enterprise or
         your corporate groupId –>
      <alfresco.client.war.groupId>org.alfresco.enterprise</alfresco.client.war.groupId>
      <!– Defines the target WAR version to run this amp, only used with the
         -Pamp-to-war switch –>
      <alfresco.client.war.version>4.1.5</alfresco.client.war.version>
      <!– This controls which properties will be picked in src/test/properties
         for embedded run –>
      <env>local</env>
   </properties>

   <!– Here we realize the connection with the Alfresco selected platform
      (e.g.version and edition) –>
   <dependencyManagement>
      <dependencies>
         <!– This will import the dependencyManagement for all artifacts in the
            selected Alfresco version/edition (see http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Importing_Depe...)
            NOTE: You still need to define dependencies in your POM, but you can omit
            version as it's enforced by this dependencyManagement. NOTE: It defaults
            to the latest version this SDK pom has been tested with, but alfresco version
            can/should be overridden in your project's pom –>
         <dependency>
            <groupId>${alfresco.groupId}</groupId>
            <artifactId>alfresco-platform-distribution</artifactId>
            <version>${alfresco.version}</version>
            <type>pom</type>
            <scope>import</scope>
         </dependency>
         <dependency>
             <groupId>edu.ucar</groupId>
             <artifactId>netcdf</artifactId>
             <version>4.2</version>
             <exclusions>
                <exclusion>
                        <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-api</artifactId>
                </exclusion>
             </exclusions>
         </dependency>
      </dependencies>
   </dependencyManagement>
   <!– Following dependencies are needed for compiling Java code in src/main/java;
      <scope>provided</scope> is inherited for each of the following; for more
      info, please refer to alfresco-platform-distribution POM –>
   <dependencies>
      <dependency>
         <groupId>${alfresco.groupId}</groupId>
         <artifactId>alfresco-repository</artifactId>
      </dependency>
      <!– Test dependencies –>
      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>4.8.1</version>
         <scope>test</scope>
      </dependency>
   </dependencies>

   <!– This repository is only needed to retrieve Alfresco parent POM. NOTE:
      This can be removed when/if Alfresco will be on Maven Central NOTE: The repository
      to be used for Alfresco Enterprise artifacts is https://artifacts.alfresco.com/nexus/content/groups/private/.
      Please check with Alfresco Support to get credentials to add to your ~/.m2/settings.xml
      if you are a Enterprise customer or Partner –>
   <repositories>
      <!– <repository> <id>alfresco-public</id> <url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
         </repository> <repository> <id>alfresco-public-snapshots</id> <url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
         <snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots>
         </repository> –>
      <repository>
         <id>alfresco-artifacts-repository</id>
         <url>https://artifacts.alfresco.com/nexus/content/groups/private</url>
      </repository>
   </repositories>
</project>



Spring Context
==============

<beans>
   
    <!– A simple class that is initialized by Spring –>
    <bean id="changeme.exampleBean" class="org.alfresco.demoamp.Demo" init-method="init" />
   
    <!– A simple module component that will be executed once –>
    <bean id="changeme.exampleComponent" class="org.alfresco.demoamp.DemoComponent" parent="module.baseComponent" >
        <property name="moduleId" value="${project.artifactId}" />  <!– See module.properties –>
        <property name="name" value="exampleComponent" />
        <property name="description" value="A demonstration component" />
        <property name="sinceVersion" value="2.0" />
        <property name="appliesFromVersion" value="2.0" />
        <property name="nodeService" ref="NodeService" />
        <property name="nodeLocatorService" ref="nodeLocatorService" />
    </bean>
   
   
</beans>

mibesis
Champ on-the-rise
Champ on-the-rise
Hi,

I do not use/know "AMP archetype project". XML looks OK, can you also paste JUnit test Java source. I suspect, you do not include this XML file – Do you use

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "/path/to/test-spring-context.xml" })

sujaypillai
Confirmed Champ
Confirmed Champ
Below is the Test Class - DemoComponentTest.java

public class DemoComponentTest {
   
    private static final String ADMIN_USER_NAME = "admin";
    static Logger log = Logger.getLogger(DemoComponentTest.class);
    protected static ApplicationContext applicationContext;  
    protected static DemoComponent demoComponent;   
    protected static NodeService nodeService;
       
    @BeforeClass
    public static void initAppContext()
    {
        // TODO: Make testing properly working without need for helpers
        // TODO: Provide this in an SDK base class
        ApplicationContextHelper.setUseLazyLoading(false);
        ApplicationContextHelper.setNoAutoStart(true);
       
        applicationContext = ApplicationContextHelper.getApplicationContext(new String[] { "classpath:alfresco/application-context.xml" });
      
        demoComponent = (DemoComponent) applicationContext.getBean("changeme.exampleComponent");

        nodeService = (NodeService) applicationContext.getBean("NodeService");
        AuthenticationUtil.setFullyAuthenticatedUser(ADMIN_USER_NAME);
        log.debug("Sample test logging: If you see this message, means your unit test logging is properly configured. Change it in test-log4j.properties");
        log.debug("Sample test logging: Application Context properly loaded");
    }
   
    @Test
    public void testWiring() {
        assertNotNull(demoComponent);
    }
   
    @Test
    public void testGetCompanyHome() {
        NodeRef companyHome = demoComponent.getCompanyHome();
        assertNotNull(companyHome);
        String companyHomeName = (String) nodeService.getProperty(companyHome, ContentModel.PROP_NAME);
        assertNotNull(companyHomeName);
        assertEquals("Company Home", companyHomeName);
    }
   
    @Test
    public void testChildNodesCount() {
        NodeRef companyHome = demoComponent.getCompanyHome();
        int childNodeCount = demoComponent.childNodesCount(companyHome);
        assertNotNull(childNodeCount);
        // There are 5 folders by default under Company Home
        assertEquals(6, childNodeCount);
    }
   
}


FYI… This test class runs fine if executed from the command propmt by issuing <strong>mvn -Dtest=DemoComponentTest test</strong> and the output is as below
<blockquote>
C:\mavenalfresco\abc>mvn -Dtest=DemoComponentTest test
[INFO] Scanning for projects…
[INFO]
[INFO] ————————————————————————
[INFO] Building abc AMP project 1.0-SNAPSHOT
[INFO] ————————————————————————
Downloading: https://artifacts.alfresco.com/nexus/content/groups/internal/org/jvnet/staxex/stax-ex/maven-metadata...
[WARNING] Could not transfer metadata org.jvnet.staxex:stax-ex/maven-metadata.xml from/to alfresco-internal (https://art
ifacts.alfresco.com/nexus/content/groups/internal😞 Not authorized, ReasonPhrase:Unauthorized.
[INFO]
[INFO] — alfresco-maven-plugin:1.0.2:set-version (default-set-version) @ abc —
[INFO] Removed -SNAPSHOT suffix from version - 1.0
[INFO] Added timestamp to version - 1.0.1309171631
[INFO]
[INFO] — build-helper-maven-plugin:1.7:add-test-resource (add-env-test-properties) @ abc —
[INFO]
[INFO] — maven-resources-plugin:2.6:resources (default-resources) @ abc —
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\mavenalfresco\abc\src\main\resources
[INFO] Copying 13 resources to ../abc
[INFO]
[INFO] — maven-resources-plugin:2.6:copy-resources (filter-jetty-conf) @ abc —
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] — maven-compiler-plugin:3.0:compile (default-compile) @ abc —
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] — maven-resources-plugin:2.6:testResources (default-testResources) @ abc —
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 1 resource
[INFO]
[INFO] — maven-resources-plugin:2.6:copy-resources (prepare-amp-testing-classpath) @ abc —
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 6 resources
[INFO] Copying 1 resource to alfresco/module/abc
[INFO]
[INFO] — maven-compiler-plugin:3.0:testCompile (default-testCompile) @ abc —
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to C:\mavenalfresco\abc\target\test-classes
[INFO]
[INFO] — maven-surefire-plugin:2.13:test (default-test) @ abc —
[INFO] Surefire report directory: C:\mavenalfresco\abc\target\surefire-reports

——————————————————-
T E S T S
——————————————————-
Running org.alfresco.demoamp.test.DemoComponentTest
Preventing the autostart of Subsystem Search
Preventing the autostart of Subsystem solr
Preventing the autostart of Subsystem lucene
Preventing the autostart of Subsystem noindex
Preventing the autostart of Subsystem thirdparty
Preventing the autostart of Subsystem OOoDirect
Preventing the autostart of Subsystem fileServers
Preventing the autostart of Subsystem imap
Preventing the autostart of Subsystem OutboundSMTP
Preventing the autostart of Subsystem InboundSMTP
Preventing the autostart of Subsystem googledocs
Preventing the autostart of Subsystem subscriptions
Preventing the autostart of Subsystem Synchronization
Preventing the autostart of Subsystem Audit
Preventing the autostart of Subsystem ActivitiesFeed
Preventing the autostart of Subsystem Replication
2013-09-17 16:32:02,853  WARN  [alfresco.util.RuntimeSystemPropertiesSetter] [main] Could not find alfresco-jmxrmi.passw
ord on classpath
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/mavenrepo/repository/org/slf4j/slf4j-log4j12/1.5.11/slf4j-log4j12-1.5.11.jar!/org/
slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/D:/mavenrepo/repository/edu/ucar/netcdf/4.2/netcdf-4.2.jar!/org/slf4j/impl/StaticLogg
erBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2013-09-17 16:32:03,619  INFO  [alfresco.repo.admin] [main] Using database URL 'jdbc:h2:./alf_data_dev/h2_data/alf_dev;M
ODE=PostgreSQL;AUTO_SERVER=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=10000;MVCC=TRUE' with user 'alfresco'.
2013-09-17 16:32:09,294  INFO  [alfresco.repo.admin] [main] Connected to database H2 version 1.3.170 (2012-11-30)
2013-09-17 16:32:12,921  INFO  [management.subsystems.ChildApplicationContextFactory] [main] Starting 'sysAdmin' subsys
tem, ID: [sysAdmin, default]
2013-09-17 16:32:12,939  INFO  [management.subsystems.ChildApplicationContextFactory] [main] Startup of 'sysAdmin' subs
ystem, ID: [sysAdmin, default] complete
Sep 17, 2013 4:32:18 PM org.activiti.engine.impl.ProcessEngineImpl <init>
INFO: ProcessEngine default created
2013-09-17 16:32:18,696  WARN  [alfresco.util.AbstractTriggerBean] [main] Job ehCacheTracerJob is not active
SDK Demo AMP class has been loaded…
2013-09-17 16:32:20,485  INFO  [domain.schema.SchemaBootstrap] [main] Connecting to database: jdbc:h2:./alf_data_dev/h2_
data/alf_dev, UserName=ALFRESCO, H2 JDBC Driver
2013-09-17 16:32:20,485  INFO  [domain.schema.SchemaBootstrap] [main] Schema managed by database dialect org.hibernate.
dialect.H2Dialect.
2013-09-17 16:32:20,766  INFO  [domain.schema.SchemaBootstrap] [main] No changes were made to the schema.
Sep 17, 2013 4:32:20 PM org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
INFO: JobAcquisitionThread starting to acquire jobs
2013-09-17 16:32:21,225  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have a
n assignment
2013-09-17 16:32:21,244  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,311  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,312  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,350  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,351  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,386  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,388  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,419  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,420  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,447  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,449  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,467  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,468  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,486  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,487  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,506  WARN  [jpdl.xml.JpdlXmlReader] [main] process xml warning: swimlane 'initiator' does not have
an assignment
2013-09-17 16:32:21,507  WARN  [jpdl.xml.JpdlXmlReader] [main] process parse warning: swimlane 'initiator' does not hav
e an assignment
2013-09-17 16:32:21,547  INFO  [management.subsystems.ChildApplicationContextFactory] [main] Starting 'Search' subsyste
m, ID: [Search, managed, lucene]
2013-09-17 16:32:21,734  INFO  [management.subsystems.ChildApplicationContextFactory] [main] Startup of 'Search' subsys
tem, ID: [Search, managed, lucene] complete
2013-09-17 16:32:22,182  INFO  [repo.admin.ConfigurationChecker] [main] The Alfresco root data directory ('dir.root') i
s: alf_data_dev
2013-09-17 16:32:22,326  INFO  [admin.patch.PatchExecuter] [main] Checking for patches to apply …
2013-09-17 16:32:22,743  INFO  [admin.patch.PatchExecuter] [main] No patches were required.
2013-09-17 16:32:22,750  INFO  [repo.module.ModuleServiceImpl] [main] Found 1 module(s).
2013-09-17 16:32:22,777  INFO  [repo.module.ModuleServiceImpl] [main] Upgrading module 'abc' version 1.0.1309171631 (wa
s 1.0.1309171609).
2013-09-17 16:32:22,944  INFO  [repo.usage.UserUsageTrackingComponent] [main] Disabled - clear non-missing user usages

2013-09-17 16:32:22,949  INFO  [repo.usage.UserUsageTrackingComponent] [main] Found 0 users to clear
2013-09-17 16:32:22,949  INFO  [repo.usage.UserUsageTrackingComponent] [main] … cleared non-missing usages for 0 user
s
2013-09-17 16:32:23,001  INFO  [service.descriptor.DescriptorService] [main] Alfresco JVM - v1.6.0_25-b06; maximum heap
size 1354.688MB
2013-09-17 16:32:23,002  INFO  [service.descriptor.DescriptorService] [main] Alfresco started (Enterprise). Current ver
sion: 4.1.5 (r52063-b80) schema 5,120. Originally installed version: 4.1.5 (r52063-b80) schema 5,120.
2013-09-17 16:32:24,695  INFO  [extensions.webscripts.DeclarativeRegistry] [main] Registered 13 Web Scripts (+0 failed)
, 15 URLs
2013-09-17 16:32:24,695  INFO  [extensions.webscripts.DeclarativeRegistry] [main] Registered 1 Package Description Docu
ments (+0 failed)
2013-09-17 16:32:24,695  INFO  [extensions.webscripts.DeclarativeRegistry] [main] Registered 0 Schema Description Docum
ents (+0 failed)
2013-09-17 16:32:24,697  INFO  [extensions.webscripts.AbstractRuntimeContainer] [main] Initialised Spring Web Scripts C
ontainer Web Script Container (in 79.71406ms)
2013-09-17 16:32:24,722  INFO  [extensions.webscripts.TemplateProcessorRegistry] [main] Registered template processor f
reemarker for extension ftl
2013-09-17 16:32:24,724  INFO  [extensions.webscripts.ScriptProcessorRegistry] [main] Registered script processor javas
cript for extension js
2013-09-17 16:32:24,724  DEBUG [demoamp.test.DemoComponentTest] [main] Sample test logging: If you see this message, me
ans your unit test logging is properly configured. Change it in test-log4j.properties
2013-09-17 16:32:24,724  DEBUG [demoamp.test.DemoComponentTest] [main] Sample test logging: Application Context properl
y loaded
2013-09-17 16:32:24,733  INFO  [management.subsystems.ChildApplicationContextFactory] [main] Starting 'Authentication'
subsystem, ID: [Authentication, managed, alfrescoNtlm1]
2013-09-17 16:32:24,790  INFO  [management.subsystems.ChildApplicationContextFactory] [main] Startup of 'Authentication
' subsystem, ID: [Authentication, managed, alfrescoNtlm1] complete
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 25.386 sec

Results :

Tests run: 3, Failures: 0, Errors: 0, Skipped: 0

[INFO] ————————————————————————
[INFO] BUILD SUCCESS
[INFO] ————————————————————————
[INFO] Total time: 34.377s
[INFO] Finished at: Tue Sep 17 16:32:25 SGT 2013
[INFO] Final Memory: 32M/317M
[INFO] ————————————————————————
</blockquote>
Getting started

Tags


Find what you came for

We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.