Skip to content

Commit d77b30b

Browse files
committed
[maven-release-plugin] prepare release 0.9.0
1 parent ef0e110 commit d77b30b

File tree

7 files changed

+25
-29
lines changed

7 files changed

+25
-29
lines changed

rococoa/pom.xml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
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/maven-v4_0_0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>org.rococoa</groupId>
65
<artifactId>rococoa-parent</artifactId>
76
<packaging>pom</packaging>
8-
<version>0.8.3-SNAPSHOT</version>
7+
<version>0.9.0</version>
98
<name>Rococoa Parent Project</name>
109
<url>https://github.com/iterate-ch/rococoa</url>
1110

@@ -78,7 +77,7 @@
7877
<url>https://github.com/iterate-ch/rococoa</url>
7978
<connection>scm:git:[email protected]:iterate-ch/rococoa.git</connection>
8079
<developerConnection>scm:git:[email protected]:iterate-ch/rococoa.git</developerConnection>
81-
<tag>HEAD</tag>
80+
<tag>0.9.0</tag>
8281
</scm>
8382

8483
<distributionManagement>

rococoa/rococoa-auto/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
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/maven-v4_0_0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<artifactId>rococoa-auto</artifactId>
65
<packaging>jar</packaging>
@@ -10,7 +9,7 @@
109
<parent>
1110
<groupId>org.rococoa</groupId>
1211
<artifactId>rococoa-parent</artifactId>
13-
<version>0.8.3-SNAPSHOT</version>
12+
<version>0.9.0</version>
1413
</parent>
1514

1615
<properties>

rococoa/rococoa-cocoa/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.rococoa</groupId>
1111
<artifactId>rococoa-parent</artifactId>
12-
<version>0.8.3-SNAPSHOT</version>
12+
<version>0.9.0</version>
1313
</parent>
1414

1515
<dependencies>

rococoa/rococoa-contrib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.rococoa</groupId>
1111
<artifactId>rococoa-parent</artifactId>
12-
<version>0.8.3-SNAPSHOT</version>
12+
<version>0.9.0</version>
1313
</parent>
1414

1515
<dependencies>

rococoa/rococoa-core/dylib/pom.xml

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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">
43
<modelVersion>4.0.0</modelVersion>
54
<artifactId>librococoa</artifactId>
65
<name>Rococoa Core Native Library</name>
@@ -9,7 +8,7 @@
98
<groupId>org.rococoa</groupId>
109
<artifactId>rococoa-parent</artifactId>
1110
<relativePath>../../pom.xml</relativePath>
12-
<version>0.8.3-SNAPSHOT</version>
11+
<version>0.9.0</version>
1312
</parent>
1413
<build>
1514
<plugins>
@@ -25,12 +24,12 @@
2524
<configuration>
2625
<target>
2726
<exec dir="${project.basedir}/.." executable="xcodebuild" failonerror="true">
28-
<arg value="-project"/>
29-
<arg value="rococoa.xcodeproj"/>
30-
<arg value="-target"/>
31-
<arg value="librococoa-test"/>
32-
<arg value="-configuration"/>
33-
<arg value="Release"/>
27+
<arg value="-project" />
28+
<arg value="rococoa.xcodeproj" />
29+
<arg value="-target" />
30+
<arg value="librococoa-test" />
31+
<arg value="-configuration" />
32+
<arg value="Release" />
3433
</exec>
3534
</target>
3635
</configuration>
@@ -44,13 +43,13 @@
4443
<configuration>
4544
<target>
4645
<exec dir="${project.basedir}/.." executable="xcodebuild" failonerror="true">
47-
<arg value="-project"/>
48-
<arg value="rococoa.xcodeproj"/>
49-
<arg value="-target"/>
50-
<arg value="librococoa-test"/>
51-
<arg value="-configuration"/>
52-
<arg value="Release"/>
53-
<arg value="clean"/>
46+
<arg value="-project" />
47+
<arg value="rococoa.xcodeproj" />
48+
<arg value="-target" />
49+
<arg value="librococoa-test" />
50+
<arg value="-configuration" />
51+
<arg value="Release" />
52+
<arg value="clean" />
5453
</exec>
5554
</target>
5655
</configuration>

rococoa/rococoa-core/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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">
43
<modelVersion>4.0.0</modelVersion>
54
<artifactId>rococoa-core</artifactId>
65
<packaging>jar</packaging>
@@ -9,7 +8,7 @@
98
<parent>
109
<groupId>org.rococoa</groupId>
1110
<artifactId>rococoa-parent</artifactId>
12-
<version>0.8.3-SNAPSHOT</version>
11+
<version>0.9.0</version>
1312
</parent>
1413
<dependencies>
1514
<dependency>

rococoa/rococoa-functionaltest/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.rococoa</groupId>
1010
<artifactId>rococoa-parent</artifactId>
11-
<version>0.8.3-SNAPSHOT</version>
11+
<version>0.9.0</version>
1212
</parent>
1313

1414
<dependencies>

0 commit comments

Comments
 (0)