]> jfr.im git - irc/rizon/acid.git/blobdiff - acid/pom.xml
Pull image by last known working digest
[irc/rizon/acid.git] / acid / pom.xml
index 2f6cf65042867c6c002f60c3c8683409c0772753..0be26b93201e647fef4465df02057ad9e5be5266 100644 (file)
@@ -39,7 +39,6 @@
                <dependency>
                        <groupId>com.google.guava</groupId>
                        <artifactId>guava</artifactId>
-                       <version>19.0</version>
                </dependency>
 
                <dependency>
                        <artifactId>maven-aether-provider</artifactId>
                        <version>${maven.version}</version>
                </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-settings</artifactId>
+                       <version>${maven.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-settings-builder</artifactId>
+                       <version>${maven.version}</version>
+               </dependency>
 
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
-                       <version>4.11</version>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.mockito</groupId>
+                       <artifactId>mockito-all</artifactId>
                        <scope>test</scope>
                </dependency>
        </dependencies>
        <build>
                <plugins>
                        <plugin>
-                               <artifactId>maven-assembly-plugin</artifactId>
-                               <configuration>
-                                       <archive>
-                                               <manifest>
-                                                       <mainClass>net.rizon.acid.core.Acidictive</mainClass>
-                                               </manifest>
-                                               <manifestEntries>
-                                                       <Author>Adam &lt;Adam@rizon.net&gt;</Author>
-                                               </manifestEntries>
-                                       </archive>
-                                       <descriptorRefs>
-                                               <descriptorRef>jar-with-dependencies</descriptorRef>
-                                       </descriptorRefs>
-                               </configuration>
+                               <groupId>com.google.code.maven-replacer-plugin</groupId>
+                               <artifactId>maven-replacer-plugin</artifactId>
+                               <version>1.4.0</version>
                                <executions>
                                        <execution>
-                                               <phase>package</phase>
+                                               <phase>generate-sources</phase>
                                                <goals>
-                                                       <goal>single</goal>
+                                                       <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>