Hello,

I think I still missed something.

According to instructions here:

package - generates all the James distributions, packed. From the root 
directory, cd to 'container-spring/target' to have the build distribution.

I should have the latest James build, but all I got is:

apache-james-trunk jerry$ ls -lh server/container-spring/target/
total 168
drwxr-xr-x  4 jerry  staff   136B Jan  9 12:57 classes
drwxr-xr-x  3 jerry  staff   102B Jan  9 12:57 generated-sources
-rw-r--r--  1 jerry  staff   8.7K Jan  9 13:39 
james-server-container-spring-3.0-beta5-SNAPSHOT-tests.jar
-rw-r--r--  1 jerry  staff    51K Jan  9 13:39 
james-server-container-spring-3.0-beta5-SNAPSHOT.jar
drwxr-xr-x  3 jerry  staff   102B Jan  9 12:57 maven-archiver
drwxr-xr-x  3 jerry  staff   102B Jan  9 12:57 maven-shared-archive-resources
drwxr-xr-x  3 jerry  staff   102B Jan  9 12:57 maven-status
-rw-r--r--  1 jerry  staff    17K Jan  9 13:39 supplemental-models.xml
drwxr-xr-x  3 jerry  staff   102B Jan  9 12:57 test-classes

None of them seems to be the distribution package for deployment. Any 
suggestion? 

