This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/develop by this push:
new 5600e710 Bump org.codehaus.mojo:exec-maven-plugin from 1.6.0 to 3.3.0
(#189)
5600e710 is described below
commit 5600e710d0e817d5d222ed1842079af5e5147f1d
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 1 23:30:05 2024 +0800
Bump org.codehaus.mojo:exec-maven-plugin from 1.6.0 to 3.3.0 (#189)
* Bump org.codehaus.mojo:exec-maven-plugin from 1.6.0 to 3.3.0
Bumps
[org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin)
from 1.6.0 to 3.3.0.
- [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases)
-
[Commits](https://github.com/mojohaus/exec-maven-plugin/compare/exec-maven-plugin-1.6.0...3.3.0)
---
updated-dependencies:
- dependency-name: org.codehaus.mojo:exec-maven-plugin
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
* fix error
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: HTHou <[email protected]>
---
pom.xml | 18 +++++++++---------
python/pom.xml | 2 +-
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/pom.xml b/pom.xml
index a49df499..995c32e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -197,7 +197,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
- <version>1.6.0</version>
+ <version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
@@ -652,7 +652,7 @@
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
- <python.compiler.argument/>
+ <cython.compiler>unix</cython.compiler>
</properties>
</profile>
<!-- Profile for linux amd64 (mainly AMD Processors) (Self-Enabling)
-->
@@ -671,7 +671,7 @@
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
- <python.compiler.argument/>
+ <cython.compiler>unix</cython.compiler>
</properties>
</profile>
<!-- Profile for linux aarch64 (mainly ARM64 Processors)
(Self-Enabling) -->
@@ -690,7 +690,7 @@
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
- <python.compiler.argument/>
+ <cython.compiler>unix</cython.compiler>
</properties>
</profile>
<!-- Profile for mac x86_64 (mainly Intel Processors) (Self-Enabling)
-->
@@ -708,7 +708,7 @@
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
- <python.compiler.argument/>
+ <cython.compiler>unix</cython.compiler>
</properties>
</profile>
<!-- Profile for mac aarch64 (mainly new Mac Processors)
(Self-Enabling) -->
@@ -726,7 +726,7 @@
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
- <python.compiler.argument/>
+ <cython.compiler>unix</cython.compiler>
</properties>
</profile>
<!-- profile for windows x86_64 (mainly Intel Processors)
(Self-Enabling) -->
@@ -746,7 +746,7 @@
<!--cmake.generator>Visual Studio 17 2022</cmake.generator-->
<python.venv.bin>venv/Scripts/</python.venv.bin>
<python.exe.bin>python</python.exe.bin>
-
<python.compiler.argument>--compiler=mingw32</python.compiler.argument>
+ <cython.compiler>mingw32</cython.compiler>
</properties>
</profile>
<!-- profile for windows amd64 (mainly AMD Processors) (Self-Enabling)
-->
@@ -766,7 +766,7 @@
<!--cmake.generator>Visual Studio 17 2022</cmake.generator-->
<python.venv.bin>venv/Scripts/</python.venv.bin>
<python.exe.bin>python</python.exe.bin>
-
<python.compiler.argument>--compiler=mingw32</python.compiler.argument>
+ <cython.compiler>mingw32</cython.compiler>
</properties>
</profile>
<!-- profile for windows aarch64 (mainly VM on newer Mac)
(Self-Enabling) -->
@@ -786,7 +786,7 @@
<!--cmake.generator>Visual Studio 17 2022</cmake.generator-->
<python.venv.bin>venv/Scripts/</python.venv.bin>
<python.exe.bin>python</python.exe.bin>
-
<python.compiler.argument>--compiler=mingw32</python.compiler.argument>
+ <cython.compiler>mingw32</cython.compiler>
</properties>
</profile>
<!-- Little helper profile that will disable running the cmake tests
when the maven tests are being skipped -->
diff --git a/python/pom.xml b/python/pom.xml
index 2c6a7b70..63a3689f 100644
--- a/python/pom.xml
+++ b/python/pom.xml
@@ -103,7 +103,7 @@
<argument>setup.py</argument>
<argument>build_ext</argument>
<argument>--inplace</argument>
-
<argument>${python.compiler.argument}</argument>
+
<argument>--compiler=${cython.compiler}</argument>
</arguments>
</configuration>
</execution>