All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.maven.plugins.thirdparty.util.JarFileEntry Maven / Gradle / Ivy

Go to download

Plugin for deploying artifacts to JBoss ant/buildmagic repository, and building a thirdparty directory from dependencies in a maven repository.

The newest version!
package org.jboss.maven.plugins.thirdparty.util;

public class JarFileEntry
{

   private byte[] content;

   private String name;

   public JarFileEntry(String name, byte[] content)
   {
      this.name = name;
      this.content = content;
   }

   public byte[] getContent()
   {
      return content;
   }

   public String getName()
   {
      return name;
   }

   public void setName(String name)
   {
      this.name = name;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy