]> jfr.im git - irc/rizon/acid.git/blobdiff - acid/pom.xml
Use eclipse aether to resolve maven artifacts for plugins
[irc/rizon/acid.git] / acid / pom.xml
index 6b9f01a493a23620b01b48c429fad83c9b4f869a..2f6cf65042867c6c002f60c3c8683409c0772753 100644 (file)
@@ -6,12 +6,20 @@
        <parent>
                <groupId>net.rizon</groupId>
                <artifactId>acid</artifactId>
-               <version>4.0-SNAPSHOT</version>
+               <version>4.1-SNAPSHOT</version>
        </parent>
   
        <artifactId>acid-acid</artifactId>
        <name>Acid Core</name>
 
+       <properties>
+               <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>
                <dependency>
                        <groupId>javax.mail</groupId>
                        <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>
+                       <version>${slf4j.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>ch.qos.logback</groupId>
+                       <artifactId>logback-classic</artifactId>
+                       <version>${logback.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>ch.qos.logback</groupId>
+                       <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>
                        <version>4.11</version>
                        <scope>test</scope>
-                       <type>jar</type>
                </dependency>
        </dependencies>