make netty required in the maven pom

This commit is contained in:
kimchy 2010-05-02 23:34:45 +03:00
parent bac0ef98c4
commit 0fcc9a43c5
1 changed files with 2 additions and 2 deletions

View File

@ -149,8 +149,8 @@ uploadArchives {
pom.dependencies = pom.dependencies.findAll {dep -> !dep.artifactId.contains('jackson') }
pom.dependencies = pom.dependencies.findAll {dep -> !dep.artifactId.contains('joda') }
pom.dependencies = pom.dependencies.findAll {dep -> !dep.artifactId.contains('snakeyaml') }
pom.dependencies.findAll {dep -> dep.groupId == 'jgroups' }*.scope = 'runtime'
pom.dependencies.findAll {dep -> dep.groupId == 'org.jboss.netty' }*.scope = 'runtime'
// keep netty required for simpler usage
// pom.dependencies.findAll {dep -> dep.groupId == 'org.jboss.netty' }*.scope = 'runtime'
}
}
}