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