« Return to Thread: bug: jar task with nested service does not create META-INF/services

bug: jar task with nested service does not create META-INF/services

by Robert Koberg :: Rate this Message:

Reply to Author | View in Thread

Hi,

I am trying to use the nested service element in the jar class. It
produces a META-INF/service rather than META-INF/services:


    /**
     * Write SPI Information to JAR
     */
    private void writeServices(ZipOutputStream zOut) throws IOException
{
        Iterator serviceIterator;
        Service service;

        serviceIterator = serviceList.iterator();
        while (serviceIterator.hasNext()) {
           service = (Service) serviceIterator.next();
           //stolen from writeManifest
           super.zipFile(service.getAsStream(), zOut,
                         "META-INF/service/" + service.getType(),
                         System.currentTimeMillis(), null,
                         ZipFileSet.DEFAULT_FILE_MODE);
        }
    }

Bug?

best,
-Rob




---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@...
For additional commands, e-mail: dev-help@...

 « Return to Thread: bug: jar task with nested service does not create META-INF/services