-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
33 lines (28 loc) · 1.38 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>systems.manifold</groupId>
<artifactId>manifold-simple-query</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<name>Manifold :: Simple Query</name>
<description>
A simple example demonstrating how Manifold's ICompilerComponent SPI can be used to transform Java's AST.
</description>
<url>http://manifold.systems/</url>
<modules>
<module>manifold-simple-query-api</module>
<module>manifold-simple-query-ast-transformer</module>
<module>manifold-simple-query-processor</module>
</modules>
<properties>
<revision>0.1-SNAPSHOT</revision>
<manifold-version>2022.1.18</manifold-version>
<!-- Manifold supports Java versions 8 - 17 (current release) -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<!-- Use this if compiling with Java 9 or later and targeting an older Java version -->
<!-- <maven.compiler.release>6</maven.compiler.release> -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>