-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(merge): 'main' into 'IENG-860'
- Loading branch information
Showing
329 changed files
with
12,007 additions
and
2,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ pip-wheel-metadata/ | |
*.pyc | ||
__pycache__ | ||
.pytest_cache | ||
*.comp | ||
*.snap | ||
snap/.snapcraft/ | ||
.spread-reuse.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# NOTE: these disables are only necessary while the core24 spread tests are | ||
# being fixed; they refer to unreachable code, unused variable, etc. | ||
# This file must be removed once all tests in tests/spread/core24/ are fixed. | ||
disable=SC2317,SC2034,SC2154 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
.. include:: /common/craft-parts/reference/parts_steps.rst | ||
|
||
.. include:: /common/craft-parts/step_execution_environment.rst | ||
.. include:: /common/craft-parts/reference/step_execution_environment.rst | ||
|
||
.. include:: /common/craft-parts/step_output_directories.rst | ||
.. include:: /common/craft-parts/reference/step_output_directories.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
.. include:: /common/craft-parts/reference/plugins/maven_plugin.rst | ||
:end-before: .. _maven-details-begin: | ||
|
||
Dependencies | ||
------------ | ||
|
||
The plugin expects Maven to be available on the system as the ``mvn`` | ||
executable, unless a part named ``maven-deps`` is defined. In this | ||
case, the plugin will assume that this part will stage the ``mvn`` | ||
executable to be used in the build step. | ||
|
||
Note that the Maven plugin does not make a Java runtime available in | ||
the target environment. In Snapcraft, the developer must stage the | ||
appropriate packages in order to be able to execute the application | ||
(unless the Java runtime is provided by a | ||
content snap). | ||
|
||
|
||
Example | ||
------- | ||
|
||
This is an example of a Snapcraft part using the Maven plugin. Note | ||
that the Maven and Java Runtime packages are listed as build packages, | ||
and the Java Runtime is staged to be part of the final payload:: | ||
|
||
mkpass: | ||
plugin: maven | ||
source: . | ||
build-packages: | ||
- openjdk-11-jre-headless | ||
- maven | ||
stage-packages: | ||
- openjdk-11-jre-headless | ||
|
||
.. include:: /common/craft-parts/reference/plugins/maven_plugin.rst | ||
:start-after: .. _maven-details-end: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.