Skip to content

Commit

Permalink
#725: Migrate Recording Changes to Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jarmoniuk authored and slachiewicz committed Oct 26, 2022
1 parent 07fcf53 commit 98a002f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 49 deletions.
49 changes: 0 additions & 49 deletions src/site/apt/examples/recording-changes.apt

This file was deleted.

44 changes: 44 additions & 0 deletions src/site/markdown/examples/recording-changes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
title: Recording Changes
author: Mark Raynsford
date: 2020-06-27

<!---
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

# Recording Changes

Here's an example:

```sh
mvn versions:use-latest-releases -DchangeRecorderFormat=xml
```

Which writes a file to `target/versions-changes.xml` that looks something like:

```xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<updates xmlns="http://www.mojohaus.org/versions-maven-plugin/schema/updates/1.0">
<update artifactId="dummy-api"
groupId="localhost"
kind="useLatestReleases"
newVersion="3.0"
oldVersion="1.1.1-2"/>
</updates>
```

The contents of this file records the fact that `localhost:dummy-api:1.1.1-2`
was upgraded to `3.0`.

0 comments on commit 98a002f

Please sign in to comment.