[jira] [Commented] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Avery Ching (Commented) (JIRA)

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

Avery Ching commented on GIRAPH-129:


As long as mvn compile doesn't build the javadoc, I am happy. =)

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Assignee: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (GIRAPH-128) RPC port from BasicRPCCommunications should be only a starting port, and retried

2012-01-24 Thread jirapos...@reviews.apache.org (Commented) (JIRA)

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

jirapos...@reviews.apache.org commented on GIRAPH-128:
--


---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/3596/
---

(Updated 2012-01-24 21:53:06.906563)


Review request for giraph.


Changes
---

Updated after GIRAPH-124 was committed.


Summary
---

Simple handling of port collisions on the same machine while preserving 
debugability from the port number alone.  Round up the max number of workers to 
the next power of 10 and use it as a constant to increase the port number with.

Added a unit test to ensure it is working correctly.

Fixed 2 minor warnings on
src/main/java/org/apache/giraph/examples/MinimumIntCombiner.java
src/main/java/org/apache/giraph/examples/SimpleSumCombiner.java

of removing 'import java.util.List'.


This addresses bug GIRAPH-128.
https://issues.apache.org/jira/browse/GIRAPH-128


Diffs (updated)
-

  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/main/java/org/apache/giraph/comm/BasicRPCCommunications.java
 1235026 
  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/main/java/org/apache/giraph/examples/MinimumIntCombiner.java
 1235026 
  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/main/java/org/apache/giraph/examples/SimpleSumCombiner.java
 1235026 
  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/test/java/org/apache/giraph/comm/RPCCommunicationsTest.java
 PRE-CREATION 

Diff: https://reviews.apache.org/r/3596/diff


Testing
---

Passed local and MR unittests.


Thanks,

Avery



> RPC port from BasicRPCCommunications should be only a starting port, and 
> retried
> 
>
> Key: GIRAPH-128
> URL: https://issues.apache.org/jira/browse/GIRAPH-128
> Project: Giraph
>  Issue Type: Improvement
>Affects Versions: 0.1.0
>Reporter: Avery Ching
>Assignee: Avery Ching
> Attachments: GIRAPH-128.2.patch
>
>
> Currently Giraph uses a basic port + the task partition to get the RPC port.  
> This doesn't work well for when there are multiple Giraph jobs running 
> simultaneously in the same Hadoop cluster (port conflict).  At the same time, 
> it is nice to use this simple algorithm because it makes it very easy to 
> debug problems (you can find the troublesome mapper from the RPC port name).  
> I will be proposing a simple scheme to retry with another port.  I will round 
> the total number of mappers up to the nearest power of 10 (let's that that 
> number Z).  Then I will increment the port number by Z, retrying up to 20 
> tries.  If you have enough ports, this scheme would guarantee that up to 20 
> mappers / node would be supported.  It should be sufficient for most 
> clusters.  At the same time, we still maintain the easy debugging method 
> since you it's still easy to figure out the mapper partition from the port 
> (port % Z = map partition). 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (GIRAPH-128) RPC port from BasicRPCCommunications should be only a starting port, and retried

