mirror of
https://github.com/apache/maven.git
synced 2025-02-12 04:55:38 +00:00
o Added complex test case for the release plugin, called it2002. o Added copying of reportArtifacts and extensionArtifacts sets when one MavenProject is constructed with another. o Added some logging statements to PrepareReleaseMojo, which I will remove later when I'm done with this rash of bugfixes. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@289294 13f79535-47bb-0310-9956-ffa450edef68
28 lines
557 B
Bash
Executable File
28 lines
557 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -Rf target
|
|
rm -Rf project.checkout
|
|
|
|
mkdir target
|
|
|
|
svnadmin create --fs-type fsfs target/svnroot
|
|
|
|
rm -Rf `find project -type d -name .svn`
|
|
|
|
dir=`readlink -f ${PWD}`
|
|
|
|
svn import project file://${dir}/target/svnroot/project/trunk -m "import."
|
|
svn mkdir file://${dir}/target/svnroot/project/tags -m "Creating tags dir."
|
|
|
|
svn co file://${dir}/target/svnroot/project/trunk project.checkout
|
|
|
|
cd project.checkout
|
|
|
|
rm -Rf target
|
|
|
|
#. ~/shell-switches/m2-debug-on
|
|
#echo "Enabling debugging options. Please attach the debugger."
|
|
m2 -e release:prepare
|
|
|
|
|