1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >org.baeldung</groupId >
5+ <artifactId >gson</artifactId >
6+ <version >0.1-SNAPSHOT</version >
7+
8+ <name >gson</name >
9+
10+ <dependencies >
11+
12+ <!-- utils -->
13+
14+ <dependency >
15+ <groupId >com.google.guava</groupId >
16+ <artifactId >guava</artifactId >
17+ <version >17.0</version >
18+ </dependency >
19+ <dependency >
20+ <groupId >commons-io</groupId >
21+ <artifactId >commons-io</artifactId >
22+ <version >2.4</version >
23+ </dependency >
24+
25+ <dependency >
26+ <groupId >org.apache.commons</groupId >
27+ <artifactId >commons-collections4</artifactId >
28+ <version >4.0</version >
29+ </dependency >
30+
31+ <dependency >
32+ <groupId >org.apache.commons</groupId >
33+ <artifactId >commons-lang3</artifactId >
34+ <version >${commons-lang3.version} </version >
35+ </dependency >
36+
37+ <!-- web -->
38+
39+ <!-- marshalling -->
40+
41+ <dependency >
42+ <groupId >com.google.code.gson</groupId >
43+ <artifactId >gson</artifactId >
44+ <version >2.3</version >
45+ </dependency >
46+
47+ <!-- test scoped -->
48+
49+ <dependency >
50+ <groupId >junit</groupId >
51+ <artifactId >junit-dep</artifactId >
52+ <version >${junit.version} </version >
53+ <scope >test</scope >
54+ </dependency >
55+
56+ <dependency >
57+ <groupId >org.hamcrest</groupId >
58+ <artifactId >hamcrest-core</artifactId >
59+ <version >${org.hamcrest.version} </version >
60+ <scope >test</scope >
61+ </dependency >
62+ <dependency >
63+ <groupId >org.hamcrest</groupId >
64+ <artifactId >hamcrest-library</artifactId >
65+ <version >${org.hamcrest.version} </version >
66+ <scope >test</scope >
67+ </dependency >
68+
69+ <dependency >
70+ <groupId >org.mockito</groupId >
71+ <artifactId >mockito-core</artifactId >
72+ <version >${mockito.version} </version >
73+ <scope >test</scope >
74+ </dependency >
75+
76+ </dependencies >
77+
78+ <build >
79+ <finalName >jackson</finalName >
80+ <resources >
81+ <resource >
82+ <directory >src/main/resources</directory >
83+ <filtering >true</filtering >
84+ </resource >
85+ </resources >
86+
87+ <plugins >
88+
89+ <plugin >
90+ <groupId >org.apache.maven.plugins</groupId >
91+ <artifactId >maven-compiler-plugin</artifactId >
92+ <version >${maven-compiler-plugin.version} </version >
93+ <configuration >
94+ <source >1.7</source >
95+ <target >1.7</target >
96+ </configuration >
97+ </plugin >
98+
99+ <plugin >
100+ <groupId >org.apache.maven.plugins</groupId >
101+ <artifactId >maven-surefire-plugin</artifactId >
102+ <version >${maven-surefire-plugin.version} </version >
103+ </plugin >
104+
105+ </plugins >
106+
107+ </build >
108+
109+ <properties >
110+ <!-- Spring -->
111+ <org .springframework.version>4.0.6.RELEASE</org .springframework.version>
112+ <org .springframework.security.version>3.2.4.RELEASE</org .springframework.security.version>
113+
114+ <!-- persistence -->
115+ <hibernate .version>4.3.6.Final</hibernate .version>
116+ <mysql-connector-java .version>5.1.31</mysql-connector-java .version>
117+
118+ <!-- marshalling -->
119+ <jackson .version>2.4.1</jackson .version>
120+
121+ <!-- logging -->
122+ <org .slf4j.version>1.7.7</org .slf4j.version>
123+ <logback .version>1.1.2</logback .version>
124+
125+ <!-- various -->
126+ <hibernate-validator .version>5.1.2.Final</hibernate-validator .version>
127+
128+ <!-- util -->
129+ <guava .version>17.0</guava .version>
130+ <commons-lang3 .version>3.3.2</commons-lang3 .version>
131+
132+ <!-- testing -->
133+ <org .hamcrest.version>1.3</org .hamcrest.version>
134+ <junit .version>4.11</junit .version>
135+ <mockito .version>1.9.5</mockito .version>
136+
137+ <httpcore .version>4.3.2</httpcore .version>
138+ <httpclient .version>4.3.5</httpclient .version>
139+
140+ <rest-assured .version>2.3.2</rest-assured .version>
141+
142+ <!-- maven plugins -->
143+ <maven-compiler-plugin .version>3.1</maven-compiler-plugin .version>
144+ <maven-war-plugin .version>2.4</maven-war-plugin .version>
145+ <maven-surefire-plugin .version>2.17</maven-surefire-plugin .version>
146+ <maven-resources-plugin .version>2.6</maven-resources-plugin .version>
147+ <cargo-maven2-plugin .version>1.4.8</cargo-maven2-plugin .version>
148+
149+ </properties >
150+
151+ </project >
0 commit comments