diff options
author | Arthur Martella <arthur.martella.1@att.com> | 2019-09-13 15:59:26 -0400 |
---|---|---|
committer | Arthur Martella <arthur.martella.1@att.com> | 2019-09-16 14:24:40 -0400 |
commit | ea39a71e28f2772da7d467a410d43a7ddd8d163d (patch) | |
tree | 22c89e9b7abc41c7a69623b79a47eccf815e4947 /pom.xml | |
parent | 4fe3f08aa1c93a1fc81a78544031ef747a747098 (diff) |
Deadlock detection by owner
Issue-ID: MUSIC-502
Signed-off-by: Martella, Arthur <arthur.martella.1@att.com>
Change-Id: Iec20cfeec96d7031c691055ffba2f65c34854adf
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -149,6 +149,7 @@ </configuration> <executions> <execution> + <phase>install</phase> <goals> <goal>repackage</goal> </goals> @@ -200,6 +201,7 @@ <version>2.4</version> <executions> <execution> + <id>base</id> <phase>install</phase> <goals> <goal>install-file</goal> @@ -212,6 +214,20 @@ <file>${project.build.directory}/${project.artifactId}.jar</file> </configuration> </execution> + <execution> + <id>spring</id> + <phase>install</phase> + <goals> + <goal>install-file</goal> + </goals> + <configuration> + <packaging>jar</packaging> + <artifactId>${project.artifactId}-SB</artifactId> + <groupId>${project.groupId}</groupId> + <version>${project.version}</version> + <file>${project.basedir}/distribution/music/${project.artifactId}-SB.jar</file> + </configuration> + </execution> </executions> </plugin> </plugins> |