2012-01-24 Thread Avery Ching (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/GIRAPH-128?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Avery Ching updated GIRAPH-128:
---

Attachment: GIRAPH-128.2.patch

Updated after GIRAPH-124 was committed.

> RPC port from BasicRPCCommunications should be only a starting port, and 
> retried
> 
>
> Key: GIRAPH-128
> URL: https://issues.apache.org/jira/browse/GIRAPH-128
> Project: Giraph
>  Issue Type: Improvement
>Affects Versions: 0.1.0
>Reporter: Avery Ching
>Assignee: Avery Ching
> Attachments: GIRAPH-128.2.patch
>
>
> Currently Giraph uses a basic port + the task partition to get the RPC port.  
> This doesn't work well for when there are multiple Giraph jobs running 
> simultaneously in the same Hadoop cluster (port conflict).  At the same time, 
> it is nice to use this simple algorithm because it makes it very easy to 
> debug problems (you can find the troublesome mapper from the RPC port name).  
> I will be proposing a simple scheme to retry with another port.  I will round 
> the total number of mappers up to the nearest power of 10 (let's that that 
> number Z).  Then I will increment the port number by Z, retrying up to 20 
> tries.  If you have enough ports, this scheme would guarantee that up to 20 
> mappers / node would be supported.  It should be sufficient for most 
> clusters.  At the same time, we still maintain the easy debugging method 
> since you it's still easy to figure out the mapper partition from the port 
> (port % Z = map partition). 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




Re: Review Request: GIRAPH-128: RPC port from BasicRPCCommunications should be only a starting port, and retried

2012-01-24 Thread Avery Ching

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/3596/
---

(Updated 2012-01-24 21:53:06.906563)


Review request for giraph.


Changes
---

Updated after GIRAPH-124 was committed.


Summary
---

Simple handling of port collisions on the same machine while preserving 
debugability from the port number alone.  Round up the max number of workers to 
the next power of 10 and use it as a constant to increase the port number with.

Added a unit test to ensure it is working correctly.

Fixed 2 minor warnings on
src/main/java/org/apache/giraph/examples/MinimumIntCombiner.java
src/main/java/org/apache/giraph/examples/SimpleSumCombiner.java

of removing 'import java.util.List'.


This addresses bug GIRAPH-128.
https://issues.apache.org/jira/browse/GIRAPH-128


Diffs (updated)
-

  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/main/java/org/apache/giraph/comm/BasicRPCCommunications.java
 1235026 
  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/main/java/org/apache/giraph/examples/MinimumIntCombiner.java
 1235026 
  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/main/java/org/apache/giraph/examples/SimpleSumCombiner.java
 1235026 
  
http://svn.apache.org/repos/asf/incubator/giraph/trunk/src/test/java/org/apache/giraph/comm/RPCCommunicationsTest.java
 PRE-CREATION 

Diff: https://reviews.apache.org/r/3596/diff


Testing
---

Passed local and MR unittests.


Thanks,

Avery



[jira] [Commented] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Commented

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

André Kelpe commented on GIRAPH-129:


It's good practice to enable them by default. I am used to do continuous 
integration with a central CI server that builds new snapshot-jars on every 
commit and then you always want to have the sources and javadoc jars available.

I also tend to do everything automatically in poms I work with in contrast to 
working with lots or commandline options, b/c then you do not have to remember 
all the differences between all projects you are working on.

(P.S.: Shouldn't the version of giraph be something like 0.1-SNAPSHOT? That 
would make it easier to introduce releases via the maven-release plugin later 
on.)

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Assignee: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Jakob Homan (Commented) (JIRA)

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

Jakob Homan commented on GIRAPH-129:


In contrast to {{mvn javadoc:jar}} and {{mvn source:jar}}.  One can call those 
directly, with this change one gets them each time one builds the regular jar.

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Assignee: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Commented

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

André Kelpe commented on GIRAPH-129:


What exactly do you mean with "when directly called"?

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Assignee: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (GIRAPH-130) Fix Javadoc warnings

2012-01-24 Thread Avery Ching (Commented) (JIRA)

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

Avery Ching commented on GIRAPH-130:


It would be great to enforce this checking somehow to prevent it from happening 
at all.

> Fix Javadoc warnings
> 
>
> Key: GIRAPH-130
> URL: https://issues.apache.org/jira/browse/GIRAPH-130
> Project: Giraph
>  Issue Type: Bug
>Reporter: Jakob Homan
>Priority: Minor
>  Labels: newbie
>
> We've accumulated a fair number of javadoc warnings recently:
> {noformat}[WARNING] Javadoc Warnings
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:129:
>  warning - @param argument "superstep" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/CommunicationsInterface.java:84:
>  warning - @param argument "vertexIndex" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/CommunicationsInterface.java:84:
>  warning - @param argument "msgList" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
>  warning - Tag @link: reference not found: VertexIdMessage
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/VertexCombiner.java:46:
>  warning - Tag @link: reference not found: messages
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/VertexCombiner.java:46:
>  warning - Tag @link: reference not found: messages
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/AggregatorWriter.java:60:
>  warning - @param argument "map" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/GiraphJob.java:432:
>  warning - @param argument "graphPartitionerClass" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/VertexCombiner.java:46:
>  warning - Tag @link: reference not found: messages
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/MasterGraphPartitioner.java:62:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/MasterGraphPartitioner.java:62:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/MasterGraphPartitioner.java:62:
>  warning - @param argument "availableWorkerInfos" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/PartitionBalancer.java:176:
>  warning - @param argument "allPartitionStatsList" is not a parameter name.
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
>  warning - Tag @link: reference not found: VertexIdMessage
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
>  warning - Tag @link: reference not found: VertexIdMessage
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
>  warning - Tag @link: reference not found: VertexIdMessage
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
>  warning - Tag @link: reference not found: GraphPartitioner
> [WARNING] 
> /Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
>  warning - Tag @link: reference not found: VertexIdMessage
> {noformat}
> It would be good to fix these.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/

[jira] [Assigned] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Jakob Homan (Assigned) (JIRA)

 [ 
https://issues.apache.org/jira/browse/GIRAPH-129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jakob Homan reassigned GIRAPH-129:
--

Assignee: André Kelpe

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Assignee: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Created] (GIRAPH-130) Fix Javadoc warnings

2012-01-24 Thread Jakob Homan (Created) (JIRA)
Fix Javadoc warnings


 Key: GIRAPH-130
 URL: https://issues.apache.org/jira/browse/GIRAPH-130
 Project: Giraph
  Issue Type: Bug
Reporter: Jakob Homan
Priority: Minor


We've accumulated a fair number of javadoc warnings recently:
{noformat}[WARNING] Javadoc Warnings
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:129:
 warning - @param argument "superstep" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/CommunicationsInterface.java:84:
 warning - @param argument "vertexIndex" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/CommunicationsInterface.java:84:
 warning - @param argument "msgList" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
 warning - Tag @link: reference not found: VertexIdMessage
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/VertexCombiner.java:46:
 warning - Tag @link: reference not found: messages
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/VertexCombiner.java:46:
 warning - Tag @link: reference not found: messages
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/AggregatorWriter.java:60:
 warning - @param argument "map" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/GiraphJob.java:432:
 warning - @param argument "graphPartitionerClass" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/VertexCombiner.java:46:
 warning - Tag @link: reference not found: messages
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/MasterGraphPartitioner.java:62:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/MasterGraphPartitioner.java:62:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/MasterGraphPartitioner.java:62:
 warning - @param argument "availableWorkerInfos" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/graph/partition/PartitionBalancer.java:176:
 warning - @param argument "allPartitionStatsList" is not a parameter name.
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
 warning - Tag @link: reference not found: VertexIdMessage
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
 warning - Tag @link: reference not found: VertexIdMessage
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
 warning - Tag @link: reference not found: VertexIdMessage
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/bsp/CentralizedServiceWorker.java:146:
 warning - Tag @link: reference not found: GraphPartitioner
[WARNING] 
/Users/jhoman/repos/giraph/src/main/java/org/apache/giraph/comm/VertexIdMessagesList.java:32:
 warning - Tag @link: reference not found: VertexIdMessage
{noformat}

It would be good to fix these.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Jakob Homan (Commented) (JIRA)

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

Jakob Homan commented on GIRAPH-129:


This builds the javadoc and source jars with each run of package.  I'm ok with 
this, but is there any reason to only create these jars when directly called?

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Created] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Created
enable creation of javadoc and sources jars
---

 Key: GIRAPH-129
 URL: https://issues.apache.org/jira/browse/GIRAPH-129
 Project: Giraph
  Issue Type: Improvement
  Components: build
Affects Versions: 0.1.0
Reporter: André Kelpe
Priority: Minor
 Attachments: GIRAPH-129.patch

It is pretty useful to enable the creation if javadoc and sources jars during 
the build, so that people using IDEs like eclipse can easily jump into the code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (GIRAPH-129) enable creation of javadoc and sources jars

2012-01-24 Thread Updated

 [ 
https://issues.apache.org/jira/browse/GIRAPH-129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

André Kelpe updated GIRAPH-129:
---

Attachment: GIRAPH-129.patch

> enable creation of javadoc and sources jars
> ---
>
> Key: GIRAPH-129
> URL: https://issues.apache.org/jira/browse/GIRAPH-129
> Project: Giraph
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 0.1.0
>Reporter: André Kelpe
>Priority: Minor
> Attachments: GIRAPH-129.patch
>
>
> It is pretty useful to enable the creation if javadoc and sources jars during 
> the build, so that people using IDEs like eclipse can easily jump into the 
> code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira