Skip to content

Commit 03a9c80

Browse files
authored
Merge pull request #61 from chrisdutz/feature/updated-cmake
Feature/updated cmake
2 parents 9f2d1b4 + c39f3d5 commit 03a9c80

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

iotdb-tools-thrift/.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

iotdb-tools-thrift/pom.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache</groupId>
2525
<artifactId>apache</artifactId>
26-
<version>30</version>
26+
<version>32</version>
2727
</parent>
2828

2929
<groupId>org.apache.iotdb.tools</groupId>
@@ -33,14 +33,14 @@
3333
contains nothing else as the compiled thrift binary without any modification.
3434
The fourth segment allows us to re-deploy, if we need to change the config.
3535
-->
36-
<version>0.19.0.0</version>
36+
<version>0.20.0.0</version>
3737
<packaging>pom</packaging>
3838

3939
<name>IoTDB-Tools: Thrift</name>
4040
<description>Local build of the Apache Thrift compiler.</description>
4141

4242
<properties>
43-
<thrift.version>0.19.0</thrift.version>
43+
<thrift.version>0.20.0</thrift.version>
4444
<thrift.with.cpp>ON</thrift.with.cpp>
4545
<thrift.with.go>ON</thrift.with.go>
4646
<thrift.with.python>ON</thrift.with.python>
@@ -211,7 +211,7 @@
211211
<plugin>
212212
<groupId>com.googlecode.cmake-maven-project</groupId>
213213
<artifactId>cmake-maven-plugin</artifactId>
214-
<version>3.27.7-b1</version>
214+
<version>3.29.3-b2</version>
215215
</plugin>
216216
<plugin>
217217
<groupId>org.sonatype.plugins</groupId>
@@ -231,7 +231,7 @@
231231
<serverId>apache.releases.https</serverId>
232232
<nexusUrl>https://repository.apache.org</nexusUrl>
233233
<skipStagingRepositoryClose>true</skipStagingRepositoryClose>
234-
<stagingRepositoryId>orgapacheiotdb-1132</stagingRepositoryId>
234+
<stagingRepositoryId>orgapacheiotdb-1158</stagingRepositoryId>
235235
</configuration>
236236
</plugin>
237237
</plugins>
@@ -415,6 +415,7 @@
415415
</activation>
416416
<properties>
417417
<os.classifier>windows-x86_64</os.classifier>
418+
<!-- We're using Mingw everywhere else, but it seems boost is not supported for that -->
418419
<cmake.generator>Visual Studio 17 2022</cmake.generator>
419420
</properties>
420421
</profile>
@@ -429,6 +430,7 @@
429430
</activation>
430431
<properties>
431432
<os.classifier>windows-aarch64</os.classifier>
433+
<!-- We're using Mingw everywhere else, but it seems boost is not supported for that -->
432434
<cmake.generator>Visual Studio 17 2022</cmake.generator>
433435
</properties>
434436
</profile>

0 commit comments

Comments
 (0)