]> jfr.im git - irc/rizon/acid.git/blame - acid/pom.xml
Convert logging to slf4j, and logback
[irc/rizon/acid.git] / acid / pom.xml
CommitLineData
685e346e
A
1<?xml version="1.0"?>
2<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
9eb651e9
A
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <modelVersion>4.0.0</modelVersion>
685e346e 5
9eb651e9
A
6 <parent>
7 <groupId>net.rizon</groupId>
8 <artifactId>acid</artifactId>
9 <version>4.0-SNAPSHOT</version>
10 </parent>
685e346e 11
9eb651e9
A
12 <artifactId>acid-acid</artifactId>
13 <name>Acid Core</name>
685e346e 14
5d5a699f
A
15 <properties>
16 <netty.version>4.1.5.Final</netty.version>
17 <slf4j.version>1.7.21</slf4j.version>
37e571eb 18 <logback.version>1.1.7</logback.version>
5d5a699f
A
19 </properties>
20
9eb651e9
A
21 <dependencies>
22 <dependency>
23 <groupId>javax.mail</groupId>
24 <artifactId>javax.mail-api</artifactId>
25 <version>1.5.1</version>
26 </dependency>
27 <dependency>
28 <groupId>mysql</groupId>
29 <artifactId>mysql-connector-java</artifactId>
30 <version>5.1.8</version>
31 </dependency>
32 <dependency>
33 <groupId>org.yaml</groupId>
34 <artifactId>snakeyaml</artifactId>
35 <version>1.11</version>
36 </dependency>
5d5a699f
A
37 <dependency>
38 <groupId>io.netty</groupId>
39 <artifactId>netty-all</artifactId>
40 <version>${netty.version}</version>
41 </dependency>
37e571eb 42 <dependency>
5d5a699f
A
43 <groupId>org.slf4j</groupId>
44 <artifactId>slf4j-api</artifactId>
45 <version>${slf4j.version}</version>
46 </dependency>
47 <dependency>
37e571eb
A
48 <groupId>ch.qos.logback</groupId>
49 <artifactId>logback-classic</artifactId>
50 <version>${logback.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>ch.qos.logback</groupId>
54 <artifactId>logback-core</artifactId>
55 <version>${logback.version}</version>
56 </dependency>
9eb651e9
A
57 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <version>4.11</version>
61 <scope>test</scope>
9eb651e9
A
62 </dependency>
63 </dependencies>
685e346e 64
9eb651e9
A
65 <build>
66 <plugins>
67 <plugin>
68 <artifactId>maven-assembly-plugin</artifactId>
69 <configuration>
70 <archive>
71 <manifest>
72 <mainClass>net.rizon.acid.core.Acidictive</mainClass>
73 </manifest>
74 <manifestEntries>
75 <Author>Adam &lt;Adam@rizon.net&gt;</Author>
76 </manifestEntries>
77 </archive>
78 <descriptorRefs>
79 <descriptorRef>jar-with-dependencies</descriptorRef>
80 </descriptorRefs>
81 </configuration>
82 <executions>
83 <execution>
84 <phase>package</phase>
85 <goals>
86 <goal>single</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
685e346e 93</project>