
org.jboss.maven.plugins.thirdparty.util.JarFileEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-buildmagic-thirdparty-plugin
Show all versions of maven-buildmagic-thirdparty-plugin
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