Skip to content

Commit b671676

Browse files
committed
Bump to the latest Netty version. Needed to add JBoss repo for now as Central doesn't have it yet it seems
1 parent 645f7f5 commit b671676

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

pom.xml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<parent>
55
<groupId>org.sonatype.oss</groupId>
66
<artifactId>oss-parent</artifactId>
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>org.jboss.netty</groupId>
6464
<artifactId>netty</artifactId>
65-
<version>3.2.5.Final</version>
65+
<version>3.2.7.Final</version>
6666
<exclusions>
6767
<exclusion>
6868
<groupId>javax.servlet</groupId>
@@ -384,11 +384,11 @@
384384
</artifactSet>
385385
<transformers>
386386
<transformer
387-
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
387+
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
388388
<transformer
389-
implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer"/>
389+
implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer"/>
390390
<transformer
391-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/>
391+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/>
392392
</transformers>
393393
</configuration>
394394
</execution>
@@ -536,6 +536,15 @@
536536
<url>${distMgmtSnapshotsUrl}</url>
537537
</snapshotRepository>
538538
</distributionManagement>
539+
<repositories>
540+
<repository>
541+
<id>repository.jboss.org</id>
542+
<url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
543+
<snapshots>
544+
<enabled>false</enabled>
545+
</snapshots>
546+
</repository>
547+
</repositories>
539548
<properties>
540549
<distMgmtSnapshotsUrl>http://oss.sonatype.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
541550
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>

0 commit comments

Comments
 (0)