2011-01-15 16:57:15 +01:00
|
|
|
<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>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>script-realm</artifactId>
|
|
|
|
<version>1.3-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>
|
|
|
|
<url>http://wiki.hudson-ci.org/display/HUDSON/Script+Security+Realm</url>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<!-- <extensions> -->
|
|
|
|
<!-- <extension> -->
|
|
|
|
<!-- <groupId>org.jvnet.wagon-svn</groupId> -->
|
|
|
|
<!-- <artifactId>wagon-svn</artifactId> -->
|
|
|
|
<!-- <version>1.9</version> -->
|
|
|
|
<!-- </extension> -->
|
|
|
|
<!-- </extensions> -->
|
|
|
|
</build>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/imdo/script-realm-plugin.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:imdo/script-realm-plugin.git</developerConnection>
|
|
|
|
<url>http://github.com/imdo/script-realm-plugin</url>
|
|
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>java.net-m2-repository</id>
|
|
|
|
<url>http://dummy.maven.hudson-labs.org:8081/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<!-- maven3 doesn't support anymore id local -->
|
|
|
|
<snapshotRepository>
|
|
|
|
<!-- prevent accidental deployment of SNAPSHOTS to repository -->
|
|
|
|
<id>local.repository</id>
|
|
|
|
<url>file:.</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2009-11-06 04:03:40 +01:00
|
|
|
</project>
|