You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sh...@apache.org on 2016/08/05 19:58:11 UTC

airavata git commit: Added replacer maven plugin to remove data generated by thrift gen files

Repository: airavata
Updated Branches:
  refs/heads/master 67e1f7bd1 -> 3aca4e95f


Added replacer maven plugin to remove data generated by thrift gen files


Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/3aca4e95
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/3aca4e95
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/3aca4e95

Branch: refs/heads/master
Commit: 3aca4e95f571294a94171276c20acb3e4c10af50
Parents: 67e1f7b
Author: Shameera Rathnayaka <sh...@gmail.com>
Authored: Fri Aug 5 15:58:06 2016 -0400
Committer: Shameera Rathnayaka <sh...@gmail.com>
Committed: Fri Aug 5 15:58:06 2016 -0400

----------------------------------------------------------------------
 airavata-api/airavata-data-models/pom.xml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/3aca4e95/airavata-api/airavata-data-models/pom.xml
----------------------------------------------------------------------
diff --git a/airavata-api/airavata-data-models/pom.xml b/airavata-api/airavata-data-models/pom.xml
index 6c5cd9f..0ef00ae 100644
--- a/airavata-api/airavata-data-models/pom.xml
+++ b/airavata-api/airavata-data-models/pom.xml
@@ -39,4 +39,30 @@
 
     </dependencies>
 
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>com.google.code.maven-replacer-plugin</groupId>
+                <artifactId>replacer</artifactId>
+                <version>1.5.3</version>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>replace</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <includes>
+                        <include>${basedir}/src/main/java/org/apache/airavata/**/*.java</include>
+                    </includes>
+                    <token>, date = ".*"</token>
+                    <value> </value>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>