Re: Maven resolver branch consolidation

2017-12-01 Thread Manfred Moser
All done on the ant-tasks migration now as well. 

Next would be a release of the ant-tasks for which I filed 
https://issues.apache.org/jira/browse/MRESOLVER-37

Imho we should do that but I don't know what is involved and wont be able to 
work on it until some time in January. 

manfred

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[GitHub] maven-scm pull request #56: [SCM-739] Use shallow clones when cloning a git ...

2017-12-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/maven-scm/pull/56


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[GitHub] maven-surefire pull request #170: [SUREFIRE-1448] Clarified specifying multi...

2017-12-01 Thread claycephas
Github user claycephas closed the pull request at:

https://github.com/apache/maven-surefire/pull/170


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[GitHub] maven-surefire issue #170: [SUREFIRE-1448] Clarified specifying multiple cat...

2017-12-01 Thread Tibor17
Github user Tibor17 commented on the issue:

https://github.com/apache/maven-surefire/pull/170
  
@claycephas 
This PR was pushed to master yesterday.
Please close this PR, Thx.


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Maven Indexer 6.0.0

2017-12-01 Thread Brian Fox
On Fri, Dec 1, 2017 at 3:19 AM, Andreas Sewe <
s...@st.informatik.tu-darmstadt.de> wrote:

> Olivier Lamy wrote:
> > probably no issues for sure.
> > I just don't know if we will be able to still download the index from
> > central and use it with this new version
> > TBH I haven't done any testing etc so it's just questions :-)
>
> FYI, my testing included downloading the index from Central (to be
> precise: its uk.maven.org mirror)


fwiw this all just points to the fastly cdn these days, so it's the same
thing you'll get using repo1.maven.org. (this url goes back to pre cdn when
we did actually have separate physical systems.



> with the staged Indexer 6.0.0. So, the
> current code its able to consume the index currently produced for
> Central, presumably by Indexer 5.x.
>
> Hope that helps.
>
> Best wishes,
>
> Andreas
>
>


[GitHub] maven-surefire issue #168: [SUREFIRE-1424] javax.transaction.TransactionMana...

2017-12-01 Thread eolivelli
Github user eolivelli commented on the issue:

https://github.com/apache/maven-surefire/pull/168
  
@Tibor17 please check it out


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[GitHub] maven-surefire issue #168: [SUREFIRE-1424] javax.transaction.TransactionMana...

2017-12-01 Thread eolivelli
Github user eolivelli commented on the issue:

https://github.com/apache/maven-surefire/pull/168
  
Oh, got it, I have to run "mvn site" on the root of the project not only on 
maven-surefire-plugin


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[GitHub] maven-surefire issue #168: [SUREFIRE-1424] javax.transaction.TransactionMana...

2017-12-01 Thread eolivelli
Github user eolivelli commented on the issue:

https://github.com/apache/maven-surefire/pull/168
  
@Tibor17 I am trying to update the site, how can I rebuild the site locally 
?
I am trying with "mvn site" but it fails


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



[GitHub] maven-surefire pull request #171: [SUREFIRE-1445] Explicitly define Surefire...

2017-12-01 Thread acogoluegnes
Github user acogoluegnes commented on a diff in the pull request:

https://github.com/apache/maven-surefire/pull/171#discussion_r154307933
  
--- Diff: 
maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/SurefirePropertiesTest.java
 ---
@@ -70,9 +70,35 @@ public void testConstructWithOther()
 src.setProperty( "b", "2" );
 SurefireProperties orderedProperties = new SurefireProperties( src 
);
 // Cannot make assumptions about insertion order
-assertEquals( 2, orderedProperties.size() );
-
+int expectedCount = 0;
+// keys() uses the items property, more reliable to test than 
size(),
+// which is based on the Properties class
+// see https://issues.apache.org/jira/browse/SUREFIRE-1445
+Enumeration keys = orderedProperties.keys();
+while ( keys.hasMoreElements() ) {
+keys.nextElement();
+expectedCount++;
+}
+assertEquals( 2, expectedCount );
--- End diff --

Got it, done.


---

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [VOTE] Release Maven Indexer 6.0.0

2017-12-01 Thread Tamás Cservenák
@Brian @Olivier
Release 6.0.0 is perfectly compatible backwards, so no need to publish with
6.0.0 to consume it with 6.0.0. The changed creators (like OSGi) were
anyway unused on central AFAIK, central publishes with "min" set of
publishers.

@Andreas
thanks!

Vote passed with +1's from: Olivier, Herve, Robert, Manfred, Eric and
Andreas


Thanks,
Tamas


On Fri, Dec 1, 2017 at 9:22 AM Andreas Sewe <
s...@st.informatik.tu-darmstadt.de> wrote:

> Olivier Lamy wrote:
> > probably no issues for sure.
> > I just don't know if we will be able to still download the index from
> > central and use it with this new version
> > TBH I haven't done any testing etc so it's just questions :-)
>
> FYI, my testing included downloading the index from Central (to be
> precise: its uk.maven.org mirror) with the staged Indexer 6.0.0. So, the
> current code its able to consume the index currently produced for
> Central, presumably by Indexer 5.x.
>
> Hope that helps.
>
> Best wishes,
>
> Andreas
>
> --
Thanks,
~t~


Re: [VOTE] Release Maven Indexer 6.0.0

2017-12-01 Thread Andreas Sewe
Olivier Lamy wrote:
> probably no issues for sure.
> I just don't know if we will be able to still download the index from
> central and use it with this new version
> TBH I haven't done any testing etc so it's just questions :-)

FYI, my testing included downloading the index from Central (to be
precise: its uk.maven.org mirror) with the staged Indexer 6.0.0. So, the
current code its able to consume the index currently produced for
Central, presumably by Indexer 5.x.

Hope that helps.

Best wishes,

Andreas



signature.asc
Description: OpenPGP digital signature