|
@@ -0,0 +1,75 @@
|
|
|
|
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
+
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>org.pwm-project</groupId>
|
|
|
|
+ <artifactId>pwm</artifactId>
|
|
|
|
+ <version>2.1.0-SNAPSHOT</version>
|
|
|
|
+ <relativePath>../pom.xml</relativePath>
|
|
|
|
+ </parent>
|
|
|
|
+
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+
|
|
|
|
+ <url>https://github.com/pwm-project/pwm</url>
|
|
|
|
+ <artifactId>pwm-ldif</artifactId>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <name>PWM Password Self Service: LDIF JAR</name>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <profiles>
|
|
|
|
+ </profiles>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
|
+ <version>3.3.0</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <archive>
|
|
|
|
+ <manifestEntries>
|
|
|
|
+ <Archive-Type>jar</Archive-Type>
|
|
|
|
+ <Implementation-Title>${project.name}</Implementation-Title>
|
|
|
|
+ <Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
+ <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
|
|
|
|
+ <Implementation-URL>${project.organization.url}</Implementation-URL>
|
|
|
|
+ <Implementation-Build-Java-Spec-Version>${java.specification.version}</Implementation-Build-Java-Spec-Version>
|
|
|
|
+ <Implementation-Revision>${build.revision}</Implementation-Revision>
|
|
|
|
+ <Implementation-Version-Display>v${project.version} b${build.number} r${build.revision}</Implementation-Version-Display>
|
|
|
|
+ <SCM-Git-Branch>${git.branch}</SCM-Git-Branch>
|
|
|
|
+ <SCM-Git-Commit-ID>${git.commit.id}</SCM-Git-Commit-ID>
|
|
|
|
+ <SCM-Git-Commit-ID-Abbrev>${git.commit.id.abbrev}</SCM-Git-Commit-ID-Abbrev>
|
|
|
|
+ <SCM-Git-Commit-ID-Description>${git.commit.id.describe}</SCM-Git-Commit-ID-Description>
|
|
|
|
+ <SCM-Git-Commit-Timestamp>${git.commit.time}</SCM-Git-Commit-Timestamp>
|
|
|
|
+ <SCM-Git-Commit-Dirty>${git.dirty}</SCM-Git-Commit-Dirty>
|
|
|
|
+ </manifestEntries>
|
|
|
|
+ </archive>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <repositories>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>central</id>
|
|
|
|
+ <url>https://repo1.maven.org/maven2</url>
|
|
|
|
+ <snapshots>
|
|
|
|
+ <enabled>false</enabled>
|
|
|
|
+ </snapshots>
|
|
|
|
+ </repository>
|
|
|
|
+ </repositories>
|
|
|
|
+ <pluginRepositories>
|
|
|
|
+ <pluginRepository>
|
|
|
|
+ <id>central</id>
|
|
|
|
+ <url>https://repo1.maven.org/maven2</url>
|
|
|
|
+ <snapshots>
|
|
|
|
+ <enabled>false</enabled>
|
|
|
|
+ </snapshots>
|
|
|
|
+ </pluginRepository>
|
|
|
|
+ </pluginRepositories>
|
|
|
|
+</project>
|