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> |
| 8 | <version>1.0.0-SNAPSHOT</version> |
| 9 | <relativePath>..</relativePath> |
| 10 | </parent> |
| 11 | <groupId>org.eclipse.ocl</groupId> |
| 12 | <artifactId>org.eclipse.ocl.releng.build-site</artifactId> |
| 13 | <version>6.4.0-SNAPSHOT</version> |
| 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> |
| 21 | <include>downloads.sh</include> |
| 22 | <include>index.html</include> |
| 23 | <include>publisher.properties</include> |
| 24 | <include>updates.sh</include> |
| 25 | </includes> |
| 26 | </resource> |
| 27 | </resources> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.eclipse.tycho</groupId> |
| 31 | <artifactId>tycho-p2-repository-plugin</artifactId> |
| 32 | <configuration> |
| 33 | <createArtifactRepository>true</createArtifactRepository> |
| 34 | <finalName>${project.groupId}-${unqualifiedVersion}.${buildQualifier}</finalName> |
| 35 | <compress>true</compress> |
| 36 | <repositoryName>OCL ${unqualifiedVersion}.${buildQualifier}</repositoryName> |
| 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-resources-plugin</artifactId> |
| 42 | <executions> |
| 43 | <execution> |
| 44 | <phase>verify</phase> |
| 45 | <goals> |
| 46 | <goal>resources</goal> |
| 47 | </goals> |
| 48 | </execution> |
| 49 | </executions> |
| 50 | <configuration> |
| 51 | <outputDirectory>${project.build.directory}</outputDirectory> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
Ed Willink | 3ede28d | 2017-10-16 13:00:52 +0100 | [diff] [blame] | 56 | </project> |