|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>net.ladstatt.javacv</groupId>
|
5 | 5 | <artifactId>javacv-webcam</artifactId>
|
6 |
| - <version>2020.3.0-SNAPSHOT</version> |
| 6 | + <version>2020.3.1-SNAPSHOT</version> |
7 | 7 |
|
8 | 8 | <name>net.ladstatt.javacv.javacv-webcam</name>
|
9 | 9 |
|
|
15 | 15 | <javacv.version>1.5.4</javacv.version>
|
16 | 16 | <main.class>net.ladstatt.javacv.fx.WebcamFXApp</main.class>
|
17 | 17 | <!-- for native compilation with graalvm -->
|
18 |
| - <!-- |
19 |
| - <client.plugin.version>0.1.31</client.plugin.version> |
20 |
| - --><!-- other values can be ios,android --> |
21 |
| - <!-- |
| 18 | + <client.plugin.version>0.1.33</client.plugin.version> |
22 | 19 | <client.target>host</client.target>
|
| 20 | + <!-- uncomment and provide your path |
23 | 21 | <graalvm.home>/Users/lad/.sdkman/candidates/java/20.2.0.r11-grl</graalvm.home>
|
24 | 22 | -->
|
25 | 23 | </properties>
|
|
39 | 37 | <groupId>org.bytedeco</groupId>
|
40 | 38 | <artifactId>javacv-platform</artifactId>
|
41 | 39 | <version>${javacv.version}</version>
|
| 40 | + <exclusions> |
| 41 | + <!-- if not excluded linking fails withc client-maven-plugin (???) --> |
| 42 | + <exclusion> |
| 43 | + <groupId>org.bytedeco</groupId> |
| 44 | + <artifactId>leptonica-platform</artifactId> |
| 45 | + </exclusion> |
| 46 | + </exclusions> |
| 47 | + |
42 | 48 | </dependency>
|
43 | 49 | </dependencies>
|
44 | 50 | <build>
|
|
76 | 82 | </execution>
|
77 | 83 | </executions>
|
78 | 84 | </plugin>
|
79 |
| -<!-- |
80 | 85 | <plugin>
|
81 | 86 | <groupId>com.gluonhq</groupId>
|
82 | 87 | <artifactId>client-maven-plugin</artifactId>
|
|
100 | 105 | <resourcesList>
|
101 | 106 | <list>.*.dylib$</list>
|
102 | 107 | </resourcesList>
|
103 |
| - <nativeImageArgs>- -allow-incomplete-classpath</nativeImageArgs> |
| 108 | + <nativeImageArgs>--allow-incomplete-classpath</nativeImageArgs> |
104 | 109 | <graalvmHome>${graalvm.home}</graalvmHome>
|
105 | 110 | </configuration>
|
106 | 111 | </plugin>
|
107 |
| - --> |
108 | 112 | <plugin>
|
109 | 113 | <groupId>org.openjfx</groupId>
|
110 | 114 | <artifactId>javafx-maven-plugin</artifactId>
|
|
0 commit comments