|
| 1 | +<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"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <artifactId>org.eclipse.wildwebdeveloper.embedder.node.win32.aarch64</artifactId> |
| 4 | + <parent> |
| 5 | + <groupId>org.eclipse.wildwebdeveloper</groupId> |
| 6 | + <artifactId>parent</artifactId> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + <packaging>eclipse-plugin</packaging> |
| 10 | + <version>1.0.0-SNAPSHOT</version> |
| 11 | + |
| 12 | + <build> |
| 13 | + <plugins> |
| 14 | + <plugin> |
| 15 | + <groupId>org.apache.maven.plugins</groupId> |
| 16 | + <artifactId>maven-clean-plugin</artifactId> |
| 17 | + <configuration> |
| 18 | + <filesets> |
| 19 | + <fileset> |
| 20 | + <directory>resources</directory> |
| 21 | + </fileset> |
| 22 | + </filesets> |
| 23 | + </configuration> |
| 24 | + </plugin> |
| 25 | + <plugin> |
| 26 | + <groupId>org.codehaus.mojo</groupId> |
| 27 | + <artifactId>properties-maven-plugin</artifactId> |
| 28 | + <executions> |
| 29 | + <execution> |
| 30 | + <phase>initialize</phase> |
| 31 | + <goals> |
| 32 | + <goal>read-project-properties</goal> |
| 33 | + </goals> |
| 34 | + <configuration> |
| 35 | + <files> |
| 36 | + <file>${project.basedir}/nodejs-info.properties</file> |
| 37 | + </files> |
| 38 | + </configuration> |
| 39 | + </execution> |
| 40 | + </executions> |
| 41 | + </plugin> |
| 42 | + <plugin> |
| 43 | + <groupId>com.googlecode.maven-download-plugin</groupId> |
| 44 | + <artifactId>download-maven-plugin</artifactId> |
| 45 | + <executions> |
| 46 | + <execution> |
| 47 | + <id>fetch-node.js</id> |
| 48 | + <phase>generate-resources</phase> |
| 49 | + <goals> |
| 50 | + <goal>wget</goal> |
| 51 | + </goals> |
| 52 | + <configuration> |
| 53 | + <url>${archiveURL}</url> |
| 54 | + <unpack>false</unpack> |
| 55 | + <outputDirectory>${project.basedir}/resources</outputDirectory> |
| 56 | + </configuration> |
| 57 | + </execution> |
| 58 | + </executions> |
| 59 | + </plugin> |
| 60 | + <plugin> |
| 61 | + <groupId>org.eclipse.tycho</groupId> |
| 62 | + <artifactId>tycho-packaging-plugin</artifactId> |
| 63 | + <configuration> |
| 64 | + <jgit.ignore> |
| 65 | + resources/*.zip |
| 66 | + </jgit.ignore> |
| 67 | + </configuration> |
| 68 | + </plugin> |
| 69 | + <plugin> |
| 70 | + <groupId>org.eclipse.tycho</groupId> |
| 71 | + <artifactId>target-platform-configuration</artifactId> |
| 72 | + <inherited>true</inherited> |
| 73 | + <configuration> |
| 74 | + <environments> |
| 75 | + <environment> |
| 76 | + <os>win32</os> |
| 77 | + <ws>win32</ws> |
| 78 | + <arch>aarch64</arch> |
| 79 | + </environment> |
| 80 | + </environments> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | +</project> |
0 commit comments