| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright (c) 2012, 2021 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Distribution License v. 1.0, which is available at |
| http://www.eclipse.org/org/documents/edl-v10.php. |
| |
| SPDX-License-Identifier: BSD-3-Clause |
| |
| --> |
| |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>com.sun.xml.bind.mvn</groupId> |
| <artifactId>jaxb-docs-parent</artifactId> |
| <version>4.0.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>jaxb-www</artifactId> |
| <packaging>pom</packaging> |
| <name>JAXB WWW Help files</name> |
| <url>https://eclipse-ee4j.github.io/jaxb-ri/</url> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>properties-maven-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>buildnumber-maven-plugin</artifactId> |
| <configuration> |
| <locale>en-US</locale> |
| </configuration> |
| <executions> |
| <execution> |
| <id>dstamp</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>create</goal> |
| </goals> |
| <configuration> |
| <buildNumberPropertyName>dstamp</buildNumberPropertyName> |
| <format>{0,date,yyyyMMdd}</format> |
| <items> |
| <item>timestamp</item> |
| </items> |
| </configuration> |
| </execution> |
| <execution> |
| <id>release-date</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>create</goal> |
| </goals> |
| <configuration> |
| <buildNumberPropertyName>release-date</buildNumberPropertyName> |
| <format>{0,date,MMMM d, yyyy}</format> |
| <items> |
| <item>timestamp</item> |
| </items> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>process-www</id> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <phase>process-resources</phase> |
| <configuration> |
| <outputDirectory>${project.build.directory}</outputDirectory> |
| <resources> |
| <resource> |
| <directory>${project.basedir}/src/main/resources</directory> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |