Skip to content

Commit dbdf3a4

Browse files
committed
[maven-release-plugin] prepare release maven-release-3.0.0-M1
1 parent 342e193 commit dbdf3a4

File tree

6 files changed

+90
-91
lines changed

6 files changed

+90
-91
lines changed

maven-release-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven.release</groupId>
2525
<artifactId>maven-release</artifactId>
26-
<version>3.0.0-SNAPSHOT</version>
26+
<version>3.0.0-M1</version>
2727
</parent>
2828

2929
<artifactId>maven-release-api</artifactId>

maven-release-manager/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.maven.release</groupId>
2626
<artifactId>maven-release</artifactId>
27-
<version>3.0.0-SNAPSHOT</version>
27+
<version>3.0.0-M1</version>
2828
</parent>
2929

3030
<artifactId>maven-release-manager</artifactId>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.apache.maven.release</groupId>
3737
<artifactId>maven-release-api</artifactId>
38-
<version>3.0.0-SNAPSHOT</version>
38+
<version>3.0.0-M1</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.codehaus.plexus</groupId>

maven-release-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.maven.release</groupId>
2626
<artifactId>maven-release</artifactId>
27-
<version>3.0.0-SNAPSHOT</version>
27+
<version>3.0.0-M1</version>
2828
</parent>
2929

3030
<groupId>org.apache.maven.plugins</groupId>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.apache.maven.release</groupId>
5656
<artifactId>maven-release-manager</artifactId>
57-
<version>3.0.0-SNAPSHOT</version>
57+
<version>3.0.0-M1</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.apache.maven</groupId>
@@ -243,7 +243,7 @@
243243
<mockRepo>
244244
<source>src/it/mrm/repository</source>
245245
</mockRepo>
246-
<proxyRepo/>
246+
<proxyRepo />
247247
</repositories>
248248
</configuration>
249249
</plugin>

maven-release-policies/maven-release-oddeven-policy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.maven.release</groupId>
2626
<artifactId>maven-release</artifactId>
27-
<version>3.0.0-SNAPSHOT</version>
27+
<version>3.0.0-M1</version>
2828
<relativePath>../..</relativePath>
2929
</parent>
3030