-- 
Jerry Tian
Sent with Sparrow (http://www.sparrowmailapp.com/?sig)


On Wednesday, January 9, 2013 at 1:16 PM, Jerry Tian wrote:

> Hi, Eric,
> 
> 
> After trying XML code here and there, finally got the trunk to build. 
> 
> The only change need to made is in server/pom.xml
> 
> *******************************************************
> apache-james-trunk jerry$ svn diff server/pom.xml 
> Index: server/pom.xml
> ===================================================================
> --- server/pom.xml (revision 1430655)
> +++ server/pom.xml (working copy)
> @@ -27,7 +27,7 @@
>      <parent>
>          <artifactId>james-project</artifactId>
>          <groupId>org.apache.james</groupId>
> -        <version>1.8.1</version>
> +        <version>1.8.2-SNAPSHOT</version>
>          <relativePath/>
>      </parent>
>  
> @@ -1119,6 +1119,17 @@
>                      <goals>deploy assembly:single</goals>
>                  </configuration>
>              </plugin>
> +            <plugin>
> +                <groupId>org.apache.maven.plugins</groupId>
> +                <artifactId>maven-jar-plugin</artifactId>
> +                <executions>
> +                    <execution>
> +                        <goals>
> +                            <goal>test-jar</goal>
> +                        </goals>
> +                    </execution>
> +                </executions>
> +            </plugin>
>          </plugins>
>      </build>
>  
> 
> *******************************************************
> 
> However, I am aware of the discussion that the modification should be made in 
> parent POM, in another mail thread. That method is also tried. It seems 
> somewhat the "test-jar" goal can not take effect, my guess is that build 
> plugin can only affect direct children projects? Anyway, just post the mod 
> here for reference.
> 
> BTW, in your last commit of this file, the change is made under 
> (XPath)"/project/build/pluginManagement/plugins" section, I found the working 
> ones(like jms-queue) put them under  "/project/build/plugins" section, so I 
> just duplicate them there.
> 
> *******************************************************
> apache-james-trunk jerry$ svn diff project/pom.xml 
> Index: project/pom.xml
> ===================================================================
> --- project/pom.xml (revision 1430655)
> +++ project/pom.xml (working copy)
> @@ -989,6 +989,17 @@
>          <plugins>
>              <plugin>
>                  <groupId>org.apache.maven.plugins</groupId>
> +                <artifactId>maven-jar-plugin</artifactId>
> +                <executions>
> +                    <execution>
> +                        <goals>
> +                            <goal>test-jar</goal>
> +                        </goals>
> +                    </execution>
> +                </executions>
> +            </plugin>
> +            <plugin>
> +                <groupId>org.apache.maven.plugins</groupId>
>                  <artifactId>maven-doap-plugin</artifactId>
>                  <executions>
>                      <execution>
> 
> 
> ******************************************************* 
> 
> -- 
> Jerry Tian
> Sent with Sparrow (http://www.sparrowmailapp.com/?sig)
> 
> 
> On Wednesday, January 9, 2013 at 10:33 AM, Jerry Tian wrote:
> 
> > Hi, Eric,
> > 
> > After SVN update, I still got the same error, both install and package.
> > 
> > *******************************************************
> > [INFO]                                                                      
> >    
> > [INFO] 
> > ------------------------------------------------------------------------
> > [INFO] Building Apache James Postage 0.1-SNAPSHOT
> > [INFO] 
> > ------------------------------------------------------------------------
> > [INFO] 
> > ------------------------------------------------------------------------
> > [INFO] Reactor Summary:
> > [INFO] 
> > [INFO] Apache James Project .............................. SUCCESS [0.761s]
> > [INFO] Apache James :: Server ............................ SUCCESS [0.529s]
> > [INFO] Apache James :: Server :: Data  :: API ............ SUCCESS [1.954s]
> > [INFO] Apache James :: Server :: Lifecycle API ........... SUCCESS [0.353s]
> > [INFO] Apache James :: JSieve ............................ SUCCESS [0.023s]
> > [INFO] Apache James :: jSieve :: Manager ................. SUCCESS [0.024s]
> > [INFO] Apache James :: jSieve :: Manager API ............. SUCCESS [0.222s]
> > [INFO] Apache James :: Server :: Filesystem API .......... SUCCESS [0.560s]
> > [INFO] Apache James :: Server :: Lifecycle Spring ........ SUCCESS [0.593s]
> > [INFO] Apache James :: Server :: Mailetcontainer API ..... SUCCESS [0.488s]
> > [INFO] Apache James :: Server :: Common Utilities ........ SUCCESS [0.284s]
> > [INFO] Apache James :: Protocols ......................... SUCCESS [0.132s]
> > [INFO] Apache James :: Protocols :: API .................. SUCCESS [0.516s]
> > [INFO] Apache James :: Protocols :: Netty Implementation . SUCCESS [0.421s]
> > [INFO] Apache James :: Server :: Protocols Library ....... SUCCESS [0.554s]
> > [INFO] Apache James :: Server :: Core .................... SUCCESS [0.265s]
> > [INFO] Apache James :: Mailbox ........................... SUCCESS [0.257s]
> > [INFO] Apache James :: Mailbox :: API .................... SUCCESS [1.713s]
> > [INFO] Apache James :: Mailbox :: Store Framework ........ SUCCESS [1.920s]
> > [INFO] Apache James :: Mailbox :: In Memory .............. SUCCESS [0.693s]
> > [INFO] Apache James :: Mailbox :: Tools .................. SUCCESS [0.940s]
> > [INFO] Apache James :: Server :: Container Spring ........ SUCCESS [0.903s]
> > [INFO] Apache James :: Server :: Client .................. SUCCESS [0.590s]
> > [INFO] Apache James :: Server :: DNS Service :: API ...... SUCCESS [0.386s]
> > [INFO] Apache James :: Server :: DNS Service :: Library .. SUCCESS [0.262s]
> > [INFO] Apache James :: Server :: Mail Queue :: API ....... SUCCESS [0.388s]
> > [INFO] Apache James :: Server :: Mailetcontainer Camel ... SUCCESS [0.466s]
> > [INFO] Apache James :: Mailbox :: Maildir ................ SUCCESS [0.928s]
> > [INFO] Apache James :: Server :: Mailbox Adapter ......... SUCCESS [0.401s]
> > [INFO] Apache James :: Server :: DNS Service :: Implementation  SUCCESS 
> > [0.226s]
> > [INFO] Apache James :: Server :: Data :: Library ......... SUCCESS [0.494s]
> > [INFO] Apache James :: Server :: Data :: LDAP Implementation  SUCCESS 
> > [0.204s]
> > [INFO] Apache James :: Protocols :: SMTP ................. SUCCESS [0.847s]
> > [INFO] Apache James :: Server :: SMTP .................... SUCCESS [0.660s]
> > [INFO] Apache James :: Protocols :: IMAP ................. SUCCESS [0.972s]
> > [INFO] Apache James :: Server :: IMAP .................... SUCCESS [0.394s]
> > [INFO] Apache James :: Protocols :: LMTP ................. SUCCESS [0.361s]
> > [INFO] Apache James :: Server :: LMTP .................... SUCCESS [0.506s]
> > [INFO] Apache James :: Protocols :: POP3 ................. SUCCESS [0.399s]
> > [INFO] Apache James :: Server :: POP3 .................... SUCCESS [0.391s]
> > [INFO] Apache James :: Server :: FetchMail ............... SUCCESS [0.259s]
> > [INFO] Apache James :: Server :: Mail Queue :: File ...... SUCCESS [0.220s]
> > [INFO] Apache James :: Server :: Mail Queue :: JMS ....... SUCCESS [0.592s]
> > [INFO] Apache James :: Server :: Mail Queue :: ActiveMQ .. SUCCESS [0.491s]
> > [INFO] Apache James :: jSieve :: Core .................... SUCCESS [0.463s]
> > [INFO] Apache James :: Mailets parent and aggregator ..... SUCCESS [0.830s]
> > [INFO] Apache James :: Mailet API ........................ SUCCESS [0.247s]
> > [INFO] Apache James :: Basic Mailet Toolkit .............. SUCCESS [0.458s]
> > [INFO] Apache James :: jSieve :: Mailet .................. SUCCESS [0.253s]
> > [INFO] Apache James :: Server :: Mailets ................. SUCCESS [0.557s]
> > [INFO] Apache James :: Mailbox :: JPA .................... SUCCESS [1.680s]
> > [INFO] Apache James :: Mailbox :: JCR .................... SUCCESS [0.938s]
> > [INFO] Apache James :: Mailbox :: Spring ................. SUCCESS [1.984s]
> > [INFO] Apache James :: Server :: Data :: File Persistence  SUCCESS [0.317s]
> > [INFO] Apache James :: Server :: Data :: JPA Persistence . SUCCESS [0.730s]
> > [INFO] Apache James :: Server :: Data :: JDBC Persistence  SUCCESS [0.332s]
> > [INFO] Apache James :: Server :: Data :: JCR Persistence . SUCCESS [0.347s]
> > [INFO] Apache James :: Server :: App ..................... SUCCESS [2.259s]
> > [INFO] Apache James :: Mailbox :: Zookeeper Sequence Provider  SUCCESS 
> > [0.574s]
> > [INFO] Apache JAMES MPT Project .......................... SUCCESS [0.574s]
> > [INFO] Apache JAMES MPT Main ............................. SUCCESS [8.338s]
> > [INFO] Apache James Mailbox Integration Tester ........... SUCCESS [1.298s]
> > [INFO] Apache James Hupa Parent .......................... SUCCESS [0.026s]
> > [INFO] Apache James Hupa Shared .......................... SUCCESS [0.599s]
> > [INFO] Apache James Hupa Mock ............................ SUCCESS [0.376s]
> > [INFO] Apache James Hupa Server .......................... SUCCESS [0.360s]
> > [INFO] Apache James Hupa Widgets ......................... SUCCESS [0.327s]
> > [INFO] Apache James Hupa ................................. SUCCESS [40.613s]
> > [INFO] Apache James :: jDKIM :: DomainKey Project ........ SUCCESS [0.016s]
> > [INFO] Apache James :: jDKIM ............................. SUCCESS [1.017s]
> > [INFO] Apache James :: jDKIM :: Mailets .................. SUCCESS [0.297s]
> > [INFO] Apache James :: jDKIM :: Assembly ................. SUCCESS [2.812s]
> > [INFO] Apache JAMES jSPF ................................. SUCCESS [0.018s]
> > [INFO] Apache JAMES OpenSPF Tester ....................... SUCCESS [4.242s]
> > [INFO] Apache JAMES jSPF Resolver ........................ SUCCESS [6.753s]
> > [INFO] Apache JAMES jSPF Assembly ........................ SUCCESS [3.254s]
> > [INFO] Apache JAMES MPT AntLib ........................... SUCCESS [3.159s]
> > [INFO] Apache JAMES MPT Application ...................... SUCCESS [3.108s]
> > [INFO] Apache JAMES MPT Assembly ......................... SUCCESS [3.567s]
> > [INFO] Apache JAMES MPT Maven2 Plugin .................... SUCCESS [2.835s]
> > [INFO] Apache JAMES Mime4j Project ....................... SUCCESS [0.773s]
> > [INFO] Apache JAMES Mime4j (Core) ........................ SUCCESS [2.064s]
> > [INFO] Apache JAMES Mime4j (DOM) ......................... SUCCESS [1.725s]
> > [INFO] Apache JAMES Mime4j (Storage) ..................... SUCCESS [0.756s]
> > [INFO] Apache JAMES Mime4j (Benchmarks) .................. SUCCESS [0.587s]
> > [INFO] Apache JAMES Mime4j (Mbox Iterator) ............... SUCCESS [0.548s]
> > [INFO] Apache JAMES Mime4j (Code Examples) ............... SUCCESS [0.570s]
> > [INFO] Apache JAMES Mime4j (Assembly) .................... SUCCESS [3.499s]
> > [INFO] Apache James Postage .............................. FAILURE [0.040s]
> > [INFO] Apache James :: jSieve :: Utilities ............... SKIPPED
> > [INFO] Apache James :: jSieve :: Manager Mock ............ SKIPPED
> > [INFO] Apache James :: jSieve :: Manager Core ............ SKIPPED
> > [INFO] Apache James :: jSieve :: Manager jSieve .......... SKIPPED
> > [INFO] Apache James :: jSieve :: Manager Mailet .......... SKIPPED
> > [INFO] Apache James :: jSieve :: All ..................... SKIPPED
> > [INFO] Apache James :: Mailetdocs Maven Plugin ........... SKIPPED
> > [INFO] Apache James :: Crypto Mailets .................... SKIPPED
> > [INFO] Apache James :: Standard Mailets .................. SKIPPED
> > [INFO] Apache James :: AI Mailets ........................ SKIPPED
> > [INFO] Apache James Skin ................................. SKIPPED
> > [INFO] Apache James Project current ...................... SKIPPED
> > [INFO] 
> > ------------------------------------------------------------------------
> > [INFO] BUILD FAILURE
> > [INFO] 
> > ------------------------------------------------------------------------
> > [INFO] Total time: 2:13.033s
> > [INFO] Finished at: Wed Jan 09 10:31:39 CST 2013
> > [INFO] Final Memory: 113M/214M
> > [INFO] 
> > ------------------------------------------------------------------------
> > [ERROR] Failed to execute goal on project apache-james-postage: Could not 
> > resolve dependencies for project 
> > org.apache.james:apache-james-postage:jar:0.1-SNAPSHOT: Failure to find 
> > org.apache.james:james-server-protocols-smtp:jar:tests:3.0-beta5-SNAPSHOT 
> > in http://repository.apache.org/snapshots was cached in the local 
> > repository, resolution will not be reattempted until the update interval of 
> > apache.snapshots has elapsed or updates are forced -> [Help 1]
> > [ERROR] 
> > [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
> > switch.
> > [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> > [ERROR] 
> > [ERROR] For more information about the errors and possible solutions, 
> > please read the following articles:
> > [ERROR] [Help 1] 
> > http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
> > [ERROR] 
> > [ERROR] After correcting the problems, you can resume the build with the 
> > command
> > [ERROR]   mvn <goals> -rf :apache-james-postage
> > 
> > 
> > *******************************************************
> > 
> > Thanks. 
> > 
> > -- 
> > Jerry Tian
> > Sent with Sparrow (http://www.sparrowmailapp.com/?sig)
> > 
> > 
> > On Tuesday, January 8, 2013 at 9:48 PM, Eric Charles wrote:
> > 
> > > There may have an configuration to tune regarding the deployement of 
> > > test-jar.
> > > 
> > > In the meantime, could you try to build with "mvn install" instead of 
> > > "mvn compile" or "mvn package" (I assume you don't invoke install, 
> > > otherwise you shouldn't have that issue).
> > > 
> > > Thx in advance for your feedback,
> > > 
> > > Eric
> > > 
> > > On 08/01/2013 11:07, Jerry Tian wrote:
> > > > Hi, Eric,
> > > > 
> > > > Just updated the repo and made a clean build, it passed the previous 
> > > > modules, but failed on another one.
> > > > 
> > > > Here is the output.
> > > > 
> > > > [INFO]
> > > > [INFO] 
> > > > ------------------------------------------------------------------------
> > > > [INFO] Building Apache James Postage 0.1-SNAPSHOT
> > > > [INFO] 
> > > > ------------------------------------------------------------------------
> > > > Downloading: 
> > > > http://repository.apache.org/snapshots/org/apache/james/james-server-protocols-smtp/3.0-beta5-SNAPSHOT/maven-metadata.xml
> > > > Downloaded: 
> > > > http://repository.apache.org/snapshots/org/apache/james/james-server-protocols-smtp/3.0-beta5-SNAPSHOT/maven-metadata.xml
> > > >  (811 B at 0.5 KB/sec)
> > > > Downloading: 
> > > > http://repo.maven.apache.org/maven2/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar
> > > > Downloaded: 
> > > > http://repo.maven.apache.org/maven2/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar
> > > >  (94 KB at 59.3 KB/sec)
> > > > Downloading: 
> > > > http://repository.apache.org/snapshots/org/apache/james/james-server-protocols-smtp/3.0-beta5-SNAPSHOT/james-server-protocols-smtp-3.0-beta5-SNAPSHOT-tests.jar
> > > > [INFO] 
> > > > ------------------------------------------------------------------------
> > > > [INFO] Reactor Summary:
> > > > [INFO]
> > > > [INFO] Apache James Project .............................. SUCCESS 
> > > > [0.762s]
> > > > [INFO] Apache James :: Server ............................ SUCCESS 
> > > > [0.444s]
> > > > [INFO] Apache James :: Server :: Data :: API ............ SUCCESS 
> > > > [1.245s]
> > > > [INFO] Apache James :: Server :: Lifecycle API ........... SUCCESS 
> > > > [0.286s]
> > > > [INFO] Apache James :: JSieve ............................ SUCCESS 
> > > > [0.021s]
> > > > [INFO] Apache James :: jSieve :: Manager ................. SUCCESS 
> > > > [0.018s]
> > > > [INFO] Apache James :: jSieve :: Manager API ............. SUCCESS 
> > > > [0.175s]
> > > > [INFO] Apache James :: Server :: Filesystem API .......... SUCCESS 
> > > > [0.438s]
> > > > [INFO] Apache James :: Server :: Lifecycle Spring ........ SUCCESS 
> > > > [0.582s]
> > > > [INFO] Apache James :: Server :: Mailetcontainer API ..... SUCCESS 
> > > > [0.401s]
> > > > [INFO] Apache James :: Server :: Common Utilities ........ SUCCESS 
> > > > [0.262s]
> > > > [INFO] Apache James :: Protocols ......................... SUCCESS 
> > > > [0.109s]
> > > > [INFO] Apache James :: Protocols :: API .................. SUCCESS 
> > > > [0.396s]
> > > > [INFO] Apache James :: Protocols :: Netty Implementation . SUCCESS 
> > > > [0.353s]
> > > > [INFO] Apache James :: Server :: Protocols Library ....... SUCCESS 
> > > > [0.490s]
> > > > [INFO] Apache James :: Server :: Core .................... SUCCESS 
> > > > [0.236s]
> > > > [INFO] Apache James :: Mailbox ........................... SUCCESS 
> > > > [0.230s]
> > > > [INFO] Apache James :: Mailbox :: API .................... SUCCESS 
> > > > [1.803s]
> > > > [INFO] Apache James :: Mailbox :: Store Framework ........ SUCCESS 
> > > > [1.803s]
> > > > [INFO] Apache James :: Mailbox :: In Memory .............. SUCCESS 
> > > > [0.615s]
> > > > [INFO] Apache James :: Mailbox :: Tools .................. SUCCESS 
> > > > [0.898s]
> > > > [INFO] Apache James :: Server :: Container Spring ........ SUCCESS 
> > > > [0.866s]
> > > > [INFO] Apache James :: Server :: Client .................. SUCCESS 
> > > > [0.578s]
> > > > [INFO] Apache James :: Server :: DNS Service :: API ...... SUCCESS 
> > > > [0.293s]
> > > > [INFO] Apache James :: Server :: DNS Service :: Library .. SUCCESS 
> > > > [0.229s]
> > > > [INFO] Apache James :: Server :: Mail Queue :: API ....... SUCCESS 
> > > > [0.339s]
> > > > [INFO] Apache James :: Server :: Mailetcontainer Camel ... SUCCESS 
> > > > [0.443s]
> > > > [INFO] Apache James :: Mailbox :: Maildir ................ SUCCESS 
> > > > [0.673s]
> > > > [INFO] Apache James :: Server :: Mailbox Adapter ......... SUCCESS 
> > > > [0.342s]
> > > > [INFO] Apache James :: Server :: DNS Service :: Implementation SUCCESS 
> > > > [0.244s]
> > > > [INFO] Apache James :: Server :: Data :: Library ......... SUCCESS 
> > > > [0.471s]
> > > > [INFO] Apache James :: Server :: Data :: LDAP Implementation SUCCESS 
> > > > [0.213s]
> > > > [INFO] Apache James :: Protocols :: SMTP ................. SUCCESS 
> > > > [0.960s]
> > > > [INFO] Apache James :: Server :: SMTP .................... SUCCESS 
> > > > [0.624s]
> > > > [INFO] Apache James :: Protocols :: IMAP ................. SUCCESS 
> > > > [0.968s]
> > > > [INFO] Apache James :: Server :: IMAP .................... SUCCESS 
> > > > [0.369s]
> > > > [INFO] Apache James :: Protocols :: LMTP ................. SUCCESS 
> > > > [0.281s]
> > > > [INFO] Apache James :: Server :: LMTP .................... SUCCESS 
> > > > [0.530s]
> > > > [INFO] Apache James :: Protocols :: POP3 ................. SUCCESS 
> > > > [0.283s]
> > > > [INFO] Apache James :: Server :: POP3 .................... SUCCESS 
> > > > [0.368s]
> > > > [INFO] Apache James :: Server :: FetchMail ............... SUCCESS 
> > > > [0.250s]
> > > > [INFO] Apache James :: Server :: Mail Queue :: File ...... SUCCESS 
> > > > [0.185s]
> > > > [INFO] Apache James :: Server :: Mail Queue :: JMS ....... SUCCESS 
> > > > [0.555s]
> > > > [INFO] Apache James :: Server :: Mail Queue :: ActiveMQ .. SUCCESS 
> > > > [0.511s]
> > > > [INFO] Apache James :: jSieve :: Core .................... SUCCESS 
> > > > [0.500s]
> > > > [INFO] Apache James :: Mailets parent and aggregator ..... SUCCESS 
> > > > [0.148s]
> > > > [INFO] Apache James :: Mailet API ........................ SUCCESS 
> > > > [0.081s]
> > > > [INFO] Apache James :: Basic Mailet Toolkit .............. SUCCESS 
> > > > [0.337s]
> > > > [INFO] Apache James :: jSieve :: Mailet .................. SUCCESS 
> > > > [0.261s]
> > > > [INFO] Apache James :: Server :: Mailets ................. SUCCESS 
> > > > [0.576s]
> > > > [INFO] Apache James :: Mailbox :: JPA .................... SUCCESS 
> > > > [1.424s]
> > > > [INFO] Apache James :: Mailbox :: JCR .................... SUCCESS 
> > > > [0.908s]
> > > > [INFO] Apache James :: Mailbox :: Spring ................. SUCCESS 
> > > > [2.336s]
> > > > [INFO] Apache James :: Server :: Data :: File Persistence SUCCESS 
> > > > [0.369s]
> > > > [INFO] Apache James :: Server :: Data :: JPA Persistence . SUCCESS 
> > > > [0.719s]
> > > > [INFO] Apache James :: Server :: Data :: JDBC Persistence SUCCESS 
> > > > [0.322s]
> > > > [INFO] Apache James :: Server :: Data :: JCR Persistence . SUCCESS 
> > > > [0.323s]
> > > > [INFO] Apache James :: Server :: App ..................... SUCCESS 
> > > > [2.477s]
> > > > [INFO] Apache James :: Mailbox :: Zookeeper Sequence Provider SUCCESS 
> > > > [0.641s]
> > > > [INFO] Apache JAMES MPT Project .......................... SUCCESS 
> > > > [0.599s]
> > > > [INFO] Apache JAMES MPT Main ............................. SUCCESS 
> > > > [9.101s]
> > > > [INFO] Apache James Mailbox Integration Tester ........... SUCCESS 
> > > > [1.425s]
> > > > [INFO] Apache James Hupa Parent .......................... SUCCESS 
> > > > [0.040s]
> > > > [INFO] Apache James Hupa Shared .......................... SUCCESS 
> > > > [0.687s]
> > > > [INFO] Apache James Hupa Mock ............................ SUCCESS 
> > > > [0.414s]
> > > > [INFO] Apache James Hupa Server .......................... SUCCESS 
> > > > [0.406s]
> > > > [INFO] Apache James Hupa Widgets ......................... SUCCESS 
> > > > [0.357s]
> > > > [INFO] Apache James Hupa ................................. SUCCESS 
> > > > [41.288s]
> > > > [INFO] Apache James :: jDKIM :: DomainKey Project ........ SUCCESS 
> > > > [0.008s]
> > > > [INFO] Apache James :: jDKIM ............................. SUCCESS 
> > > > [0.765s]
> > > > [INFO] Apache James :: jDKIM :: Mailets .................. SUCCESS 
> > > > [0.241s]
> > > > [INFO] Apache James :: jDKIM :: Assembly ................. SUCCESS 
> > > > [4.063s]
> > > > [INFO] Apache JAMES jSPF ................................. SUCCESS 
> > > > [0.012s]
> > > > [INFO] Apache JAMES OpenSPF Tester ....................... SUCCESS 
> > > > [3.678s]
> > > > [INFO] Apache JAMES jSPF Resolver ........................ SUCCESS 
> > > > [6.336s]
> > > > [INFO] Apache JAMES jSPF Assembly ........................ SUCCESS 
> > > > [3.261s]
> > > > [INFO] Apache JAMES MPT AntLib ........................... SUCCESS 
> > > > [3.039s]
> > > > [INFO] Apache JAMES MPT Application ...................... SUCCESS 
> > > > [3.177s]
> > > > [INFO] Apache JAMES MPT Assembly ......................... SUCCESS 
> > > > [3.966s]
> > > > [INFO] Apache JAMES MPT Maven2 Plugin .................... SUCCESS 
> > > > [2.858s]
> > > > [INFO] Apache JAMES Mime4j Project ....................... SUCCESS 
> > > > [0.409s]
> > > > [INFO] Apache JAMES Mime4j (Core) ........................ SUCCESS 
> > > > [1.887s]
> > > > [INFO] Apache JAMES Mime4j (DOM) ......................... SUCCESS 
> > > > [2.972s]
> > > > [INFO] Apache JAMES Mime4j (Storage) ..................... SUCCESS 
> > > > [0.768s]
> > > > [INFO] Apache JAMES Mime4j (Benchmarks) .................. SUCCESS 
> > > > [0.555s]
> > > > [INFO] Apache JAMES Mime4j (Mbox Iterator) ............... SUCCESS 
> > > > [0.438s]
> > > > [INFO] Apache JAMES Mime4j (Code Examples) ............... SUCCESS 
> > > > [0.571s]
> > > > [INFO] Apache JAMES Mime4j (Assembly) .................... SUCCESS 
> > > > [3.745s]
> > > > [INFO] Apache James Postage .............................. FAILURE 
> > > > [3.928s]
> > > > [INFO] Apache James :: jSieve :: Utilities ............... SKIPPED
> > > > [INFO] Apache James :: jSieve :: Manager Mock ............ SKIPPED
> > > > [INFO] Apache James :: jSieve :: Manager Core ............ SKIPPED
> > > > [INFO] Apache James :: jSieve :: Manager jSieve .......... SKIPPED
> > > > [INFO] Apache James :: jSieve :: Manager Mailet .......... SKIPPED
> > > > [INFO] Apache James :: jSieve :: All ..................... SKIPPED
> > > > [INFO] Apache James :: Mailetdocs Maven Plugin ........... SKIPPED
> > > > [INFO] Apache James :: Crypto Mailets .................... SKIPPED
> > > > [INFO] Apache James :: Standard Mailets .................. SKIPPED
> > > > [INFO] Apache James :: AI Mailets ........................ SKIPPED
> > > > [INFO] Apache James Skin ................................. SKIPPED
> > > > [INFO] Apache James Project current ...................... SKIPPED
> > > > [INFO] 
> > > > ------------------------------------------------------------------------
> > > > [INFO] BUILD FAILURE
> > > > [INFO] 
> > > > ------------------------------------------------------------------------
> > > > [INFO] Total time: 2:16.869s
> > > > [INFO] Finished at: Tue Jan 08 19:02:06 CST 2013
> > > > [INFO] Final Memory: 114M/215M
> > > > [INFO] 
> > > > ------------------------------------------------------------------------
> > > > [ERROR] Failed to execute goal on project apache-james-postage: Could 
> > > > not resolve dependencies for project 
> > > > org.apache.james:apache-james-postage:jar:0.1-SNAPSHOT: Could not find 
> > > > artifact 
> > > > org.apache.james:james-server-protocols-smtp:jar:tests:3.0-beta5-SNAPSHOT
> > > >  in apache.snapshots (http://repository.apache.org/snapshots) -> [Help 
> > > > 1]
> > > > [ERROR]
> > > > [ERROR] To see the full stack trace of the errors, re-run Maven with 
> > > > the -e switch.
> > > > [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> > > > [ERROR]
> > > > [ERROR] For more information about the errors and possible solutions, 
> > > > please read the following articles:
> > > > [ERROR] [Help 1] 
> > > > http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
> > > > [ERROR]
> > > > [ERROR] After correcting the problems, you can resume the build with 
> > > > the command
> > > > [ERROR] mvn <goals> -rf :apache-james-postage
> > > > 
> > > 
> > > 
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org 
> > > (mailto:server-dev-unsubscr...@james.apache.org)
> > > For additional commands, e-mail: server-dev-h...@james.apache.org 
> > > (mailto:server-dev-h...@james.apache.org)
> > > 
> > > 
> > > 
> > 
> > 
> 

Reply via email to