-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpom.xml
191 lines (170 loc) · 8.44 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ ___ _ ____ ____
~ / _ \ _ _ ___ ___| |_| _ \| __ )
~ | | | | | | |/ _ \/ __| __| | | | _ \
~ | |_| | |_| | __/\__ \ |_| |_| | |_) |
~ \__\_\\__,_|\___||___/\__|____/|____/
~
~ Copyright (c) 2014-2019 Appsicle
~ Copyright (c) 2019-2023 QuestDB
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.questdb</groupId>
<artifactId>rust-maven-jni-example</artifactId>
<version>1.2.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Rust Maven Plugin Usage Example</name>
<description>A Java command line tool with a string reverse function written in Rust bridged over JNI.</description>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<scm>
<url>https://github.com/questdb/rust-maven-plugin</url>
<connection>scm:git:https://github.com/questdb/rust-maven-plugin.git</connection>
<developerConnection>scm:git:https://github.com/questdb/rust-maven-plugin.git</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.questdb</groupId>
<artifactId>jar-jni</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!--
The Rust Maven Plugin
Here it'll build the `str-reverse` crate and place the cdylib in the target's "classes" directory.
Placing it there will have Maven automatically bundle the compiled code in the Jar.
-->
<plugin>
<groupId>org.questdb</groupId>
<artifactId>rust-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>str-reverse</id>
<goals>
<goal>build</goal>
</goals>
<configuration>
<!--
Notes:
* All paths are relative to ${project.basedir}
* Spacing around double dashes to satisfy the XML parser.
-->
<!--
If you need to, you can customize the path to the Cargo command
Otherwise by default it will be searched for in the PATH.
-->
<!-- <cargoPath>/custom/path/to/rust/bin/cargo</cargoPath> -->
<!--
The path to the Rust crate we want to build (which will contain a Cargo.toml).
-->
<path>src/main/rust/str-reverse</path>
<!--
Passes `- - release` to `cargo build` to create a release build.
The default is to just call `cargo build` producing a debug build.
Many of the other `cargo build` options are also supported.
E.g. ` - - features` and ` - - no-default-features`.
-->
<release>true</release>
<!--
Copy the generated binaries to the "classes" directory in the build target.
We use this path because it will be bundled automatically into the final jar.
-->
<copyTo>${project.build.directory}/classes/io/questdb/jni/example/rust/libs</copyTo>
<!--
Further nest copy into a child directory named through the target's platform.
The directory name is computed by the `io.questdb.jar.jni.OsInfo.platform()` method.
-->
<copyWithPlatformDir>true</copyWithPlatformDir>
<!--
Additional environment variables used when calling `cargo build`.
-->
<environmentVariables>
<REVERSED_STR_PREFIX>Great Scott, A reversed string!</REVERSED_STR_PREFIX>
</environmentVariables>
</configuration>
</execution>
<execution>
<!-- The plugin can also be used to compile binaries. -->
<id>str-reverse-binary</id>
<goals>
<goal>build</goal>
</goals>
<configuration>
<path>src/main/rust/str-reverse-binary</path>
<release>true</release>
<copyTo>${project.build.directory}/bin</copyTo>
<features>
<feature>header</feature>
<feature>footer</feature>
</features>
</configuration>
</execution>
<execution>
<id>str-reverse-test</id>
<!--
This execution will run the `cargo test` command on the crate.
This is useful for running unit tests written in Rust.
-->
<goals>
<goal>test</goal>
</goals>
<configuration>
<!-- Relative path to the crate. -->
<path>src/main/rust/str-reverse</path>
<!-- Specify `true` to test a release (rather than debug) build. -->
<release>false</release>
<verbosity>-v</verbosity>
<environmentVariables>
<REVERSED_STR_PREFIX>Testing prefix</REVERSED_STR_PREFIX>
</environmentVariables>
</configuration>
</execution>
<execution>
<!--
This is an example of how to skip an execution.
You can use this to skip both "build" and "test" executions.
-->
<id>dummy</id>
<goals>
<goal>build</goal>
</goals>
<configuration>
<skip>true</skip>
<path>required, but not evaluated if skipped</path>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>