Fix missing version properties of transport-epoll in all-in-one JAR
Related: #2952 Motivation: META-INF/io.netty.versions.properties in netty-all-*.jar does not contain the version information about the netty-transport-epoll module. Modifications: Fix a bug in the regular expression in pom.xml, so that the artifacts with a classifier is also included in the version properties file. Result: The version information of all modules are included in the version properties file, and Version.identify() does not miss netty-transport-epoll.
This commit is contained in:
parent
0dc046ebed
commit
6f35e608c3
@ -352,7 +352,7 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<target>
|
<target>
|
||||||
<taskdef resource="net/sf/antcontrib/antlib.xml" />
|
<taskdef resource="net/sf/antcontrib/antlib.xml" />
|
||||||
<propertyselector property="versions" match="^(${project.groupId}:(?!netty-example)[^:]+:jar)$" select="\1" />
|
<propertyselector property="versions" match="^(${project.groupId}:(?!netty-example)[^:]+:jar(?::[^:]+)?)$" select="\1" />
|
||||||
<for list="${versions}" param="x">
|
<for list="${versions}" param="x">
|
||||||
<sequential>
|
<sequential>
|
||||||
<unzip src="${@{x}}" dest="${dependencyVersionsDir}">
|
<unzip src="${@{x}}" dest="${dependencyVersionsDir}">
|
||||||
|
Loading…
Reference in New Issue
Block a user