We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4048b7f commit 8113094Copy full SHA for 8113094
src/it/it-parent/pom.xml
@@ -88,5 +88,33 @@
88
</plugins>
89
</build>
90
</profile>
91
+ <profile>
92
+ <id>java-10+</id>
93
+ <activation>
94
+ <jdk>[10,)</jdk>
95
+ </activation>
96
+ <build>
97
+ <plugins>
98
+ <plugin>
99
+ <groupId>com.github.maven-nar</groupId>
100
+ <artifactId>nar-maven-plugin</artifactId>
101
+ <configuration>
102
+ <javah>
103
+ <skip>true</skip>
104
+ </javah>
105
+ </configuration>
106
+ </plugin>
107
108
+ <groupId>org.apache.maven.plugins</groupId>
109
+ <artifactId>maven-compiler-plugin</artifactId>
110
111
+ <compilerArguments>
112
+ <h>${project.build.directory}/nar/javah-include</h>
113
+ </compilerArguments>
114
115
116
+ </plugins>
117
+ </build>
118
+ </profile>
119
</profiles>
120
</project>
0 commit comments