Skip to content

Commit d8b1038

Browse files
authored
Allow build for aarch64
This allows a single build for aarch64
1 parent e9694bc commit d8b1038

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

io.sloeber.parent/pom.xml

+27-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
</plugins>
271271
</build>
272272
</profile>
273-
273+
274274
<profile>
275275
<id>mac64</id>
276276
<build>
@@ -296,6 +296,32 @@
296296
</plugins>
297297
</build>
298298
</profile>
299+
300+
<profile>
301+
<id>macm1</id>
302+
<build>
303+
<plugins>
304+
<plugin>
305+
<groupId>org.eclipse.tycho</groupId>
306+
<artifactId>target-platform-configuration</artifactId>
307+
<version>${tycho.version}</version>
308+
<configuration>
309+
<!-- configure the p2 target environments for multi-platform build -->
310+
<!-- The strings ("linux", "gtk", "x86"...) are defined by the OSGi
311+
spec -->
312+
<environments>
313+
<!-- Mac aarch64 -->
314+
<environment>
315+
<os>macosx</os>
316+
<ws>cocoa</ws>
317+
<arch>aarch64</arch>
318+
</environment>
319+
</environments>
320+
</configuration>
321+
</plugin>
322+
</plugins>
323+
</build>
324+
</profile>
299325

300326
<profile>
301327
<id>latest</id>

0 commit comments

Comments
 (0)