1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" 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+ <groupId >nepxion</groupId >
5+ <artifactId >matrix</artifactId >
6+ <name >Nepxion Matrix</name >
7+ <packaging >jar</packaging >
8+ <modelVersion >4.0.0</modelVersion >
9+ <version >1.0.0</version >
10+ <url >https://github.com/Nepxion/</url >
11+
12+ <properties >
13+ <commons .lang3.version>3.4</commons .lang3.version>
14+ <spring .version>4.2.7.RELEASE</spring .version>
15+ <spring .boot.version>1.3.7.RELEASE</spring .boot.version>
16+ <disruptor .version>3.3.4</disruptor .version>
17+ <aopalliance .version>1.0</aopalliance .version>
18+ <log4j .version>2.3</log4j .version>
19+ <java .version>1.7</java .version>
20+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21+ </properties >
22+
23+ <dependencies >
24+ <dependency >
25+ <groupId >org.apache.commons</groupId >
26+ <artifactId >commons-lang3</artifactId >
27+ <version >${commons.lang3.version} </version >
28+ </dependency >
29+
30+ <dependency >
31+ <groupId >org.springframework</groupId >
32+ <artifactId >spring-aop</artifactId >
33+ <version >${spring.version} </version >
34+ </dependency >
35+
36+ <dependency >
37+ <groupId >org.springframework</groupId >
38+ <artifactId >spring-context</artifactId >
39+ <version >${spring.version} </version >
40+ </dependency >
41+
42+ <dependency >
43+ <groupId >org.springframework.boot</groupId >
44+ <artifactId >spring-boot-dependencies</artifactId >
45+ <version >${spring.boot.version} </version >
46+ <type >pom</type >
47+ <scope >import</scope >
48+ </dependency >
49+
50+ <dependency >
51+ <groupId >org.springframework.boot</groupId >
52+ <artifactId >spring-boot-starter-web</artifactId >
53+ <version >${spring.boot.version} </version >
54+ <exclusions >
55+ <exclusion >
56+ <groupId >org.springframework.boot</groupId >
57+ <artifactId >spring-boot-starter-logging</artifactId >
58+ </exclusion >
59+ <exclusion >
60+ <groupId >log4j</groupId >
61+ <artifactId >log4j</artifactId >
62+ </exclusion >
63+ <exclusion >
64+ <groupId >org.slf4j</groupId >
65+ <artifactId >slf4j-api</artifactId >
66+ </exclusion >
67+ </exclusions >
68+ </dependency >
69+
70+ <dependency >
71+ <groupId >aopalliance</groupId >
72+ <artifactId >aopalliance</artifactId >
73+ <version >${aopalliance.version} </version >
74+ </dependency >
75+
76+ <dependency >
77+ <groupId >com.lmax</groupId >
78+ <artifactId >disruptor</artifactId >
79+ <version >${disruptor.version} </version >
80+ </dependency >
81+
82+ <dependency >
83+ <groupId >org.apache.logging.log4j</groupId >
84+ <artifactId >log4j-core</artifactId >
85+ <version >${log4j.version} </version >
86+ </dependency >
87+
88+ <dependency >
89+ <groupId >org.apache.logging.log4j</groupId >
90+ <artifactId >log4j-1.2-api</artifactId >
91+ <version >${log4j.version} </version >
92+ </dependency >
93+
94+ <dependency >
95+ <groupId >org.apache.logging.log4j</groupId >
96+ <artifactId >log4j-slf4j-impl</artifactId >
97+ <version >${log4j.version} </version >
98+ </dependency >
99+
100+ <dependency >
101+ <groupId >org.apache.logging.log4j</groupId >
102+ <artifactId >log4j-jcl</artifactId >
103+ <version >${log4j.version} </version >
104+ </dependency >
105+
106+ <dependency >
107+ <groupId >org.apache.logging.log4j</groupId >
108+ <artifactId >log4j-jul</artifactId >
109+ <version >${log4j.version} </version >
110+ </dependency >
111+
112+ <dependency >
113+ <groupId >org.apache.logging.log4j</groupId >
114+ <artifactId >log4j-web</artifactId >
115+ <version >${log4j.version} </version >
116+ </dependency >
117+
118+ </dependencies >
119+
120+ <build >
121+ <plugins >
122+ <plugin >
123+ <groupId >org.apache.maven.plugins</groupId >
124+ <artifactId >maven-compiler-plugin</artifactId >
125+ <configuration >
126+ <encoding >${project.build.sourceEncoding} </encoding >
127+ <source >${java.version} </source >
128+ <target >${java.version} </target >
129+ </configuration >
130+ </plugin >
131+ </plugins >
132+ </build >
133+ </project >
0 commit comments