1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >com.nexttimespace.utilities</groupId >
6+ <artifactId >json-diff-report</artifactId >
7+ <version >0.0.1-SNAPSHOT</version >
8+ <description >Provides JSON differences in HTML format</description >
9+
10+ <build >
11+ <plugins >
12+ <plugin >
13+ <groupId >org.apache.maven.plugins</groupId >
14+ <artifactId >maven-assembly-plugin</artifactId >
15+ <version >3.1.0</version >
16+ <configuration >
17+ <descriptorRefs >
18+ <descriptorRef >jar-with-dependencies</descriptorRef >
19+ </descriptorRefs >
20+ <archive >
21+ <manifest >
22+ <mainClass >com.nexttimespace.utilities.diffbox.Executor</mainClass >
23+ </manifest >
24+ </archive >
25+
26+ </configuration >
27+ <executions >
28+ <execution >
29+ <id >make-assembly</id >
30+ <phase >package</phase >
31+ <goals >
32+ <goal >single</goal >
33+ </goals >
34+ </execution >
35+ </executions >
36+ </plugin >
37+
38+ </plugins >
39+ </build >
40+ <properties >
41+ <maven .compiler.source>1.8</maven .compiler.source>
42+ <maven .compiler.target>1.8</maven .compiler.target>
43+ <maven .test.skip>true</maven .test.skip>
44+ </properties >
45+ <dependencies >
46+ <dependency >
47+ <groupId >com.google.guava</groupId >
48+ <artifactId >guava</artifactId >
49+ <version >26.0-jre</version >
50+ </dependency >
51+ <dependency >
52+ <groupId >com.google.code.gson</groupId >
53+ <artifactId >gson</artifactId >
54+ <version >2.8.5</version >
55+ </dependency >
56+ <dependency >
57+ <groupId >org.json</groupId >
58+ <artifactId >json</artifactId >
59+ <version >20090211</version >
60+ </dependency >
61+ <dependency >
62+ <groupId >org.apache.commons</groupId >
63+ <artifactId >commons-lang3</artifactId >
64+ <version >3.8</version >
65+ </dependency >
66+
67+ <dependency >
68+ <groupId >commons-io</groupId >
69+ <artifactId >commons-io</artifactId >
70+ <version >2.5</version >
71+ </dependency >
72+ <dependency >
73+ <groupId >com.github.spullara.mustache.java</groupId >
74+ <artifactId >compiler</artifactId >
75+ <version >0.9.5</version >
76+ </dependency >
77+ <dependency >
78+ <groupId >org.springframework</groupId >
79+ <artifactId >spring-web</artifactId >
80+ <version >5.0.8.RELEASE</version >
81+ </dependency >
82+ <dependency >
83+ <groupId >org.apache.httpcomponents</groupId >
84+ <artifactId >httpclient</artifactId >
85+ <version >4.5.6</version >
86+ </dependency >
87+ <dependency >
88+ <groupId >com.fasterxml.jackson.core</groupId >
89+ <artifactId >jackson-databind</artifactId >
90+ <version >2.9.5</version >
91+ </dependency >
92+ </dependencies >
93+ </project >
0 commit comments