Skip to content

Commit 87edeea

Browse files
committed
[maven-release-plugin] prepare release siddhi-2.2.0
1 parent fe9104d commit 87edeea

File tree

10 files changed

+30
-53
lines changed

10 files changed

+30
-53
lines changed

modules/siddhi-api/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>siddhi</artifactId>
75
<groupId>org.wso2.siddhi</groupId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../../pom.xml</relativePath>
108

119
</parent>

modules/siddhi-core/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>siddhi</artifactId>
75
<groupId>org.wso2.siddhi</groupId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../../pom.xml</relativePath>
108

119
</parent>

modules/siddhi-distribution/pom.xml

+11-16
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>siddhi</artifactId>
75
<groupId>org.wso2.siddhi</groupId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../../pom.xml</relativePath>
108

119
</parent>
@@ -136,33 +134,30 @@
136134
</goals>
137135
<configuration>
138136
<tasks>
139-
<copy todir="${dest.dir}/jar-with-dependencies"
140-
includeemptydirs="false">
137+
<copy todir="${dest.dir}/jar-with-dependencies" includeemptydirs="false">
141138
<fileset dir="target">
142-
<include name="**/*.jar"/>
139+
<include name="**/*.jar" />
143140
</fileset>
144141
</copy>
145-
<copy todir="${dest.dir}/samples" overwrite="false"
146-
includeemptydirs="false">
142+
<copy todir="${dest.dir}/samples" overwrite="false" includeemptydirs="false">
147143
<fileset dir="../samples">
148-
<exclude name="**/build/**"/>
144+
<exclude name="**/build/**" />
149145
</fileset>
150146
</copy>
151147
<copy todir="${dest.dir}/jars" includeemptydirs="false">
152148
<fileset dir="${dest.dir}/samples/lib">
153-
<include name="**/siddhi*.jar"/>
149+
<include name="**/siddhi*.jar" />
154150
</fileset>
155151
</copy>
156-
<copy todir="${dest.dir}/" overwrite="false"
157-
includeemptydirs="false">
152+
<copy todir="${dest.dir}/" overwrite="false" includeemptydirs="false">
158153
<fileset dir="../../">
159-
<include name="**/README.txt"/>
154+
<include name="**/README.txt" />
160155
</fileset>
161156
</copy>
162157
<zip destfile="target/siddhi-${project.version}.zip">
163-
<zipfileset dir="target/temp"/>
158+
<zipfileset dir="target/temp" />
164159
</zip>
165-
<delete dir="target/temp"/>
160+
<delete dir="target/temp" />
166161
</tasks>
167162
</configuration>
168163
</execution>

modules/siddhi-extensions/machine-learning/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
-->
19-
<project
20-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
21-
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
19+
<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">
2220
<parent>
2321
<groupId>org.wso2.siddhi</groupId>
2422
<artifactId>siddhi-extensions</artifactId>
25-
<version>2.2.0-SNAPSHOT</version>
23+
<version>2.2.0</version>
2624
</parent>
2725

2826
<modelVersion>4.0.0</modelVersion>

modules/siddhi-extensions/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>siddhi</artifactId>
75
<groupId>org.wso2.siddhi</groupId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../../pom.xml</relativePath>
108
</parent>
119
<modelVersion>4.0.0</modelVersion>

modules/siddhi-extensions/time-series/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<groupId>org.wso2.siddhi</groupId>
75
<artifactId>siddhi-extensions</artifactId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../pom.xml</relativePath>
108
</parent>
119
<modelVersion>4.0.0</modelVersion>

modules/siddhi-query/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>siddhi</artifactId>
75
<groupId>org.wso2.siddhi</groupId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../../pom.xml</relativePath>
108
</parent>
119
<modelVersion>4.0.0</modelVersion>

modules/siddhi-samples/performance-samples/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
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">
53
<parent>
64
<groupId>org.wso2.siddhi</groupId>
75
<artifactId>siddhi-samples</artifactId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119
<artifactId>performance-samples</artifactId>

modules/siddhi-samples/pom.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
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">
53
<parent>
64
<artifactId>siddhi</artifactId>
75
<groupId>org.wso2.siddhi</groupId>
8-
<version>2.2.0-SNAPSHOT</version>
6+
<version>2.2.0</version>
97
<relativePath>../../pom.xml</relativePath>
108

119
</parent>

pom.xml

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
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">
53
<modelVersion>4.0.0</modelVersion>
64

75
<parent>
@@ -13,7 +11,7 @@
1311
<groupId>org.wso2.siddhi</groupId>
1412
<artifactId>siddhi</artifactId>
1513
<packaging>pom</packaging>
16-
<version>2.2.0-SNAPSHOT</version>
14+
<version>2.2.0</version>
1715
<name>Siddhi</name>
1816
<description>Siddhi, high performing Complex Event Processing Engine</description>
1917

@@ -247,7 +245,7 @@
247245
<url>https://github.com/wso2/siddhi.git</url>
248246
<developerConnection>scm:git:https://github.com/wso2/siddhi.git</developerConnection>
249247
<connection>scm:git:https://github.com/wso2/siddhi.git</connection>
250-
<tag>HEAD</tag>
248+
<tag>siddhi-2.2.0</tag>
251249
</scm>
252250

253251
<mailingLists>

0 commit comments

Comments
 (0)