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