Skip to content

Commit 8e78c2f

Browse files
committed
Fix native dep for Mac x64
1 parent 5802fca commit 8e78c2f

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
# os: [windows-latest, macos-latest, ubuntu-latest]
24-
os: [ ubuntu-latest, windows-latest, macos-latest ]
24+
os: [ ubuntu-latest, windows-latest, macos-latest, macos-15-intel ]
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- uses: actions/checkout@v3

native-deps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
<id>darwin-x64</id>
8787
<activation>
8888
<os>
89-
<arch>amd64</arch>
89+
<arch>x86_64</arch>
9090
<family>mac</family>
9191
</os>
9292
</activation>

plugin-tailwind/native-deps/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<activation>
6767
<os>
6868
<family>mac</family>
69-
<arch>amd64</arch>
69+
<arch>x86_64</arch>
7070
</os>
7171
</activation>
7272
<dependencies>
@@ -104,9 +104,9 @@
104104
</dependency>
105105
</dependencies>
106106
</profile>
107-
<!-- Linux x64 GNU -->
107+
<!-- Linux x64 -->
108108
<profile>
109-
<id>lightningcss-linux-x64-gnu</id>
109+
<id>lightningcss-linux-x64</id>
110110
<activation>
111111
<os>
112112
<family>linux</family>
@@ -126,9 +126,9 @@
126126
</dependency>
127127
</dependencies>
128128
</profile>
129-
<!-- Linux ARM64 GNU -->
129+
<!-- Linux ARM64 -->
130130
<profile>
131-
<id>lightningcss-linux-arm64-gnu</id>
131+
<id>lightningcss-linux-arm64</id>
132132
<activation>
133133
<os>
134134
<family>linux</family>
@@ -148,9 +148,9 @@
148148
</dependency>
149149
</dependencies>
150150
</profile>
151-
<!-- Windows x64 MSVC -->
151+
<!-- Windows x64 -->
152152
<profile>
153-
<id>lightningcss-win32-x64-msvc</id>
153+
<id>lightningcss-windows-x64</id>
154154
<activation>
155155
<os>
156156
<family>windows</family>
@@ -170,9 +170,9 @@
170170
</dependency>
171171
</dependencies>
172172
</profile>
173-
<!-- Windows ARM64 MSVC -->
173+
<!-- Windows ARM64 -->
174174
<profile>
175-
<id>lightningcss-win32-arm64-msvc</id>
175+
<id>lightningcss-windows-arm64</id>
176176
<activation>
177177
<os>
178178
<family>windows</family>

pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,22 @@
2626
</scm>
2727
<licenses>
2828
<license>
29-
<name>MIT License</name>
30-
<url>http://www.opensource.org/licenses/mit-license.php</url>
29+
<name>Apache License 2.0</name>
30+
<url>https://opensource.org/license/apache-2-0</url>
3131
</license>
3232
</licenses>
3333
<developers>
34+
<developer>
35+
<name>Andy Damevin</name>
36+
<email>ia3andy@gmail.com</email>
37+
<organization>commonhaus</organization>
38+
<organizationUrl>https://www.commonhaus.org/</organizationUrl>
39+
</developer>
3440
<developer>
3541
<name>Erik Jan de Wit</name>
3642
<email>erikjan.dewit@gmail.com</email>
37-
<organization>Red Hat</organization>
38-
<organizationUrl>http://blog.nerdin.ch</organizationUrl>
43+
<organization>commonhaus</organization>
44+
<organizationUrl>https://www.commonhaus.org/</organizationUrl>
3945
</developer>
4046
</developers>
4147

0 commit comments

Comments
 (0)