Quantcast
Channel: Gradle Forums - Latest posts
Viewing all articles
Browse latest Browse all 19859

Migration maven->gradle, type tld replacement

$
0
0

I tried to migrate some projects from maven to gradle with great performance improvements. But i still have some issues, the main blocker is, that i cannot find a replacement for maven type tld. e.g.

<dependency>
    <groupId>taglibs</groupId>
    <artifactId>c</artifactId>
    <type>tld</type>
</dependency>

When i use gradle init on the maven project, it adds:

compile 'taglibs:c:1.1.2' 
compile 'taglibs:fmt:1.1.2'
compile 'taglibs:fn:1.1.1'

But thats not working: WEB-INF/tld is missing.


Viewing all articles
Browse latest Browse all 19859

Trending Articles