Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10 from g-k-r/JENKINS-12523
package old JNA version 3.3.0 with the plugin
  • Loading branch information
g-k-r committed Feb 1, 2015
2 parents 0647074 + a65e01d commit f01db46
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 17 additions & 1 deletion pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.557</version>
<version>1.580</version>
</parent>

<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -124,6 +124,17 @@
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<configuration>
<pluginFirstClassLoader>true</pluginFirstClassLoader>
<maskClasses>
net.java.dev.jna.
com.google.common.
</maskClasses>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
Expand All @@ -138,6 +149,11 @@
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.libvirt</groupId>
<artifactId>libvirt</artifactId>
Expand Down
Expand Up @@ -7,8 +7,6 @@
import hudson.model.*;
import jenkins.model.Jenkins;
import org.kohsuke.stapler.StaplerProxy;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.Nullable;
import java.io.IOException;
Expand All @@ -23,8 +21,6 @@
@Extension
public class VirtualMachineManagement extends ManagementLink implements StaplerProxy, Describable<VirtualMachineManagement>, Saveable {

private static final Logger logger = LoggerFactory.getLogger(VirtualMachineManagement.class);

@Override
public String getIconFileName() {
return PLUGIN_IMAGES_URL + "/64x64/libvirt.png";
Expand Down

0 comments on commit f01db46

Please sign in to comment.