]> jfr.im git - irc/rizon/acid.git/blobdiff - acid/pom.xml
getChanStr: prefix secret channels with !
[irc/rizon/acid.git] / acid / pom.xml
index ecf70c690733b5a04aa17a15b36f696916a13912..1ff37be61b287a063dbe52f275c7d5dd6f256218 100644 (file)
@@ -6,7 +6,7 @@
        <parent>
                <groupId>net.rizon</groupId>
                <artifactId>acid</artifactId>
-               <version>4.0-SNAPSHOT</version>
+               <version>4.1-SNAPSHOT</version>
        </parent>
   
        <artifactId>acid-acid</artifactId>
@@ -16,6 +16,8 @@
                <netty.version>4.1.5.Final</netty.version>
                <slf4j.version>1.7.21</slf4j.version>
                <logback.version>1.1.7</logback.version>
+               <aether.version>1.1.0</aether.version>
+               <maven.version>3.1.0</maven.version>
        </properties>
 
        <dependencies>
                        <artifactId>snakeyaml</artifactId>
                        <version>1.11</version>
                </dependency>
+               <dependency>
+                       <groupId>com.google.guava</groupId>
+                       <artifactId>guava</artifactId>
+                       <version>19.0</version>
+               </dependency>
+
                <dependency>
                        <groupId>io.netty</groupId>
                        <artifactId>netty-all</artifactId>
                        <version>${netty.version}</version>
                </dependency>
+
                <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-api</artifactId>
                        <artifactId>logback-core</artifactId>
                        <version>${logback.version}</version>
                </dependency>
+
+               <dependency>
+                       <groupId>org.eclipse.aether</groupId>
+                       <artifactId>aether-api</artifactId>
+                       <version>${aether.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.aether</groupId>
+                       <artifactId>aether-impl</artifactId>
+                       <version>${aether.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-aether-provider</artifactId>
+                       <version>${maven.version}</version>
+               </dependency>
+
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                                        </execution>
                                </executions>
                        </plugin>
+                       <plugin>
+                               <groupId>com.google.code.maven-replacer-plugin</groupId>
+                               <artifactId>maven-replacer-plugin</artifactId>
+                               <version>1.4.0</version>
+                               <executions>
+                                       <execution>
+                                               <phase>generate-sources</phase>
+                                               <goals>
+                                                       <goal>replace</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                               <configuration>
+                                       <file>src/main/resources/net/rizon/acid/core/Version.java.template</file>
+                                       <outputFile>src/main/java/net/rizon/acid/core/Version.java</outputFile>
+                                       <replacements>
+                                               <replacement>
+                                                       <token>@Git-Tag@</token>
+                                                       <value>${mvngit.tag}</value>
+                                               </replacement>
+                                               <replacement>
+                                                       <token>@Git-Revision@</token>
+                                                       <value>${mvngit.commit.id}</value>
+                                               </replacement>
+                                               <replacement>
+                                                       <token>@Git-Revision-Short@</token>
+                                                       <value>${mvngit.commit.abbrev}</value>
+                                               </replacement>
+                                               <replacement>
+                                                       <token>@Git-Author@</token>
+                                                       <value>${mvngit.commit.author.name}</value>
+                                               </replacement>
+                                               <replacement>
+                                                       <token>@Git-Author-Email@</token>
+                                                       <value>${mvngit.commit.author.email}</value>
+                                               </replacement>
+                                               <replacement>
+                                                       <token>@Git-Author-Date@</token>
+                                                       <value>${mvngit.commit.author.date}</value>
+                                               </replacement>
+                                               <replacement>
+                                                       <token>@Project-Version@</token>
+                                                       <value>${project.version}</value>
+                                               </replacement>
+                                       </replacements>
+                               </configuration>
+                       </plugin>
                </plugins>
        </build>
 </project>