]> jfr.im git - irc/rizon/acid.git/blob - acid/pom.xml
Op limitserv on sync, fix channelless commands
[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
14 <dependencies>
15 <dependency>
16 <groupId>javax.mail</groupId>
17 <artifactId>javax.mail-api</artifactId>
18 <version>1.5.1</version>
19 </dependency>
20 <dependency>
21 <groupId>mysql</groupId>
22 <artifactId>mysql-connector-java</artifactId>
23 <version>5.1.8</version>
24 </dependency>
25 <dependency>
26 <groupId>org.yaml</groupId>
27 <artifactId>snakeyaml</artifactId>
28 <version>1.11</version>
29 </dependency>
30 </dependencies>
31
32 <build>
33 <plugins>
34 <plugin>
35 <artifactId>maven-assembly-plugin</artifactId>
36 <configuration>
37 <archive>
38 <manifest>
39 <mainClass>net.rizon.acid.core.Acidictive</mainClass>
40 </manifest>
41 <manifestEntries>
42 <Author>Adam &lt;Adam@rizon.net&gt;</Author>
43 </manifestEntries>
44 </archive>
45 <descriptorRefs>
46 <descriptorRef>jar-with-dependencies</descriptorRef>
47 </descriptorRefs>
48 </configuration>
49 <executions>
50 <execution>
51 <phase>package</phase>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
58 </plugins>
59 </build>
60 </project>