|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + * The contents of this file are subject to the terms of the Common Development and |
| 4 | + * Distribution License (the License). You may not use this file except in compliance with the |
| 5 | + * License. |
| 6 | + * |
| 7 | + * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the |
| 8 | + * specific language governing permission and limitations under the License. |
| 9 | + * |
| 10 | + * When distributing Covered Software, include this CDDL Header Notice in each file and include |
| 11 | + * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL |
| 12 | + * Header, with the fields enclosed by brackets [] replaced by your own identifying |
| 13 | + * information: "Portions copyright [year] [name of copyright owner]". |
| 14 | + * |
| 15 | + * Copyright 2025 3A Systems LLC. |
| 16 | + --> |
| 17 | +<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/xsd/maven-4.0.0.xsd"> |
| 18 | + <modelVersion>4.0.0</modelVersion> |
| 19 | + <parent> |
| 20 | + <groupId>org.openidentityplatform.openam</groupId> |
| 21 | + <artifactId>openam-documentation</artifactId> |
| 22 | + <version>16.0.0-SNAPSHOT</version> |
| 23 | + </parent> |
| 24 | + <artifactId>openam-doc-services-ref</artifactId> |
| 25 | + <name>OpenAM documentation reference guide generator</name> |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>org.openidentityplatform.openam</groupId> |
| 29 | + <artifactId>openam-server-only</artifactId> |
| 30 | + <version>${project.version}</version> |
| 31 | + <type>pom</type> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.jsoup</groupId> |
| 35 | + <artifactId>jsoup</artifactId> |
| 36 | + <version>1.21.2</version> |
| 37 | + </dependency> |
| 38 | + </dependencies> |
| 39 | + <build> |
| 40 | + <plugins> |
| 41 | + <plugin> |
| 42 | + <groupId>org.codehaus.mojo</groupId> |
| 43 | + <artifactId>exec-maven-plugin</artifactId> |
| 44 | + <version>3.5.1</version> |
| 45 | + <executions> |
| 46 | + <execution> |
| 47 | + <goals> |
| 48 | + <goal>java</goal> |
| 49 | + </goals> |
| 50 | + <phase>prepare-package</phase> |
| 51 | + </execution> |
| 52 | + </executions> |
| 53 | + <configuration> |
| 54 | + <mainClass>org.openidentityplatform.openam.docs.services.Generator</mainClass> |
| 55 | + <arguments> |
| 56 | + <argument>${project.basedir}/../../openam-server-only/target/OpenAM-ServerOnly-${project.version}</argument> |
| 57 | + <argument>${build.outputDirectory}</argument> |
| 58 | + </arguments> |
| 59 | + </configuration> |
| 60 | + </plugin> |
| 61 | + </plugins> |
| 62 | + </build> |
| 63 | + |
| 64 | +</project> |
0 commit comments