Skip to content

Commit ccd2444

Browse files
committed
[artifactory-release] Release version 2.0.0.M1
1 parent ce1563f commit ccd2444

File tree

10 files changed

+40
-42
lines changed

10 files changed

+40
-42
lines changed

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>org.springframework.shell</groupId>
66
<artifactId>spring-shell-parent</artifactId>
77
<name>Spring Shell Parent POM</name>
8-
<version>2.0.0.BUILD-SNAPSHOT</version>
8+
<version>2.0.0.M1</version>
99
<packaging>pom</packaging>
1010

1111
<parent>
@@ -47,42 +47,42 @@
4747
<dependency>
4848
<groupId>org.springframework.shell</groupId>
4949
<artifactId>spring-shell-core</artifactId>
50-
<version>${project.version}</version>
50+
<version>2.0.0.M1</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.springframework.shell</groupId>
5454
<artifactId>spring-shell-core-test-support</artifactId>
55-
<version>${project.version}</version>
55+
<version>2.0.0.M1</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.springframework.shell</groupId>
5959
<artifactId>spring-shell-standard</artifactId>
60-
<version>${project.version}</version>
60+
<version>2.0.0.M1</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>org.springframework.shell</groupId>
6464
<artifactId>spring-shell-standard-commands</artifactId>
65-
<version>${project.version}</version>
65+
<version>2.0.0.M1</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.springframework.shell</groupId>
6969
<artifactId>spring-shell-shell1-adapter</artifactId>
70-
<version>${project.version}</version>
70+
<version>2.0.0.M1</version>
7171
</dependency>
7272
<dependency>
7373
<groupId>org.springframework.shell</groupId>
7474
<artifactId>spring-shell-jcommander-adapter</artifactId>
75-
<version>${project.version}</version>
75+
<version>2.0.0.M1</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.springframework.shell</groupId>
7979
<artifactId>spring-shell-starter</artifactId>
80-
<version>${project.version}</version>
80+
<version>2.0.0.M1</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework.shell</groupId>
8484
<artifactId>spring-shell-table</artifactId>
85-
<version>${project.version}</version>
85+
<version>2.0.0.M1</version>
8686
</dependency>
8787
<!-- OTHER DEPS -->
8888
<dependency>

spring-shell-core-test-support/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-core-test-support</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Core API test classes for Spring Shell 2</description>

spring-shell-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-core</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Core API and classes for Spring Shell 2</description>

spring-shell-docs/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-docs</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Spring Shell reference documentation</description>
@@ -125,8 +125,8 @@
125125
<backend>pdf</backend>
126126
<sourceHighlighter>coderay</sourceHighlighter>
127127
<attributes>
128-
<toc/>
129-
<pagenums/>
128+
<toc />
129+
<pagenums />
130130
</attributes>
131131
</configuration>
132132
</execution>

spring-shell-jcommander-adapter/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-jcommander-adapter</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Adapter classes to allow JCommander type annotations and parsing via Spring Shell 2</description>

spring-shell-shell1-adapter/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-shell1-adapter</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Adapter classes to enable Shell 1 type annotations via Spring Shell 2</description>

spring-shell-standard-commands/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-standard-commands</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Standard out-of-the-box shell commands, implemented using the Standard API</description>

spring-shell-standard/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-standard</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>APIs and resolvers for using the standard Spring Shell programming model</description>

spring-shell-starter/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
44

55
<artifactId>spring-shell-starter</artifactId>
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.springframework.shell</groupId>
1111
<artifactId>spring-shell-parent</artifactId>
12-
<version>2.0.0.BUILD-SNAPSHOT</version>
12+
<version>2.0.0.M1</version>
1313
</parent>
1414

1515
<description>Starter Dependency for Using Spring Shell</description>

spring-shell-table/pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<!--
23
~ Copyright 2017 the original author or authors.
34
~
@@ -12,10 +13,7 @@
1213
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1314
~ See the License for the specific language governing permissions and
1415
~ limitations under the License.
15-
-->
16-
17-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
16+
--><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">
1917
<modelVersion>4.0.0</modelVersion>
2018

2119
<artifactId>spring-shell-table</artifactId>
@@ -25,7 +23,7 @@
2523
<parent>
2624
<groupId>org.springframework.shell</groupId>
2725
<artifactId>spring-shell-parent</artifactId>
28-
<version>2.0.0.BUILD-SNAPSHOT</version>
26+
<version>2.0.0.M1</version>
2927
</parent>
3028

3129
<description>Library to Display Fancy ASCII art Tables</description>

0 commit comments

Comments
 (0)