[
https://issues.jboss.org/browse/JBTM-1895?page=com.atlassian.jira.plugin....
]
Paul Robinson updated JBTM-1895:
--------------------------------
Description:
Marking which jars are uploaded to Nexus during release is a two step process
(unfortunately). You need to add both of the following bits of XML to the pom associated
with the jar.
{code}
#!/bin/bash
RELEASE_PROFILES=$(find . -name pom.xml | xargs grep
"<id>release</id>" | awk -F ':' '{ print $1 }')
for POM in $RELEASE_PROFILES; do
FOUND=$(grep maven-deploy-plugin $POM)
if [ "$FOUND" == "" ]; then
echo $POM
fi
done
{code}
restat-bridge:jar is not uploaded during release.
-------------------------------------------------
Key: JBTM-1895
URL:
https://issues.jboss.org/browse/JBTM-1895
Project: JBoss Transaction Manager
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Build System
Reporter: Paul Robinson
Assignee: Paul Robinson
Fix For: 5.0.0.M5
Marking which jars are uploaded to Nexus during release is a two step process
(unfortunately). You need to add both of the following bits of XML to the pom associated
with the jar.
{code}
#!/bin/bash
RELEASE_PROFILES=$(find . -name pom.xml | xargs grep
"<id>release</id>" | awk -F ':' '{ print $1 }')
for POM in $RELEASE_PROFILES; do
FOUND=$(grep maven-deploy-plugin $POM)
if [ "$FOUND" == "" ]; then
echo $POM
fi
done
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira