Using org.jenkins-ci.plugins as the POM parent (to make it compile)

This commit is contained in:
nicobo 2015-04-21 23:43:05 +02:00
parent 4b9b014946
commit de44af4086
2 changed files with 6 additions and 6 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
/.project
/.classpath
/.settings
/target
/work

10
pom.xml
View file

@ -1,17 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.330</version>
<relativePath>../pom.xml</relativePath>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.566</version>
</parent>
<artifactId>script-realm</artifactId>
<version>1.6-SNAPSHOT</version>
<packaging>hpi</packaging>
<name>Security Realm by custom script</name>
<description>Supports authentication by exeuting a custom script, to resolve groups for a user, a second script can be defined.</description>
<description>Supports authentication by executing a custom script, to resolve groups for a user, a second script can be defined.</description>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Script+Security+Realm</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -21,7 +20,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<goals>deploy</goals>
</configuration>