You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by "David Johnson (JIRA)" <ji...@apache.org> on 2009/11/23 15:55:39 UTC

[jira] Created: (ROL-1849) Mavenize Roller

Mavenize Roller
---------------

                 Key: ROL-1849
                 URL: https://issues.apache.org/jira/browse/ROL-1849
             Project: Roller
          Issue Type: Improvement
          Components: Build Process
            Reporter: David Johnson
            Assignee: David Johnson
             Fix For: 5.0


Convert Roller over to Maven using standard Maven directory structure.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801405#action_12801405 ] 

Dave Johnson edited comment on ROL-1849 at 1/17/10 2:22 PM:
------------------------------------------------------------

Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
   http://markmail.org/message/xeaxln3otkhesjxm



      was (Author: snoopdave):
    Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
"http://mail-archives.apache.org/mod_mbox/roller-dev/201001.mbox/<81...@mail.gmail.com>"


  
> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (ROL-1849) Mavenize Roller

Posted by "David Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12786415#action_12786415 ] 

David Johnson commented on ROL-1849:
------------------------------------

I'm making good progress on this and hope to have something ready to commit in the next week.

I'm breaking Roller up into these modules:

   roller-core
   planet-business
   planet-web
   weblogger-business
   weblogger-web

Currently, I have all modules except for the *-web ones building and successfully executing all tests.


> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801405#action_12801405 ] 

Dave Johnson edited comment on ROL-1849 at 1/17/10 2:20 PM:
------------------------------------------------------------

Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
<ht...@mail.gmail.com>>



      was (Author: snoopdave):
    Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
http://mail-archives.apache.org/mod_mbox/roller-dev/201001.mbox/<81...@mail.gmail.com>


  
> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801407#action_12801407 ] 

Dave Johnson commented on ROL-1849:
-----------------------------------

Added some of the fixed suggested by Matt, in particular I fixed these items:

* <type>jar</type> is unnecessary since it's the default. Same goes
for <scope>compile</scope>.

* An XSD on <project> might give IDEs better support for Maven.

* I get "[WARNING] Using platform encoding (MacRoman actually) to copy
filtered resources" when running "mvn install". Adding
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> to
the <properties> section will fix this.



> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801405#action_12801405 ] 

Dave Johnson edited comment on ROL-1849 at 1/17/10 2:21 PM:
------------------------------------------------------------

Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
"http://mail-archives.apache.org/mod_mbox/roller-dev/201001.mbox/<81...@mail.gmail.com>"



      was (Author: snoopdave):
    Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
<ht...@mail.gmail.com>>


  
> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (ROL-1849) Mavenize Roller

Posted by "David Johnson (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on ROL-1849 started by David Johnson.

> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801405#action_12801405 ] 

Dave Johnson commented on ROL-1849:
-----------------------------------

Mavenized Roller is now in trunk, here is the initial commit.

URL: http://svn.apache.org/viewvc?rev=895623&view=rev
Log: SVN merge of Mavenized Roller seems to be complete

I'm still working on reducing the number of jars in WEB-INF/lib, following Maven best practices, etc.

Matt Raible made some good suggestions in this email thread:
http://mail-archives.apache.org/mod_mbox/roller-dev/201001.mbox/<81...@mail.gmail.com>



> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dave Johnson resolved ROL-1849.
-------------------------------

         Resolution: Fixed
    Level of effort: 40 hours over a couple of months

Mavenization is now complete and jetty:run-war is working on MacOS and WinXP.

If you have Maven 2.0.9 or later and a Subversion client, it is now possible to fetch Roller source, build the code and run the unit tests with these commands:

   svn co https://svn.apache.org/repos/asf/roller/trunk roller_trunk
   cd roller_trunk
   mvn install

If you want to run Roller for development testing, you can use this command which will start Jetty, start Derby and start Roller:

   cd weblogger-web
   mvn jetty:run-war

Once you've done that, browse to http://localhost:8080/roller to run Roller. Note that this is for development testing only -- any changes you save in Roller will be deleted the next time you run mvn clean.

> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (ROL-1849) Mavenize Roller

Posted by "Dave Johnson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ROL-1849?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801407#action_12801407 ] 

Dave Johnson edited comment on ROL-1849 at 1/17/10 2:26 PM:
------------------------------------------------------------

URL: http://svn.apache.org/viewvc?rev=900145&view=rev
Log: Fixes to POMs suggested by Matt Raible

Added some of the fixed suggested by Matt, in particular I fixed these items:

* <type>jar</type> is unnecessary since it's the default. Same goes
for <scope>compile</scope>.

* An XSD on <project> might give IDEs better support for Maven.

* I get "[WARNING] Using platform encoding (MacRoman actually) to copy
filtered resources" when running "mvn install". Adding
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> to
the <properties> section will fix this.



      was (Author: snoopdave):
    Added some of the fixed suggested by Matt, in particular I fixed these items:

* <type>jar</type> is unnecessary since it's the default. Same goes
for <scope>compile</scope>.

* An XSD on <project> might give IDEs better support for Maven.

* I get "[WARNING] Using platform encoding (MacRoman actually) to copy
filtered resources" when running "mvn install". Adding
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> to
the <properties> section will fix this.


  
> Mavenize Roller
> ---------------
>
>                 Key: ROL-1849
>                 URL: https://issues.apache.org/jira/browse/ROL-1849
>             Project: Roller
>          Issue Type: Improvement
>          Components: Build Process
>            Reporter: David Johnson
>            Assignee: David Johnson
>             Fix For: 5.0
>
>
> Convert Roller over to Maven using standard Maven directory structure.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.