]> jfr.im git - irc/rizon/acid.git/blame - acid/pom.xml
Burst channels with acidusers and remove the need to detect burst/sync state in scripts
[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"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>net.rizon</groupId>
26176da9 8 <artifactId>acid</artifactId>
685e346e
A
9 <version>4.0-SNAPSHOT</version>
10 </parent>
11
12 <groupId>net.rizon</groupId>
26176da9 13 <artifactId>acid-acid</artifactId>
685e346e 14 <version>4.0-SNAPSHOT</version>
685e346e
A
15 <packaging>jar</packaging>
16
17 <dependencies>
18 <dependency>
19 <groupId>javax.mail</groupId>
20 <artifactId>javax.mail-api</artifactId>
21 <version>1.5.1</version>
22 </dependency>
23 <dependency>
24 <groupId>mysql</groupId>
25 <artifactId>mysql-connector-java</artifactId>
26 <version>5.1.8</version>
27 </dependency>
28 <dependency>
29 <groupId>org.yaml</groupId>
30 <artifactId>snakeyaml</artifactId>
31 <version>1.11</version>
32 </dependency>
33 </dependencies>
34
35 <build>
36 <plugins>
37 <plugin>
38 <artifactId>maven-assembly-plugin</artifactId>
39 <configuration>
40 <archive>
41 <manifest>
42 <mainClass>net.rizon.acid.core.Acidictive</mainClass>
43 </manifest>
44 <manifestEntries>
45 <Author>Adam &lt;Adam@rizon.net&gt;</Author>
46 </manifestEntries>
47 </archive>
48 <descriptorRefs>
49 <descriptorRef>jar-with-dependencies</descriptorRef>
50 </descriptorRefs>
51 </configuration>
52 <executions>
53 <execution>
54 <phase>package</phase>
55 <goals>
56 <goal>single</goal>
57 </goals>
58 </execution>
59 </executions>
60 </plugin>
61 </plugins>
62 </build>
63</project>