Skip to content

Commit 0081827

Browse files
committed
Increase version to 2.1.0-SNAPSHOT
1 parent 27d69fe commit 0081827

File tree

39 files changed

+1675
-21
lines changed

39 files changed

+1675
-21
lines changed

maven-scm-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven.scm</groupId>
2525
<artifactId>maven-scm</artifactId>
26-
<version>2.0.2-SNAPSHOT</version>
26+
<version>2.1.0-SNAPSHOT</version>
2727
</parent>
2828

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

maven-scm-api/pom.xml.versionsBackup

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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+
<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">
21+
<modelVersion>4.0.0</modelVersion>
22+
23+
<parent>
24+
<groupId>org.apache.maven.scm</groupId>
25+
<artifactId>maven-scm</artifactId>
26+
<version>2.0.2-SNAPSHOT</version>
27+
</parent>
28+
29+
<artifactId>maven-scm-api</artifactId>
30+
31+
<name>Maven SCM API</name>
32+
<description>The SCM API provides mechanisms to manage all SCM tools.</description>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.slf4j</groupId>
37+
<artifactId>slf4j-api</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.codehaus.plexus</groupId>
41+
<artifactId>plexus-utils</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.apache.commons</groupId>
45+
<artifactId>commons-lang3</artifactId>
46+
<version>3.11</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
<scope>test</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.slf4j</groupId>
55+
<artifactId>slf4j-simple</artifactId>
56+
<scope>test</scope>
57+
</dependency>
58+
</dependencies>
59+
</project>

maven-scm-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven.scm</groupId>
2525
<artifactId>maven-scm</artifactId>
26-
<version>2.0.2-SNAPSHOT</version>
26+
<version>2.1.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<artifactId>maven-scm-client</artifactId>
+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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+
<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">
21+
<modelVersion>4.0.0</modelVersion>
22+
23+
<parent>
24+
<groupId>org.apache.maven.scm</groupId>
25+
<artifactId>maven-scm</artifactId>
26+
<version>2.0.2-SNAPSHOT</version>
27+
</parent>
28+
29+
<artifactId>maven-scm-client</artifactId>
30+
31+
<name>Maven SCM Client</name>
32+
<description>SCM Client is a simple SCM command line tool.</description>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.apache.maven.scm</groupId>
37+
<artifactId>maven-scm-manager-plexus</artifactId>
38+
<scope>runtime</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.apache.maven.scm</groupId>
42+
<artifactId>maven-scm-api</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.codehaus.plexus</groupId>
46+
<artifactId>plexus-utils</artifactId>
47+
</dependency>
48+
49+
<!-- providers declaration -->
50+
<dependency>
51+
<groupId>org.apache.maven.scm</groupId>
52+
<artifactId>maven-scm-provider-gitexe</artifactId>
53+
<scope>runtime</scope>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.apache.maven.scm</groupId>
57+
<artifactId>maven-scm-provider-hg</artifactId>
58+
<scope>runtime</scope>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.apache.maven.scm</groupId>
62+
<artifactId>maven-scm-provider-local</artifactId>
63+
<scope>runtime</scope>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.apache.maven.scm</groupId>
67+
<artifactId>maven-scm-provider-svnexe</artifactId>
68+
<scope>runtime</scope>
69+
</dependency>
70+
<!-- end providers declaration -->
71+
72+
<!-- runtime bits needed to construct Plexus -->
73+
<dependency>
74+
<groupId>org.codehaus.plexus</groupId>
75+
<artifactId>plexus-classworlds</artifactId>
76+
<scope>runtime</scope>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.eclipse.sisu</groupId>
80+
<artifactId>org.eclipse.sisu.plexus</artifactId>
81+
</dependency>
82+
<dependency>
83+
<groupId>com.google.inject</groupId>
84+
<artifactId>guice</artifactId>
85+
<classifier>no_aop</classifier>
86+
<scope>runtime</scope>
87+
</dependency>
88+
</dependencies>
89+
90+
<build>
91+
<plugins>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-assembly-plugin</artifactId>
95+
<configuration>
96+
<descriptorRefs>
97+
<descriptorRef>jar-with-dependencies</descriptorRef>
98+
</descriptorRefs>
99+
<finalName>maven-scm-client-${project.version}</finalName>
100+
<archive>
101+
<manifestEntries>
102+
<Main-Class>org.apache.maven.scm.client.cli.MavenScmCli</Main-Class>
103+
</manifestEntries>
104+
</archive>
105+
</configuration>
106+
<executions>
107+
<execution>
108+
<goals>
109+
<goal>single</goal>
110+
</goals>
111+
<phase>package</phase>
112+
</execution>
113+
</executions>
114+
</plugin>
115+
</plugins>
116+
</build>
117+
</project>

maven-scm-managers/maven-scm-manager-plexus/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven.scm</groupId>
2525
<artifactId>maven-scm-managers</artifactId>
26-
<version>2.0.2-SNAPSHOT</version>
26+
<version>2.1.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<artifactId>maven-scm-manager-plexus</artifactId>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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+
<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">
21+
<modelVersion>4.0.0</modelVersion>
22+
23+
<parent>
24+
<groupId>org.apache.maven.scm</groupId>
25+
<artifactId>maven-scm-managers</artifactId>
26+
<version>2.0.2-SNAPSHOT</version>
27+
</parent>
28+
29+
<artifactId>maven-scm-manager-plexus</artifactId>
30+
31+
<name>Maven SCM Manager for Plexus</name>
32+
<description>SCM Plexus component.</description>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>javax.inject</groupId>
37+
<artifactId>javax.inject</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.apache.maven.scm</groupId>
41+
<artifactId>maven-scm-api</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.slf4j</groupId>
45+
<artifactId>slf4j-api</artifactId>
46+
</dependency>
47+
</dependencies>
48+
</project>

maven-scm-managers/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven.scm</groupId>
2525
<artifactId>maven-scm</artifactId>
26-
<version>2.0.2-SNAPSHOT</version>
26+
<version>2.1.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<artifactId>maven-scm-managers</artifactId>
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
<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">
21+
<modelVersion>4.0.0</modelVersion>
22+
23+
<parent>
24+
<groupId>org.apache.maven.scm</groupId>
25+
<artifactId>maven-scm</artifactId>
26+
<version>2.0.2-SNAPSHOT</version>
27+
</parent>
28+
29+
<artifactId>maven-scm-managers</artifactId>
30+
<packaging>pom</packaging>
31+
32+
<name>Maven SCM Managers</name>
33+
<description>Parent for SCM Managers.</description>
34+
35+
<modules>
36+
<module>maven-scm-manager-plexus</module>
37+
</modules>
38+
</project>

maven-scm-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.maven.scm</groupId>
2525
<artifactId>maven-scm</artifactId>
26-
<version>2.0.2-SNAPSHOT</version>
26+
<version>2.1.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<!--

0 commit comments

Comments
 (0)