Skip to content
This repository was archived by the owner on May 22, 2024. It is now read-only.

Commit 36884a2

Browse files
committed
Removed some copy errors.
1 parent 6cc4a3b commit 36884a2

File tree

1 file changed

+0
-71
lines changed

1 file changed

+0
-71
lines changed

pom.xml

Lines changed: 0 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
<groupId>org.graalvm.js</groupId>
3434
<artifactId>js-scriptengine</artifactId>
3535
<version>${graalvm.version}</version>
36-
<scope>runtime</scope>
3736
</dependency>
3837
<dependency>
3938
<groupId>org.graalvm.tools</groupId>
@@ -47,12 +46,6 @@
4746
<version>${graalvm.version}</version>
4847
<scope>runtime</scope>
4948
</dependency>
50-
<dependency>
51-
<groupId>org.graalvm.truffle</groupId>
52-
<artifactId>truffle-api</artifactId>
53-
<version>${graalvm.version}</version>
54-
<scope>runtime</scope>
55-
</dependency>
5649
</dependencies>
5750
<build>
5851
<pluginManagement>
@@ -187,49 +180,6 @@
187180
<artifactId>maven-surefire-plugin</artifactId>
188181
<version>2.22.1</version>
189182
</plugin>
190-
<plugin>
191-
<groupId>org.apache.maven.plugins</groupId>
192-
<artifactId>maven-dependency-plugin</artifactId>
193-
<version>2.10</version>
194-
<executions>
195-
<execution>
196-
<id>copy</id>
197-
<phase>process-test-classes</phase>
198-
<goals>
199-
<goal>copy</goal>
200-
</goals>
201-
<configuration>
202-
<artifactItems>
203-
<artifactItem>
204-
<groupId>org.graalvm.compiler</groupId>
205-
<artifactId>compiler</artifactId>
206-
<version>${graalvm.version}</version>
207-
<type>jar</type>
208-
<overWrite>true</overWrite>
209-
<destFileName>compiler.jar</destFileName>
210-
</artifactItem>
211-
<artifactItem>
212-
<groupId>org.graalvm.truffle</groupId>
213-
<artifactId>truffle-api</artifactId>
214-
<version>${graalvm.version}</version>
215-
<type>jar</type>
216-
<overWrite>true</overWrite>
217-
<destFileName>truffle-api.jar</destFileName>
218-
</artifactItem>
219-
<artifactItem>
220-
<groupId>org.graalvm.sdk</groupId>
221-
<artifactId>graal-sdk</artifactId>
222-
<version>${graalvm.version}</version>
223-
<type>jar</type>
224-
<overWrite>true</overWrite>
225-
<destFileName>graal-sdk.jar</destFileName>
226-
</artifactItem>
227-
</artifactItems>
228-
<outputDirectory>${compiler.dir}</outputDirectory>
229-
</configuration>
230-
</execution>
231-
</executions>
232-
</plugin>
233183
<plugin>
234184
<groupId>org.codehaus.mojo</groupId>
235185
<artifactId>exec-maven-plugin</artifactId>
@@ -247,27 +197,6 @@
247197
<argument>-classpath</argument>
248198
<!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
249199
<classpath/>
250-
<argument>-XX:+UnlockExperimentalVMOptions</argument>
251-
<argument>-XX:+EnableJVMCI</argument>
252-
<argument>--upgrade-module-path=${compiler.dir}/compiler.jar</argument>
253-
<argument>com.mycompany.app.App</argument>
254-
</arguments>
255-
</configuration>
256-
</execution>
257-
<execution>
258-
<id>nograal</id>
259-
<goals>
260-
<goal>exec</goal>
261-
</goals>
262-
<configuration>
263-
<arguments>
264-
<argument>--module-path</argument>
265-
<!-- automatically creates the modulepath using all project dependencies, also adding the project build directory -->
266-
<modulepath/>
267-
<argument>-classpath</argument>
268-
<!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
269-
<classpath/>
270-
<argument>com.mycompany.app.App</argument>
271200
</arguments>
272201
</configuration>
273202
</execution>

0 commit comments

Comments
 (0)