]> jfr.im git - irc/rizon/acid.git/blob - acid/pom.xml
Allow channel listusers command to come from AcidUsers other than Control.
[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 <dependency>
31 <groupId>junit</groupId>
32 <artifactId>junit</artifactId>
33 <version>4.11</version>
34 <scope>test</scope>
35 <type>jar</type>
36 </dependency>
37 </dependencies>
38
39 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifest>
46 <mainClass>net.rizon.acid.core.Acidictive</mainClass>
47 </manifest>
48 <manifestEntries>
49 <Author>Adam &lt;Adam@rizon.net&gt;</Author>
50 </manifestEntries>
51 </archive>
52 <descriptorRefs>
53 <descriptorRef>jar-with-dependencies</descriptorRef>
54 </descriptorRefs>
55 </configuration>
56 <executions>
57 <execution>
58 <phase>package</phase>
59 <goals>
60 <goal>single</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
66 </build>
67 </project>