Skip to content

Commit 9687748

Browse files
Add jasmin-maven-plugin
For compilation of .j Java assembler files.
1 parent 0ce8dbc commit 9687748

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

jbmc/regression/pom.xml

+21
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@
2020
<module>book-examples</module>
2121
</modules>
2222

23+
<pluginRepositories>
24+
<!-- for jasmin-maven-plugin -->
25+
<pluginRepository>
26+
<id>jitpack.io</id>
27+
<url>https://jitpack.io</url>
28+
</pluginRepository>
29+
</pluginRepositories>
30+
2331
<dependencyManagement>
2432
<dependencies>
2533
<dependency>
@@ -35,6 +43,19 @@
3543
<build>
3644
<pluginManagement>
3745
<plugins>
46+
<plugin>
47+
<groupId>com.github.abextm</groupId>
48+
<artifactId>jasmin-maven-plugin</artifactId>
49+
<version>1.0</version>
50+
<executions>
51+
<execution>
52+
<phase>generate-sources</phase>
53+
<goals>
54+
<goal>compile-jasmin</goal>
55+
</goals>
56+
</execution>
57+
</executions>
58+
</plugin>
3859
<plugin>
3960
<groupId>org.apache.maven.plugins</groupId>
4061
<artifactId>maven-jar-plugin</artifactId>

0 commit comments

Comments
 (0)