-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
64 lines (58 loc) · 2.09 KB
/
Copy pathpom.xml
File metadata and controls
64 lines (58 loc) · 2.09 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<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.tomitribe</groupId>
<artifactId>repaint-parent</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Repaint :: Parent</name>
<description>
Live in-place terminal rendering in Java, built up one module at a time.
Each module is a standalone CLI that adds one mechanism layer and one
lesson; each README starts from the previous module's visible defect.
See README.md for the ladder and docs/ for the survey this is built from.
</description>
<modules>
<module>01-one-line</module>
<module>02-block</module>
<module>03-terminal</module>
<module>04-width</module>
<module>05-smooth</module>
</modules>
<profiles>
<!-- 06-resize uses FFM (final in Java 22): built only when the JDK
running maven is 22+, so a plain Java-17 build still succeeds.
Build everything with:
JAVA_HOME=/Library/Java/JavaVirtualMachines/temurin-25.jdk/Contents/Home mvn clean package -->
<profile>
<id>jdk22-modules</id>
<activation>
<jdk>[22,)</jdk>
</activation>
<modules>
<module>06-resize</module>
</modules>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<crest.version>0.46</crest.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.tomitribe</groupId>
<artifactId>tomitribe-crest</artifactId>
<version>${crest.version}</version>
</dependency>
<dependency>
<groupId>org.tomitribe</groupId>
<artifactId>tomitribe-crest-api</artifactId>
<version>${crest.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>