[#4658] Fix encoding of pom.xml file

Motivation:

transport-native-epoll has its pom.xml encoding attribute set to ISO-8859-15. Because
of this gradle, and other dependency management systems, can't correctly resolve this
library from wherever it happens to be published.

Modifications:

netty/transport-native-epoll/pom.xml had its xml encoding changed to UTF-9

Result:

Gradle, and other dependency management systems, will now be able to correctly resolve this module.
This commit is contained in:
ChristopherDancy 2016-01-05 16:03:47 -05:00 committed by Norman Maurer
parent ae470e315d
commit 65d3242696

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="ISO-8859-15"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2014 The Netty Project
~