Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Ed Willink | 986ca2b | 2023-10-20 16:27:33 +0100 | [diff] [blame] | 2 | <!-- |
| 3 | Copyright (c) 2023 Willink Transformations and others. |
| 4 | |
| 5 | This program and the accompanying materials |
| 6 | are made available under the terms of the Eclipse Public License 2.0 |
| 7 | which accompanies this distribution, and is available at |
| 8 | https://www.eclipse.org/legal/epl-2.0/ |
| 9 | |
| 10 | SPDX-License-Identifier: EPL-2.0 |
| 11 | |
| 12 | Contributors: |
| 13 | E.D.Willink - initial API and implementation |
| 14 | --> |
| 15 | |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 16 | <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
| 17 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | <parent> |
| 20 | <groupId>org.eclipse.ocl</groupId> |
| 21 | <artifactId>org.eclipse.ocl.releng-folder</artifactId> |
Ed Willink | 6eee311 | 2024-08-27 07:12:27 +0100 | [diff] [blame^] | 22 | <version>6.23.0-SNAPSHOT</version> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 23 | <relativePath>..</relativePath> |
| 24 | </parent> |
| 25 | <groupId>org.eclipse.ocl</groupId> |
| 26 | <artifactId>org.eclipse.ocl.releng.build-site</artifactId> |
Ed Willink | 6eee311 | 2024-08-27 07:12:27 +0100 | [diff] [blame^] | 27 | <version>6.23.0-SNAPSHOT</version> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 28 | <packaging>eclipse-repository</packaging> |
Ed Willink | a994428 | 2024-03-04 15:30:45 +0000 | [diff] [blame] | 29 | <properties> |
| 30 | <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> |
| 31 | </properties> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 32 | <build> |
| 33 | <resources> |
| 34 | <resource> |
| 35 | <directory>.</directory> |
| 36 | <filtering>true</filtering> |
| 37 | <includes> |
Ed Willink | 61c9961 | 2018-06-10 21:51:35 +0100 | [diff] [blame] | 38 | <include>publisher.properties</include> |
Ed Willink | ebe849b | 2024-03-03 08:01:51 +0000 | [diff] [blame] | 39 | <include>justj-promoter.properties</include> |
Ed Willink | 61c9961 | 2018-06-10 21:51:35 +0100 | [diff] [blame] | 40 | </includes> |
| 41 | </resource> |
| 42 | <resource> |
| 43 | <directory>.</directory> |
| 44 | <filtering>false</filtering> |
| 45 | <includes> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 46 | <include>downloads.sh</include> |
| 47 | <include>index.html</include> |
Ed Willink | 1989173 | 2020-04-09 16:55:16 +0100 | [diff] [blame] | 48 | <include>publish.sh</include> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 49 | <include>updates.sh</include> |
| 50 | </includes> |
| 51 | </resource> |
| 52 | </resources> |
| 53 | <plugins> |
| 54 | <plugin> |
| 55 | <groupId>org.eclipse.tycho</groupId> |
| 56 | <artifactId>tycho-p2-repository-plugin</artifactId> |
| 57 | <configuration> |
| 58 | <createArtifactRepository>true</createArtifactRepository> |
Ed Willink | ece321f | 2017-12-29 16:29:29 +0000 | [diff] [blame] | 59 | <finalName>${project.groupId}-${unqualifiedVersion}.${buildId}</finalName> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 60 | <compress>true</compress> |
Ed Willink | ece321f | 2017-12-29 16:29:29 +0000 | [diff] [blame] | 61 | <repositoryName>OCL ${unqualifiedVersion}.${buildId}</repositoryName> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 62 | </configuration> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-resources-plugin</artifactId> |
| 67 | <executions> |
| 68 | <execution> |
| 69 | <phase>verify</phase> |
| 70 | <goals> |
| 71 | <goal>resources</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | <configuration> |
| 76 | <outputDirectory>${project.build.directory}</outputDirectory> |
| 77 | </configuration> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
Ed Willink | 61c9961 | 2018-06-10 21:51:35 +0100 | [diff] [blame] | 81 | <profiles> |
| 82 | <profile> |
| 83 | <id>javadoc</id> |
| 84 | <activation> |
| 85 | <activeByDefault>false</activeByDefault> |
| 86 | </activation> |
| 87 | <build> |
| 88 | <resources> |
| 89 | <resource> |
| 90 | <directory>../../doc/org.eclipse.ocl.doc/target</directory> |
| 91 | <filtering>false</filtering> |
| 92 | <includes> |
| 93 | <include>OCL-javadoc.zip</include> |
| 94 | </includes> |
| 95 | </resource> |
| 96 | </resources> |
| 97 | </build> |
| 98 | </profile> |
| 99 | <profile> |
| 100 | <id>pdfdoc</id> |
| 101 | <activation> |
| 102 | <activeByDefault>false</activeByDefault> |
| 103 | </activation> |
| 104 | <build> |
| 105 | <resources> |
| 106 | <resource> |
| 107 | <directory>../../doc/org.eclipse.ocl.doc/target</directory> |
| 108 | <filtering>false</filtering> |
| 109 | <includes> |
| 110 | <include>ocl.pdf</include> |
| 111 | </includes> |
| 112 | </resource> |
| 113 | </resources> |
| 114 | </build> |
| 115 | </profile> |
| 116 | </profiles> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 117 | </project> |