Lines changed: 80 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,81 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--
3-
~ Licensed to the Apache Software Foundation (ASF) under one
4-
~ or more contributor license agreements. See the NOTICE file
5-
~ distributed with this work for additional information
6-
~ regarding copyright ownership. The ASF licenses this file
7-
~ to you under the Apache License, Version 2.0 (the
8-
~ "License"); you may not use this file except in compliance
9-
~ with the License. You may obtain a copy of the License at
10-
~
11-
~ http://www.apache.org/licenses/LICENSE-2.0
12-
~
13-
~ Unless required by applicable law or agreed to in writing,
14-
~ software distributed under the License is distributed on an
15-
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16-
~ KIND, either express or implied. See the License for the
17-
~ specific language governing permissions and limitations
18-
~ under the License.
19-
-->
20-
21-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23-
<modelVersion>4.0.0</modelVersion>
24-
25-
<parent>
26-
<groupId>org.apache.maven.release</groupId>
27-
<artifactId>maven-release</artifactId>
28-
<version>3.0.0-SNAPSHOT</version>
29-
<relativePath>../..</relativePath>
30-
</parent>
31-
32-
<artifactId>maven-release-semver-policy</artifactId>
33-
34-
<name>Maven Release SemVer Policy</name>
35-
<description>
36-
A version policy that enforce SemVer format and upgrades minor element for next development version.
37-
</description>
38-
39-
<dependencies>
40-
<dependency>
41-
<groupId>${project.parent.groupId}</groupId>
42-
<artifactId>maven-release-api</artifactId>
43-
<version>${project.parent.version}</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.semver</groupId>
47-
<artifactId>api</artifactId>
48-
<version>0.9.33</version>
49-
</dependency>
50-
51-
52-
<dependency>
53-
<groupId>org.codehaus.plexus</groupId>
54-
<artifactId>plexus-component-annotations</artifactId>
55-
<optional>true</optional>
56-
</dependency>
57-
58-
<dependency>
59-
<groupId>junit</groupId>
60-
<artifactId>junit</artifactId>
61-
<scope>test</scope>
62-
</dependency>
63-
</dependencies>
64-
65-
<build>
66-
<plugins>
67-
<plugin>
68-
<groupId>org.codehaus.plexus</groupId>
69-
<artifactId>plexus-component-metadata</artifactId>
70-
<executions>
71-
<execution>
72-
<id>process-classes</id>
73-
<goals>
74-
<goal>generate-metadata</goal>
75-
</goals>
76-
</execution>
77-
</executions>
78-
</plugin>
79-
</plugins>
80-
</build>
81-
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Licensed to the Apache Software Foundation (ASF) under one
4+
~ or more contributor license agreements. See the NOTICE file
5+
~ distributed with this work for additional information
6+
~ regarding copyright ownership. The ASF licenses this file
7+
~ to you under the Apache License, Version 2.0 (the
8+
~ "License"); you may not use this file except in compliance
9+
~ with the License. You may obtain a copy of the License at
10+
~
11+
~ http://www.apache.org/licenses/LICENSE-2.0
12+
~
13+
~ Unless required by applicable law or agreed to in writing,
14+
~ software distributed under the License is distributed on an
15+
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
~ KIND, either express or implied. See the License for the
17+
~ specific language governing permissions and limitations
18+
~ under the License.
19+
-->
20+
21+
<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">
22+
<modelVersion>4.0.0</modelVersion>
23+
24+
<parent>
25+
<groupId>org.apache.maven.release</groupId>
26+
<artifactId>maven-release</artifactId>
27+
<version>3.0.0-M1</version>
28+
<relativePath>../..</relativePath>
29+
</parent>
30+
31+
<artifactId>maven-release-semver-policy</artifactId>
32+
33+
<name>Maven Release SemVer Policy</name>
34+
<description>
35+
A version policy that enforce SemVer format and upgrades minor element for next development version.
36+
</description>
37+
38+
<dependencies>
39+
<dependency>
40+
<groupId>${project.parent.groupId}</groupId>
41+
<artifactId>maven-release-api</artifactId>
42+
<version>${project.parent.version}</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.semver</groupId>
46+
<artifactId>api</artifactId>
47+
<version>0.9.33</version>
48+
</dependency>
49+
50+
51+
<dependency>
52+
<groupId>org.codehaus.plexus</groupId>
53+
<artifactId>plexus-component-annotations</artifactId>
54+
<optional>true</optional>
55+
</dependency>
56+
57+
<dependency>
58+
<groupId>junit</groupId>
59+
<artifactId>junit</artifactId>
60+
<scope>test</scope>
61+
</dependency>
62+
</dependencies>
63+
64+
<build>
65+
<plugins>
66+
<plugin>
67+
<groupId>org.codehaus.plexus</groupId>
68+
<artifactId>plexus-component-metadata</artifactId>
69+
<executions>
70+
<execution>
71+
<id>process-classes</id>
72+
<goals>
73+
<goal>generate-metadata</goal>
74+
</goals>
75+
</execution>
76+
</executions>
77+
</plugin>
78+
</plugins>
79+
</build>
80+
8281
</project>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
<groupId>org.apache.maven</groupId>
2626
<artifactId>maven-parent</artifactId>
2727
<version>33</version>
28-
<relativePath/>
28+
<relativePath />
2929
</parent>
3030

3131
<groupId>org.apache.maven.release</groupId>
3232
<artifactId>maven-release</artifactId>
33-
<version>3.0.0-SNAPSHOT</version>
33+
<version>3.0.0-M1</version>
3434
<packaging>pom</packaging>
3535

3636
<name>Maven Release</name>
@@ -48,7 +48,7 @@
4848
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-release.git</connection>
4949
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-release.git</developerConnection>
5050
<url>https://github.com/apache/maven-release/tree/${project.scm.tag}</url>
51-
<tag>HEAD</tag>
51+
<tag>maven-release-3.0.0-M1</tag>
5252
</scm>
5353
<issueManagement>
5454
<system>jira</system>

0 commit comments

Comments
 (0)