Skip to content

Commit ea438b2

Browse files
committed
[maven-release-plugin] prepare release v2.3.0
1 parent ff8fafd commit ea438b2

8 files changed

Lines changed: 22 additions & 22 deletions

File tree

cpp/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.tsfile</groupId>
2424
<artifactId>tsfile-parent</artifactId>
25-
<version>2.3.1-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
</parent>
2727
<artifactId>tsfile-cpp</artifactId>
2828
<packaging>pom</packaging>
@@ -89,8 +89,8 @@
8989
<option>-DENABLE_ZLIB=${enable.zlib}</option>
9090
<option>-DENABLE_SIMDE=${enable.simde}</option>
9191
</options>
92-
<sourcePath />
93-
<targetPath />
92+
<sourcePath/>
93+
<targetPath/>
9494
</configuration>
9595
</execution>
9696
<!-- Compile the test code -->

java/common/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.tsfile</groupId>
2626
<artifactId>tsfile-java</artifactId>
27-
<version>2.3.1-SNAPSHOT</version>
27+
<version>2.3.0</version>
2828
</parent>
2929
<artifactId>common</artifactId>
3030
<name>TsFile: Java: Common</name>

java/examples/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.tsfile</groupId>
2626
<artifactId>tsfile-java</artifactId>
27-
<version>2.3.1-SNAPSHOT</version>
27+
<version>2.3.0</version>
2828
</parent>
2929
<artifactId>examples</artifactId>
3030
<name>TsFile: Java: Examples</name>
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.apache.tsfile</groupId>
3838
<artifactId>tsfile</artifactId>
39-
<version>2.3.1-SNAPSHOT</version>
39+
<version>2.3.0</version>
4040
</dependency>
4141
</dependencies>
4242
<build>

java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
<parent>
2525
<groupId>org.apache.tsfile</groupId>
2626
<artifactId>tsfile-parent</artifactId>
27-
<version>2.3.1-SNAPSHOT</version>
27+
<version>2.3.0</version>
2828
</parent>
2929
<artifactId>tsfile-java</artifactId>
30-
<version>2.3.1-SNAPSHOT</version>
30+
<version>2.3.0</version>
3131
<packaging>pom</packaging>
3232
<name>TsFile: Java</name>
3333
<modules>
@@ -104,7 +104,7 @@
104104
<importOrder>
105105
<order>org.apache.tsfile,,javax,java,\#</order>
106106
</importOrder>
107-
<removeUnusedImports />
107+
<removeUnusedImports/>
108108
</java>
109109
<lineEndings>UNIX</lineEndings>
110110
</configuration>

java/tools/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
<parent>
2525
<groupId>org.apache.tsfile</groupId>
2626
<artifactId>tsfile-java</artifactId>
27-
<version>2.3.1-SNAPSHOT</version>
27+
<version>2.3.0</version>
2828
</parent>
2929
<artifactId>tools</artifactId>
3030
<name>TsFile: Java: Tools</name>
3131
<dependencies>
3232
<dependency>
3333
<groupId>org.apache.tsfile</groupId>
3434
<artifactId>common</artifactId>
35-
<version>2.3.1-SNAPSHOT</version>
35+
<version>2.3.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>commons-cli</groupId>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.apache.tsfile</groupId>
4444
<artifactId>tsfile</artifactId>
45-
<version>2.3.1-SNAPSHOT</version>
45+
<version>2.3.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>ch.qos.logback</groupId>

java/tsfile/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.tsfile</groupId>
2626
<artifactId>tsfile-java</artifactId>
27-
<version>2.3.1-SNAPSHOT</version>
27+
<version>2.3.0</version>
2828
</parent>
2929
<artifactId>tsfile</artifactId>
3030
<name>TsFile: Java: TsFile</name>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.apache.tsfile</groupId>
4040
<artifactId>common</artifactId>
41-
<version>2.3.1-SNAPSHOT</version>
41+
<version>2.3.0</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>com.github.luben</groupId>
@@ -145,10 +145,10 @@
145145
<goal>shade</goal>
146146
</goals>
147147
<configuration>
148-
<relocations />
148+
<relocations/>
149149
<createDependencyReducedPom>false</createDependencyReducedPom>
150150
<transformers>
151-
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" />
151+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/>
152152
</transformers>
153153
</configuration>
154154
</execution>
@@ -185,7 +185,7 @@
185185
<Export-Package>org.apache.tsfile.*</Export-Package>
186186
<Embed-Dependency>common;inline=true</Embed-Dependency>
187187
<Embed-Transitive>false</Embed-Transitive>
188-
<Private-Package />
188+
<Private-Package/>
189189
<_removeheaders>Bnd-LastModified,Built-By</_removeheaders>
190190
<Bundle-SymbolicName>org.apache.tsfile</Bundle-SymbolicName>
191191
</instructions>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
</parent>
2929
<groupId>org.apache.tsfile</groupId>
3030
<artifactId>tsfile-parent</artifactId>
31-
<version>2.3.1-SNAPSHOT</version>
31+
<version>2.3.0</version>
3232
<packaging>pom</packaging>
3333
<name>Apache TsFile Project Parent POM</name>
3434
<properties>
3535
<maven.compiler.source>1.8</maven.compiler.source>
3636
<maven.compiler.target>1.8</maven.compiler.target>
37-
<argLine />
37+
<argLine/>
3838
<spotless.skip>false</spotless.skip>
3939
<cmake.version>3.30.2-b1</cmake.version>
4040
<spotless.version>2.44.3</spotless.version>
@@ -243,7 +243,7 @@
243243
<phase>validate</phase>
244244
<configuration>
245245
<rules>
246-
<dependencyConvergence />
246+
<dependencyConvergence/>
247247
</rules>
248248
</configuration>
249249
</execution>
@@ -567,7 +567,7 @@
567567
<connection>scm:git:ssh://git@github.com/apache/tsfile.git</connection>
568568
<developerConnection>scm:git:ssh://git@github.com/apache/tsfile.git</developerConnection>
569569
<url>ssh://git@github.com:apache/tsfile.git</url>
570-
<tag>HEAD</tag>
570+
<tag>v2.3.0</tag>
571571
</scm>
572572
<issueManagement>
573573
<system>GitHub Issues</system>

python/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.tsfile</groupId>
2424
<artifactId>tsfile-parent</artifactId>
25-
<version>2.3.1-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
</parent>
2727
<artifactId>tsfile-python</artifactId>
2828
<packaging>pom</packaging>

0 commit comments

Comments
 (0)