mirror of
https://github.com/nicolabs/script-realm-plugin.git
synced 2025-09-05 02:46:05 +02:00
85 lines
2.8 KiB
XML
85 lines
2.8 KiB
XML
<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.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 custom script, groups resolving for a user, and triggers e-mail and full name resolvers.</description>
|
|
<url>https://wiki.jenkins-ci.org/display/JENKINS/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>
|
|
<configuration>
|
|
<goals>deploy</goals>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<!-- Required for e-mail resolving (MailAddressResolver,...) -->
|
|
<dependency>
|
|
<groupId>org.jenkins-ci.plugins</groupId>
|
|
<artifactId>mailer</artifactId>
|
|
<version>1.8</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<developers>
|
|
<developer>
|
|
<id>imod</id>
|
|
<name>Dominik Bartholdi</name>
|
|
<email>-</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:git://github.com/jenkins/script-realm-plugin.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/script-realm-plugin.git</developerConnection>
|
|
<url>http://github.com/jenkins/script-realm-plugin</url>
|
|
</scm>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>java.net-m2-repository</id>
|
|
<url>http://maven.jenkins-ci.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:/tmp/dummy-repo</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>http://repo.jenkins-ci.org/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>repo.jenkins-ci.org</id>
|
|
<url>http://repo.jenkins-ci.org/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|
|
|
|
|