You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by "Felix Knecht (JIRA)" <se...@james.apache.org> on 2011/04/15 14:05:05 UTC

[jira] [Commented] (JAMES-980) Fix the possibility to build submodules only

    [ https://issues.apache.org/jira/browse/JAMES-980?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13020280#comment-13020280 ] 

Felix Knecht commented on JAMES-980:
------------------------------------

Assuming we have an empty local maven repository, we'll run into following problem:

Most of the submodules are referencing as parent the server-root pom, which is a snapshot version.

  <parent>
    <artifactId>james-server</artifactId>
    <groupId>org.apache.james</groupId>
    <version>3.0-M3-SNAPSHOT</version>
  </parent>

But as snapshot repository isn't defined by maven default we will need to add it to each submodul pom.xml ->

<repositories>
  <repository>
    <id>apache.snapshots</id>
    <name>Apache Snapshot Repository</name>
    <url>http://repository.apache.org/snapshots</url>
    <releases>
      <enabled>false</enabled>
    </releases>
  </repository>
</repositories>

If this is wanted and will solve this issue I can do so.

WDOT?

> Fix the possibility to build submodules only 
> ---------------------------------------------
>
>                 Key: JAMES-980
>                 URL: https://issues.apache.org/jira/browse/JAMES-980
>             Project: JAMES Server
>          Issue Type: Bug
>          Components: Build System
>            Reporter: Norman Maurer
>
> At the moment its only possible to build james when do the build in the root folder of it. It should be possible to only build a submodule by change into it and execute the build there.. 

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org