Skip to content

Commit

Permalink
Downgrade Maven prerequisite to continue supporting older version of …
Browse files Browse the repository at this point in the history
…Maven (#8092)
  • Loading branch information
alzimmermsft authored Apr 15, 2024
1 parent 1640470 commit 33f26e8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion packages/java-packages/codesnippet-maven-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release History

## 1.0.0-beta.10 (2024-04-15)

### Bugs Fixed

- Downgraded Maven prerequisite version to `3.6.3` to prevent compatibility issues with older versions of Maven.

## 1.0.0-beta.9 (2024-04-15)

### Other Changes

- Updated Maven versions used in the plugin.

## 1.0.0-beta.8 (2022-08-18)

### Features Added
Expand Down Expand Up @@ -83,4 +95,4 @@

### Features Added

- Initial release of `codesnippet-maven-plugin`.
- Initial release of `codesnippet-maven-plugin`.
2 changes: 1 addition & 1 deletion packages/java-packages/codesnippet-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ First, reference the plugin in your maven project's `pom.xml` file.
<plugin>
<groupId>com.azure.tools</groupId>
<artifactId>codesnippet-maven-plugin</artifactId>
<version>1.0.0-beta.9</version>
<version>1.0.0-beta.10</version>
<configuration>
<codesnippetGlob>**/src/samples/java/**/*.java</codesnippetGlob>
<codesnippetRootDirectory>${project.basedir}/src/samples/java</codesnippetRootDirectory>
Expand Down
4 changes: 2 additions & 2 deletions packages/java-packages/codesnippet-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.azure.tools</groupId>
<artifactId>codesnippet-maven-plugin</artifactId>
<version>1.0.0-beta.9</version>
<version>1.0.0-beta.10</version>
<packaging>maven-plugin</packaging>

<name>Codesnippet Maven Plugin</name>
Expand Down Expand Up @@ -45,7 +45,7 @@
</scm>

<prerequisites>
<maven>${maven.version}</maven>
<maven>3.6.3</maven>
</prerequisites>

<properties>
Expand Down

0 comments on commit 33f26e8

Please sign in to comment.