@sentry/craft 0.27.6 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +7 -10
- package/dist/craft +260 -261
- package/dist/craft.map +2 -2
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1013,14 +1013,13 @@ Note: in order to see the output of the commands, set the [logging level](#loggi
|
|
|
1013
1013
|
|
|
1014
1014
|
**Configuration**
|
|
1015
1015
|
|
|
1016
|
-
| Option | Description
|
|
1017
|
-
| ------------------- |
|
|
1018
|
-
| `
|
|
1019
|
-
| `
|
|
1020
|
-
| `
|
|
1021
|
-
| `
|
|
1022
|
-
| `
|
|
1023
|
-
| `android` | Android configuration, see below. |
|
|
1016
|
+
| Option | Description |
|
|
1017
|
+
| ------------------- | -------------------------------------------------------------------- |
|
|
1018
|
+
| `mavenCliPath` | Path to the Maven CLI. It must be executable by the calling process. |
|
|
1019
|
+
| `mavenSettingsPath` | Path to the Maven `settings.xml` file. |
|
|
1020
|
+
| `mavenRepoId` | ID of the Maven server in the `settings.xml`. |
|
|
1021
|
+
| `mavenRepoUrl` | URL of the Maven repository. |
|
|
1022
|
+
| `android` | Android configuration, see below. |
|
|
1024
1023
|
|
|
1025
1024
|
If your project isn't related to Android, you don't need this configuration and
|
|
1026
1025
|
can set the option to `false`. If not, set the following nested elements:
|
|
@@ -1034,7 +1033,6 @@ can set the option to `false`. If not, set the following nested elements:
|
|
|
1034
1033
|
```yaml
|
|
1035
1034
|
targets:
|
|
1036
1035
|
- name: maven
|
|
1037
|
-
gradleCliPath: ./gradlew
|
|
1038
1036
|
mavenCliPath: scripts/mvnw.cmd
|
|
1039
1037
|
mavenSettingsPath: scripts/settings.xml
|
|
1040
1038
|
mavenRepoId: ossrh
|
|
@@ -1047,7 +1045,6 @@ targets:
|
|
|
1047
1045
|
```yaml
|
|
1048
1046
|
targets:
|
|
1049
1047
|
- name: maven
|
|
1050
|
-
gradleCliPath: ./gradlew
|
|
1051
1048
|
mavenCliPath: scripts/mvnw.cmd
|
|
1052
1049
|
mavenSettingsPath: scripts/settings.xml
|
|
1053
1050
|
mavenRepoId: ossrh
|