]> jfr.im git - irc/rizon/acid.git/blob - acid/pom.xml
getChanStr: prefix secret channels with !
[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.1-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>acid-acid</artifactId>
13 <name>Acid Core</name>
14
15 <properties>
16 <netty.version>4.1.5.Final</netty.version>
17 <slf4j.version>1.7.21</slf4j.version>
18 <logback.version>1.1.7</logback.version>
19 <aether.version>1.1.0</aether.version>
20 <maven.version>3.1.0</maven.version>
21 </properties>
22
23 <dependencies>
24 <dependency>
25 <groupId>javax.mail</groupId>
26 <artifactId>javax.mail-api</artifactId>
27 <version>1.5.1</version>
28 </dependency>
29 <dependency>
30 <groupId>mysql</groupId>
31 <artifactId>mysql-connector-java</artifactId>
32 <version>5.1.8</version>
33 </dependency>
34 <dependency>
35 <groupId>org.yaml</groupId>
36 <artifactId>snakeyaml</artifactId>
37 <version>1.11</version>
38 </dependency>
39 <dependency>
40 <groupId>com.google.guava</groupId>
41 <artifactId>guava</artifactId>
42 <version>19.0</version>
43 </dependency>
44
45 <dependency>
46 <groupId>io.netty</groupId>
47 <artifactId>netty-all</artifactId>
48 <version>${netty.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-api</artifactId>
54 <version>${slf4j.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>ch.qos.logback</groupId>
58 <artifactId>logback-classic</artifactId>
59 <version>${logback.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>ch.qos.logback</groupId>
63 <artifactId>logback-core</artifactId>
64 <version>${logback.version}</version>
65 </dependency>
66
67 <dependency>
68 <groupId>org.eclipse.aether</groupId>
69 <artifactId>aether-api</artifactId>
70 <version>${aether.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>org.eclipse.aether</groupId>
74 <artifactId>aether-impl</artifactId>
75 <version>${aether.version}</version>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.maven</groupId>
79 <artifactId>maven-aether-provider</artifactId>
80 <version>${maven.version}</version>
81 </dependency>
82
83 <dependency>
84 <groupId>junit</groupId>
85 <artifactId>junit</artifactId>
86 <version>4.11</version>
87 <scope>test</scope>
88 </dependency>
89 </dependencies>
90
91 <build>
92 <plugins>
93 <plugin>
94 <artifactId>maven-assembly-plugin</artifactId>
95 <configuration>
96 <archive>
97 <manifest>
98 <mainClass>net.rizon.acid.core.Acidictive</mainClass>
99 </manifest>
100 <manifestEntries>
101 <Author>Adam &lt;Adam@rizon.net&gt;</Author>
102 </manifestEntries>
103 </archive>
104 <descriptorRefs>
105 <descriptorRef>jar-with-dependencies</descriptorRef>
106 </descriptorRefs>
107 </configuration>
108 <executions>
109 <execution>
110 <phase>package</phase>
111 <goals>
112 <goal>single</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117 <plugin>
118 <groupId>com.google.code.maven-replacer-plugin</groupId>
119 <artifactId>maven-replacer-plugin</artifactId>
120 <version>1.4.0</version>
121 <executions>
122 <execution>
123 <phase>generate-sources</phase>
124 <goals>
125 <goal>replace</goal>
126 </goals>
127 </execution>
128 </executions>
129 <configuration>
130 <file>src/main/resources/net/rizon/acid/core/Version.java.template</file>
131 <outputFile>src/main/java/net/rizon/acid/core/Version.java</outputFile>
132 <replacements>
133 <replacement>
134 <token>@Git-Tag@</token>
135 <value>${mvngit.tag}</value>
136 </replacement>
137 <replacement>
138 <token>@Git-Revision@</token>
139 <value>${mvngit.commit.id}</value>
140 </replacement>
141 <replacement>
142 <token>@Git-Revision-Short@</token>
143 <value>${mvngit.commit.abbrev}</value>
144 </replacement>
145 <replacement>
146 <token>@Git-Author@</token>
147 <value>${mvngit.commit.author.name}</value>
148 </replacement>
149 <replacement>
150 <token>@Git-Author-Email@</token>
151 <value>${mvngit.commit.author.email}</value>
152 </replacement>
153 <replacement>
154 <token>@Git-Author-Date@</token>
155 <value>${mvngit.commit.author.date}</value>
156 </replacement>
157 <replacement>
158 <token>@Project-Version@</token>
159 <value>${project.version}</value>
160 </replacement>
161 </replacements>
162 </configuration>
163 </plugin>
164 </plugins>
165 </build>
166 </project>