|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | 4 | <groupId>org.cryptomator</groupId> |
4 | 5 | <artifactId>cli</artifactId> |
|
145 | 146 | </archive> |
146 | 147 | </configuration> |
147 | 148 | </plugin> |
148 | | - <plugin> |
149 | | - <groupId>org.codehaus.mojo</groupId> |
150 | | - <artifactId>exec-maven-plugin</artifactId> |
151 | | - <version>${maven-exec.version}</version> |
152 | | - <executions> |
153 | | - <execution> |
154 | | - <id>test-run</id> |
155 | | - <goals> |
156 | | - <goal>exec</goal> |
157 | | - </goals> |
158 | | - </execution> |
159 | | - </executions> |
160 | | - <configuration> |
161 | | - <executable>${env.JAVA_HOME}/bin/java</executable> |
162 | | - <arguments> |
163 | | - <argument>--module-path</argument> |
164 | | - <modulepath/> |
165 | | - <argument>--enable-native-access=org.cryptomator.jfuse.linux,org.cryptomator.jfuse.win,org.cryptomator.jfuse.mac</argument> |
166 | | - <argument>--module</argument> |
167 | | - <argument>org.cryptomator.cli/${mainClass}</argument> |
168 | | - <argument>--password:stdin</argument> |
169 | | - <argument>--mounter=org.cryptomator.frontend.fuse.mount.WinFspNetworkMountProvider</argument> |
170 | | - <argument>--mountPoint=X:\\</argument> |
171 | | - <argument>T:\\vaultFormat8</argument> |
172 | | - </arguments> |
173 | | - </configuration> |
174 | | - </plugin> |
175 | | - <plugin> |
176 | | - <groupId>org.apache.maven.plugins</groupId> |
177 | | - <artifactId>maven-dependency-plugin</artifactId> |
178 | | - <executions> |
179 | | - <!-- sort jars into two buckets (classpath and modulepath). exclude openjfx, which gets jlinked separately --> |
180 | | - <execution> |
181 | | - <id>copy-mods</id> |
182 | | - <phase>prepare-package</phase> |
183 | | - <goals> |
184 | | - <goal>copy-dependencies</goal> |
185 | | - </goals> |
186 | | - <configuration> |
187 | | - <includeScope>runtime</includeScope> |
188 | | - <outputDirectory>${project.build.directory}/mods</outputDirectory> |
189 | | - <excludeGroupIds>${nonModularGroupIds}</excludeGroupIds> |
190 | | - </configuration> |
191 | | - </execution> |
192 | | - <execution> |
193 | | - <id>copy-libs</id> |
194 | | - <phase>prepare-package</phase> |
195 | | - <goals> |
196 | | - <goal>copy-dependencies</goal> |
197 | | - </goals> |
198 | | - <configuration> |
199 | | - <includeScope>runtime</includeScope> |
200 | | - <outputDirectory>${project.build.directory}/libs</outputDirectory> |
201 | | - <includeGroupIds>${nonModularGroupIds}</includeGroupIds> |
202 | | - </configuration> |
203 | | - </execution> |
204 | | - </executions> |
205 | | - </plugin> |
| 149 | + <plugin> |
| 150 | + <groupId>org.apache.maven.plugins</groupId> |
| 151 | + <artifactId>maven-dependency-plugin</artifactId> |
| 152 | + <executions> |
| 153 | + <!-- sort jars into two buckets (classpath and modulepath). exclude openjfx, which gets jlinked separately --> |
| 154 | + <execution> |
| 155 | + <id>copy-mods</id> |
| 156 | + <phase>prepare-package</phase> |
| 157 | + <goals> |
| 158 | + <goal>copy-dependencies</goal> |
| 159 | + </goals> |
| 160 | + <configuration> |
| 161 | + <includeScope>runtime</includeScope> |
| 162 | + <outputDirectory>${project.build.directory}/mods</outputDirectory> |
| 163 | + <excludeGroupIds>${nonModularGroupIds}</excludeGroupIds> |
| 164 | + </configuration> |
| 165 | + </execution> |
| 166 | + <execution> |
| 167 | + <id>copy-libs</id> |
| 168 | + <phase>prepare-package</phase> |
| 169 | + <goals> |
| 170 | + <goal>copy-dependencies</goal> |
| 171 | + </goals> |
| 172 | + <configuration> |
| 173 | + <includeScope>runtime</includeScope> |
| 174 | + <outputDirectory>${project.build.directory}/libs</outputDirectory> |
| 175 | + <includeGroupIds>${nonModularGroupIds}</includeGroupIds> |
| 176 | + </configuration> |
| 177 | + </execution> |
| 178 | + </executions> |
| 179 | + </plugin> |
206 | 180 | <!--plugin> |
207 | 181 | <groupId>org.codehaus.mojo</groupId> |
208 | 182 | <artifactId>license-maven-plugin</artifactId> |
|
0 commit comments