Skip to content

Commit 3742a40

Browse files
authored
Remove build tool from archetype template (Azure#25613)
* Remove build tool for archetype release
1 parent 04dcc71 commit 3742a40

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

eng/pipelines/templates/jobs/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
3235
jobs:
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 }}

eng/pipelines/templates/stages/archetype-sdk-client.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

4851
stages:
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 }}
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
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.

sdk/tools/azure-sdk-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -87,17 +87,6 @@
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>

0 commit comments

Comments
 (0)