mirror of
https://github.com/nicolabs/script-realm-plugin.git
synced 2026-05-21 11:58:07 +02:00
Using org.jenkins-ci.plugins as the POM parent (to make it compile)
This commit is contained in:
parent
4b9b014946
commit
de44af4086
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,3 +1,5 @@
|
|||
/.project
|
||||
/.classpath
|
||||
/.settings
|
||||
/target
|
||||
/work
|
||||
|
|
|
|||
10
pom.xml
10
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue