-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
118 lines (107 loc) · 4.26 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
<?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>
<parent>
<groupId>com.techsenger.maven-root</groupId>
<artifactId>maven-root</artifactId>
<version>1.3.0</version>
</parent>
<groupId>com.techsenger.ansi4j</groupId>
<artifactId>ansi4j</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<name>Ansi4j</name>
<description>Techsenger Ansi4j provides ISO/IEC 6429 text parsing and styling with CSS</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<url>https://github.com/techsenger/ansi4j</url>
<scm>
<connection>scm:git:https://github.com/techsenger/ansi4j.git</connection>
<developerConnection>scm:git:https://github.com/techsenger/ansi4j.git</developerConnection>
<url>https://github.com/techsenger/ansi4j</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/techsenger/ansi4j/issues</url>
</issueManagement>
<developers>
<developer>
<id>pavel-castornii</id>
<name>Pavel Castornii</name>
</developer>
</developers>
<properties>
<maven.compiler.release>14</maven.compiler.release>
<javafx.version>14</javafx.version>
<publishing.plugin.exclusions>ansi4j-core-it,ansi4j-css-it,ansi4j-css-demo</publishing.plugin.exclusions>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.techsenger.osp-bom</groupId>
<artifactId>osp-bom</artifactId>
<version>1.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.techsenger.ansi4j</groupId>
<artifactId>ansi4j-core-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.techsenger.ansi4j</groupId>
<artifactId>ansi4j-core-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.techsenger.ansi4j</groupId>
<artifactId>ansi4j-css-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.techsenger.ansi4j</groupId>
<artifactId>ansi4j-css-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>${javafx.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>ansi4j-core-api</module>
<module>ansi4j-core-impl</module>
<module>ansi4j-core-it</module>
<module>ansi4j-css-api</module>
<module>ansi4j-css-impl</module>
<module>ansi4j-css-it</module>
<module>ansi4j-css-demo</module>
</modules>
</project>