Skip to content

Commit ab65fe0

Browse files
authored
Merge pull request #297 from nakomis/patch-1
Add sample pom.xml for dependency generation
2 parents 2696830 + 22146e7 commit ab65fe0

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

developers/committers/release-process/prepare-for-release.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ navgroup: developers
77
1. Make sure all unit and integration tests are passing.
88
2. Follow the [classic](https://github.com/apache/brooklyn-dist/blob/master/dist/licensing/README.md#update-license-information)
99
and [karaf](https://github.com/apache/brooklyn-dist/pull/63) instructions to
10-
update the licenses of source and binary dependencies.
10+
update the licenses of source and binary dependencies.
11+
For step 5 of the the karaf version (create a temporary pom.xml), the following template can be used:
12+
```
13+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14+
15+
<modelVersion>4.0.0</modelVersion>
16+
<groupId>foo</groupId>
17+
<artifactId>bar</artifactId>
18+
<version>baz</version>
19+
<packaging>pom</packaging>
20+
21+
<dependencies>
22+
<!-- paste dependencies generated in step 4 -->
23+
</dependencies>
24+
</project>
25+
```
1126
3. Update the [release notes](https://github.com/apache/brooklyn-docs/blob/master/guide/misc/release-notes.md). To help
1227
in the process [list merged PRs](https://gist.github.com/sjcorbett/72ed944b06ce3a138fbe516e8d36f624) after a ceratin date.

0 commit comments

Comments
 (0)