forked from brunomnsilva/JavaFXSmartGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependency-reduced-pom.xml
More file actions
140 lines (140 loc) · 4.97 KB
/
dependency-reduced-pom.xml
File metadata and controls
140 lines (140 loc) · 4.97 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
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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.vittoriopiotti</groupId>
<artifactId>PathGraph-JavaFX</artifactId>
<name>PathGraph-JavaFX</name>
<version>1.0.9</version>
<description>Library with all the tools necessary to create and work both path and walk graphs in a stable and simple way. Create graphs with nodes, edges, and associated costs, in a stable interface to manage, and interact with the graphs.</description>
<url>https://github.com/vittorioPiotti/PathGraph-JavaFX</url>
<developers>
<developer>
<id>vittorioPiotti</id>
<name>Vittorio Piotti</name>
<email>vittoriopiotti.it@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License, Version 3.0</name>
<url>https://github.com/vittorioPiotti/PathGraph-JavaFX/blob/main/LICENSE.txt</url>
<distribution>repo</distribution>
<comments>This license applies to the original PathGraph-JavaFX code.</comments>
</license>
<license>
<name>MIT License</name>
<url>https://github.com/brunomnsilva/JavaFXSmartGraph/blob/master/LICENSE.txt</url>
<distribution>repo</distribution>
<comments>This license applies to the original JavaFXSmartGraph code.</comments>
</license>
<license>
<name>MIT License</name>
<url>https://github.com/twbs/icons/blob/main/LICENSE</url>
<distribution>repo</distribution>
<comments>This license applies to the Bootstrap SVG icons.</comments>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/vittorioPiotti/PathGraph-JavaFX.git</connection>
<developerConnection>scm:git:ssh://github.com:vittorioPiotti/PathGraph-JavaFX.git</developerConnection>
<url>https://github.com/vittorioPiotti/PathGraph-JavaFX</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>com.vittoriopiotti.pathgraph.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
<configuration>
<mainClass>io.github.vittoriopiotti.pathgraph.Main</mainClass>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github</id>
<name>PathGraph-JavaFX</name>
<url>https://maven.pkg.github.com/vittorioPiotti/PathGraph-JavaFX</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javafx.version>22</javafx.version>
<junit.version>5.10.2</junit.version>
</properties>
</project>