-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
149 lines (136 loc) · 5.71 KB
/
pom.xml
File metadata and controls
149 lines (136 loc) · 5.71 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
141
142
143
144
145
146
147
148
149
<?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>
<!-- Project coordinates -->
<groupId>org.pwss</groupId>
<artifactId>integrity_hash</artifactId>
<packaging>jar</packaging>
<version>1.2.3</version>
<description>A GUI application for file integrity checking</description>
<!-- Licenses -->
<licenses>
<license>
<name>Apache 2.0 License</name>
<url>https://github.com/pwssOrg/File-Integrity-GUI/master/LICENSE.md</url>
<distribution>repo</distribution>
<comments>
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
</comments>
</license>
</licenses>
<!-- Developers -->
<developers>
<developer>
<name>Peter Westin</name>
<email>peter.westin@pwss.dev</email>
<timezone>Europe/Stockholm</timezone>
</developer>
<developer>
<name>Stefan Smudja</name>
<email>stefan.smudja@pwss.dev</email>
<timezone>Europe/Stockholm</timezone>
</developer>
</developers>
<!-- Properties for the project -->
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.mainClass>org.pwss.Start</project.mainClass>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- Project dependencies -->
<dependencies>
<!-- Jackson Databind dependency for JSON processing -->
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind/2.21.3 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.21.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic/1.5.32 -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.32</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api/6.0.3 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>6.0.3</version>
<scope>test</scope>
</dependency>
<!-- IntelliJ GUI Designer runtime -->
<!-- https://mvnrepository.com/artifact/com.intellij/forms_rt/7.0.3 -->
<dependency>
<groupId>com.intellij</groupId>
<artifactId>forms_rt</artifactId>
<version>7.0.3</version>
</dependency>
<!-- FlatLaf dependency for modern UI look and feel -->
<!-- https://mvnrepository.com/artifact/com.formdev/flatlaf/3.7 -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.7</version>
</dependency>
</dependencies>
<!-- Build configuration for the project -->
<build>
<plugins>
<!-- Plugin to execute Java classes from Maven -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.codehaus.mojo/exec-maven-plugin -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<mainClass>${project.mainClass}</mainClass>
</configuration>
</plugin>
<!-- Plugin to configure Java compiler settings -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin/3.14.1 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<!-- Plugin to create a JAR with dependencies -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin/3.8.0 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<archive>
<manifest>
<!-- Main class for the executable JAR -->
<mainClass>${project.mainClass}</mainClass>
</manifest>
</archive>
<descriptorRefs>
<!-- Reference to include dependencies in the JAR -->
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<!-- Execute this plugin during the package phase -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>