Re: [VOTE] Release Apache Maven Reporting Implementation version 2.4

2015-07-02 Thread Tamas Cservenak
+1 --  Thanks, ~t~ On 3 Jul 2015 at 00:15:29, Hervé BOUTEMY (herve.bout...@free.fr) wrote: Hi, We solved 5 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317922&version=12331430 Staging repo: https://repository.apache.org/content/repositories/maven-1195/

[VOTE] Release Apache Maven PMD Plugin version 3.5

2015-07-02 Thread Dennis Lundberg
Hi, We solved 6 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317621&version=12330969 There are still a couple of issues left in JIRA: https://issues.apache.org/jira/issues/?jql=project%20%3D%2012317621%20AND%20status%20%3D%20Open%20ORDER%20BY%20key%20DESC%2C%20priori

Re: Unable to deploy to repository.apache.org using Java 6 any more

2015-07-02 Thread Dennis Lundberg
Thanks Bernd, Unfortunately that property is only available in Java 7 and newer. On Thu, Jul 2, 2015 at 11:05 PM, Bernd Eckenfels wrote: > issues.apache.org (JIRA) has the same problem. The 4096bit DHE prime > is not supported by Java (not even 1.8). It helps to disable DHE > completely in jre/l

Re: [VOTE] Release Apache Maven Reporting Implementation version 2.4

2015-07-02 Thread Tibor Digana
+1 (non-binding) -- View this message in context: http://maven.40175.n5.nabble.com/VOTE-Release-Apache-Maven-Reporting-Implementation-version-2-4-tp5839163p5839182.html Sent from the Maven Developers mailing list archive at Nabble.com. --

[GitHub] maven-surefire pull request: [SUREFIRE-1067] Nested causes conflat...

2015-07-02 Thread Tibor17
Github user Tibor17 closed the pull request at: https://github.com/apache/maven-surefire/pull/97 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

Re: [VOTE] Release Apache Maven Reporting Implementation version 2.4

2015-07-02 Thread Jason van Zyl
+1 > On Jul 2, 2015, at 6:15 PM, Hervé BOUTEMY wrote: > > Hi, > > We solved 5 issues: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317922&version=12331430 > > Staging repo: > https://repository.apache.org/content/repositories/maven-1195/ > https://repository.apache.org/

[VOTE] Release Apache Maven Reporting Implementation version 2.4

2015-07-02 Thread Hervé BOUTEMY
Hi, We solved 5 issues: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317922&version=12331430 Staging repo: https://repository.apache.org/content/repositories/maven-1195/ https://repository.apache.org/content/repositories/maven-1195/org/apache/maven/reporting/maven-reportin

Re: JAR/WAR file wasting memory if building with Maven

2015-07-02 Thread Igor Fedorenko
Maybe related https://github.com/codehaus-plexus/plexus-archiver/issues/5 -- Regards, Igor On Thu, Jul 2, 2015, at 05:11 PM, Jason van Zyl wrote: > As for how maven-archiver works exactly these days I’m not sure. Anything > I care about I have shifted over to using takari-archiver and it streams

Re: JAR/WAR file wasting memory if building with Maven

2015-07-02 Thread Jason van Zyl
As for how maven-archiver works exactly these days I’m not sure. Anything I care about I have shifted over to using takari-archiver and it streams directly to disk. But I don’t think maven-archiver spools into memory unless Kristian’s recent changes do anything in memory for the faster archive c

Re: Unable to deploy to repository.apache.org using Java 6 any more

2015-07-02 Thread Bernd Eckenfels
issues.apache.org (JIRA) has the same problem. The 4096bit DHE prime is not supported by Java (not even 1.8). It helps to disable DHE completely in jre/lib/security/java.security: jdk.tls.disabledAlgorithms=MD5, RC4, SSLv3, DSA, RSA keySize < 2048, DHE Gruss Bernd Am Thu, 25 Jun 2015 20:35:46 +

Re: svn commit: r1685226 - in /maven/plugins/trunk/maven-assembly-plugin/src: main/java/org/apache/maven/plugin/assembly/artifact/ test/java/org/apache/maven/plugin/assembly/archive/phase/ test/java/o

2015-07-02 Thread Robert Scholte
I'm working on a DependencyCollector, so we need to to change the artifactId. They all depend on a RepositorySystem from any Aether, so maven-repository-system? Only one problem: it will probably be harder to find or to recognize why/when you need it. Robert Op Sat, 13 Jun 2015 22:02:44

JAR/WAR file wasting memory if building with Maven

2015-07-02 Thread Tibor Digana
Is the content of JAR file stored in memory while building entire multi-module project? Is the stream still stored in the Heap all the time? I remember this was an issue in Maven while performing deployment or release. I would expect the stream is GCed when child A POM is completed and therefore ch

Re: Maven Core & JSR-330

2015-07-02 Thread Igor Fedorenko
maven uses eclipse sisu, which provides plexus compatibility layer on top of guice-based jsr330 implementation. you can use both plexus and jsr330 components in maven. search for references to @Named annotation to find jsr330 annotated classes. here is one totally random example https://github.com

Maven Core & JSR-330

2015-07-02 Thread Charles Moulliard
Hi This class still uses plexus for IoC - https://github.com/apache/maven/blob/master/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java but as mentioned within the doc (http://maven.apache.org/maven-jsr330.html), JSR-330 is also supported since version 3.1 of maven-core