Skip to content

Commit ff6d956

Browse files
committed
Make a distinction between the x86 and x64 artifact builds.
Account for GitHub Actions' specifics, as it doesn't allow to deploy artifacts with any versions other than 'v*.*.*' (i.e. 'release' versions).
1 parent 6be6606 commit ff6d956

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

pom.xml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.enfernuz</groupId>
88
<artifactId>JavaTrans2Quik</artifactId>
9-
<version>1.3.0-x64</version>
9+
<version>1.3.0</version>
1010

1111
<name>JavaTrans2Quik</name>
1212
<url>https://github.com/Enfernuz/JavaTrans2Quik</url>
@@ -21,7 +21,7 @@
2121
<system>github</system>
2222
<url>https://github.com/Enfernuz/JavaTrans2Quik/issues</url>
2323
</issueManagement>
24-
24+
2525
<distributionManagement>
2626
<repository>
2727
<id>github</id>
@@ -41,4 +41,24 @@
4141
<version>4.1.0</version>
4242
</dependency>
4343
</dependencies>
44+
45+
<build>
46+
<plugins>
47+
<plugin>
48+
<artifactId>maven-jar-plugin</artifactId>
49+
<version>3.1.2</version>
50+
<executions>
51+
<execution>
52+
<phase>package</phase>
53+
<goals>
54+
<goal>jar</goal>
55+
</goals>
56+
<configuration>
57+
<classifier>x64</classifier>
58+
</configuration>
59+
</execution>
60+
</executions>
61+
</plugin>
62+
</plugins>
63+
</build>
4464
</project>

0 commit comments

Comments
 (0)