Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.eclipse.ocl</groupId> |
| 7 | <artifactId>org.eclipse.ocl.releng-folder</artifactId> |
Ed Willink | dba392f | 2020-03-13 17:02:17 +0000 | [diff] [blame] | 8 | <version>6.12.0-SNAPSHOT</version> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 9 | <relativePath>..</relativePath> |
| 10 | </parent> |
| 11 | <groupId>org.eclipse.ocl</groupId> |
| 12 | <artifactId>org.eclipse.ocl.releng.build-site</artifactId> |
Ed Willink | dba392f | 2020-03-13 17:02:17 +0000 | [diff] [blame] | 13 | <version>6.12.0-SNAPSHOT</version> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 14 | <packaging>eclipse-repository</packaging> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 15 | <build> |
| 16 | <resources> |
| 17 | <resource> |
| 18 | <directory>.</directory> |
| 19 | <filtering>true</filtering> |
| 20 | <includes> |
Ed Willink | 61c9961 | 2018-06-10 21:51:35 +0100 | [diff] [blame] | 21 | <include>publisher.properties</include> |
| 22 | </includes> |
| 23 | </resource> |
| 24 | <resource> |
| 25 | <directory>.</directory> |
| 26 | <filtering>false</filtering> |
| 27 | <includes> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 28 | <include>downloads.sh</include> |
| 29 | <include>index.html</include> |
Ed Willink | 1989173 | 2020-04-09 16:55:16 +0100 | [diff] [blame^] | 30 | <include>publish.sh</include> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 31 | <include>updates.sh</include> |
| 32 | </includes> |
| 33 | </resource> |
| 34 | </resources> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.eclipse.tycho</groupId> |
| 38 | <artifactId>tycho-p2-repository-plugin</artifactId> |
| 39 | <configuration> |
| 40 | <createArtifactRepository>true</createArtifactRepository> |
Ed Willink | ece321f | 2017-12-29 16:29:29 +0000 | [diff] [blame] | 41 | <finalName>${project.groupId}-${unqualifiedVersion}.${buildId}</finalName> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 42 | <compress>true</compress> |
Ed Willink | ece321f | 2017-12-29 16:29:29 +0000 | [diff] [blame] | 43 | <repositoryName>OCL ${unqualifiedVersion}.${buildId}</repositoryName> |
Ed Willink | be80bfe | 2017-10-19 14:08:28 +0100 | [diff] [blame] | 44 | </configuration> |
| 45 | </plugin> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-resources-plugin</artifactId> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <phase>verify</phase> |
| 52 | <goals> |
| 53 | <goal>resources</goal> |
| 54 | </goals> |
| 55 | </execution> |
| 56 | </executions> |
| 57 | <configuration> |
| 58 | <outputDirectory>${project.build.directory}</outputDirectory> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
Ed Willink | 61c9961 | 2018-06-10 21:51:35 +0100 | [diff] [blame] | 63 | <profiles> |
| 64 | <profile> |
| 65 | <id>javadoc</id> |
| 66 | <activation> |
| 67 | <activeByDefault>false</activeByDefault> |
| 68 | </activation> |
| 69 | <build> |
| 70 | <resources> |
| 71 | <resource> |
| 72 | <directory>../../doc/org.eclipse.ocl.doc/target</directory> |
| 73 | <filtering>false</filtering> |
| 74 | <includes> |
| 75 | <include>OCL-javadoc.zip</include> |
| 76 | </includes> |
| 77 | </resource> |
| 78 | </resources> |
| 79 | </build> |
| 80 | </profile> |
| 81 | <profile> |
| 82 | <id>pdfdoc</id> |
| 83 | <activation> |
| 84 | <activeByDefault>false</activeByDefault> |
| 85 | </activation> |
| 86 | <build> |
| 87 | <resources> |
| 88 | <resource> |
| 89 | <directory>../../doc/org.eclipse.ocl.doc/target</directory> |
| 90 | <filtering>false</filtering> |
| 91 | <includes> |
| 92 | <include>ocl.pdf</include> |
| 93 | </includes> |
| 94 | </resource> |
| 95 | </resources> |
| 96 | </build> |
| 97 | </profile> |
| 98 | </profiles> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 99 | </project> |