]> jfr.im git - irc/rizon/acid.git/blobdiff - acid/pom.xml
Update run.sh to use mvn exec
[irc/rizon/acid.git] / acid / pom.xml
index 07269e571d37c57aea08b83cb27a1f34acacc833..77748e57754ca30feea1d6544884b7af9f3e4d76 100644 (file)
@@ -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>
                        <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>
+
+       <profiles>
+               <profile>
+                       <activation>
+                               <os>
+                                       <family>!windows</family>
+                               </os>
+                       </activation>
+                       <build>
+                               <plugins>
+                                       <plugin>
+                                               <groupId>org.codehaus.mojo</groupId>
+                                               <artifactId>exec-maven-plugin</artifactId>
+                                               <version>1.4.0</version>
+                                               <configuration>
+                                                       <arguments>
+                                                               <argument>-XX:+HeapDumpOnOutOfMemoryError</argument>
+                                                               <argument>-Xmx256M</argument>
+                                                               <argument>-classpath</argument>
+                                                               <classpath/>
+                                                               <argument>net.rizon.acid.core.Acidictive</argument>
+                                                       </arguments>
+                                                       <workingDirectory>${project.basedir}/..</workingDirectory>
+                                               </configuration>
+                                       </plugin>
+                               </plugins>
+                       </build>
+               </profile>
+       </profiles>
+
 </project>