File tree Expand file tree Collapse file tree 4 files changed +10
-15
lines changed
sdk/tools/azure-sdk-archetype
src/main/resources/archetype-resources Expand file tree Collapse file tree 4 files changed +10
-15
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ parameters:
2828 - name : MatrixReplace
2929 type : object
3030 default : []
31-
31+ - name : SkipAggregateReports
32+ type : boolean
33+ default : false
34+
3235jobs :
3336 - job : ' Build'
3437
@@ -318,3 +321,4 @@ jobs:
318321 Artifacts : ${{ parameters.Artifacts }}
319322 AdditionalModules : ${{ parameters.AdditionalModules }}
320323 PreTestSteps : ${{ parameters.PreTestSteps }}
324+ SkipAggregateReports : ${{ parameters.SkipAggregateReports }}
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ parameters:
4444- name : MatrixReplace
4545 type : object
4646 default : []
47+ - name : SkipAggregateReports
48+ type : boolean
49+ default : false
4750
4851stages :
4952 - stage : Build
@@ -56,6 +59,7 @@ stages:
5659 SDKType : ${{ parameters.SDKType }}
5760 Artifacts : ${{ parameters.Artifacts }}
5861 AdditionalModules : ${{ parameters.AdditionalModules }}
62+ SkipAggregateReports : ${{ parameters.SkipAggregateReports }}
5963 MatrixConfigs :
6064 - ${{ each config in parameters.MatrixConfigs }} :
6165 - ${{ config }}
Original file line number Diff line number Diff line change 11# Release History
22
3- ## 1.0.0 (Unreleased )
3+ ## 1.0.0 (2021-11-23 )
44
55### Features Added
66- A dependency on the latest ` azure-sdk-bom ` BOM release, to ensure that all Azure SDK for Java dependencies are aligned
77 and give you the best developer experience possible.
88- Built-in support for GraalVM native image compilation.
99- Support for generating a new project with a specified set of Azure SDK for Java client libraries.
10- - Integration with the Azure SDK for Java build tooling that will give build-time analysis of your project to ensure
11- as many best practices are followed.
Original file line number Diff line number Diff line change 8787
8888 <build >
8989 <plugins >
90- <plugin >
91- <groupId >com.azure.tools</groupId >
92- <artifactId >azure-maven-plugin</artifactId >
93- <version >1.0.0-SNAPSHOT</version >
94- <configuration >
95- <failOnMissingAzureSdkBom >true</failOnMissingAzureSdkBom >
96- <failOnDeprecatedMicrosoftLibraryUsage >true</failOnDeprecatedMicrosoftLibraryUsage >
97- <failOnUsingMicrosoftDependencyVersions >true</failOnUsingMicrosoftDependencyVersions >
98- <failOnBeta >true</failOnBeta >
99- </configuration >
100- </plugin >
10190
10291 <plugin >
10392 <groupId >org.codehaus.mojo</groupId >
You can’t perform that action at this time.
0 commit comments