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