You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2018/12/03 16:06:59 UTC

[aries-jpa] branch master updated: Add plugin settings like in rsa

This is an automated email from the ASF dual-hosted git repository.

cschneider pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jpa.git


The following commit(s) were added to refs/heads/master by this push:
     new fd9f476  Add plugin settings like in rsa
fd9f476 is described below

commit fd9f47678e2fbef76d57ad7f37bbac1125f7439a
Author: Christian Schneider <cs...@adobe.com>
AuthorDate: Mon Dec 3 17:06:51 2018 +0100

    Add plugin settings like in rsa
---
 pom.xml | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/pom.xml b/pom.xml
index fb6cde0..6a20429 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,4 +57,37 @@
         <module>itests</module>
     </modules>
 
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+        <pluginManagement>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-release-plugin</artifactId>
+                        <version>2.5.3</version>
+                        <configuration>
+                            <releaseProfiles>apache-release</releaseProfiles>
+                            <autoVersionSubmodules>true</autoVersionSubmodules>
+                            <mavenExecutorId>forked-path</mavenExecutorId>
+                            <tagNameFormat>jpa-@{project.version}</tagNameFormat>
+                        </configuration>
+                    </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
 </project>