Skip to content

Commit 23ad7de

Browse files
committed
[GR-66275] Delete tests in Build a Native Executable Using Maven.
PullRequest: graal/21205
2 parents b817096 + 891f342 commit 23ad7de

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

docs/reference-manual/native-image/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -148,13 +148,6 @@ The [Maven plugin for Native Image](https://graalvm.github.io/native-build-tools
148148
</goals>
149149
<phase>package</phase>
150150
</execution>
151-
<execution>
152-
<id>test-native</id>
153-
<goals>
154-
<goal>test</goal>
155-
</goals>
156-
<phase>test</phase>
157-
</execution>
158151
</executions>
159152
</plugin>
160153
</plugins>
@@ -206,6 +199,8 @@ The [Gradle plugin for Native Image](https://graalvm.github.io/native-build-tool
206199
```
207200
Follow the prompts.
208201
This command sets up a new Java application with the necessary directory structure and build files.
202+
203+
> If caching was enabled by the project generator in the _gradle.properties_ file, comment out or remove the `org.gradle.configuration-cache=true` line.
209204
210205
2. Enable the Gradle plugin for Native Image by adding the following to `plugins` section of your project’s _build.gradle_ file:
211206
```

docs/reference-manual/native-image/guides/build-native-executable-from-jar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For other installation options, visit the [Downloads section](https://www.graalv
2727
- Create a new Java project named "App", for example in your favorite IDE or from your terminal, with the following structure:
2828
```shell
2929
| src
30-
| --com/
30+
| --com
3131
| -- example
3232
| -- App.java
3333
```

0 commit comments

Comments
 (0)