Commit Graph

10853 Commits

Author SHA1 Message Date
Johnny Lim 7aacf412e5 Fix typo 2020-05-23 09:55:59 +02:00
Jason van Zyl 2d3acb12df Use org.apache.ant 2020-05-23 09:55:58 +02:00
Jason van Zyl 4737137772 [maven-release-plugin] prepare for next development iteration 2020-05-23 09:55:57 +02:00
Jason van Zyl 5eeb65c86a [maven-release-plugin] prepare release maven-wrapper-0.1.4 2020-05-23 09:55:56 +02:00
Jason van Zyl 98b6027a2d Use working files to create wrapper jar
We had working copies and files in src/main/wrapper. People have been
patching the working copies and it's easier to just have the one copy.
2020-05-23 09:55:55 +02:00
Jason van Zyl f75e30123d [maven-release-plugin] prepare for next development iteration 2020-05-23 09:55:54 +02:00
Jason van Zyl 0fd5540261 [maven-release-plugin] prepare release maven-wrapper-0.1.3 2020-05-23 09:55:53 +02:00
Dave Syer 53eff03415 Use basedir location instead of "." to locate wrapper jar
The wrapper script has detected a .mvn directory, so it would be
better to assume that this is the location of the wrapper jar,
rather than the current directory (.). This change could be
enhanced by adding a separate detection loop for the jar itself
as opposed to the .mvn directory, but this is the smallest
possible change that fixes the bug.

Fixes gh-5
2020-05-23 09:55:51 +02:00
Dave Syer ec3d0ccb90 Align Un*x and Windows scripts to both use MAVEN_CONFIG consistently
Tested on Ubuntu 14.04 and Windows 7 64bit.

Fixes gh-3
2020-05-23 09:55:50 +02:00
Dan Rollo 307de3db85 super-mega minor typo 2020-05-23 09:55:49 +02:00
Dave Syer c35e352bdb Correct name of Windows script in README
Also adds a short section on how to fix the Maven version
2020-05-23 09:55:48 +02:00
Dave Syer cbb5886a8e Fix while loop so that basedir is detected in current dir
There was a problem with the logic in the while loop that detects
the base dir - it should first look in the current directory,
otherwise you can't build in a directory with local settings because
it will always climb up and find .mvn in a parent directory (e.g. user's
home).
2020-05-23 09:55:47 +02:00
Jason van Zyl a1b3a7b589 Add license stanza to POM 2020-05-23 09:55:46 +02:00
Jason van Zyl f4b454738b Add license file 2020-05-23 09:55:45 +02:00
Andreas Gudian 040d343433 Remove some unused parts of the windows scripts and rename them to .cmd 2020-05-23 09:55:44 +02:00
Jason van Zyl 0aabf3e06a Fix typo 2020-05-23 09:55:43 +02:00
Jason van Zyl 36149e9309 Add a note about using the windows script 2020-05-23 09:55:42 +02:00
Jason van Zyl 7709755f92 Fix a few typos 2020-05-23 09:55:41 +02:00
Jason van Zyl 70d1052dbc Update the README.md with instructions 2020-05-23 09:55:39 +02:00
Jason van Zyl 5994302454 [maven-release-plugin] prepare for next development iteration 2020-05-23 09:55:38 +02:00
Jason van Zyl 580d9beda4 [maven-release-plugin] prepare release maven-wrapper-0.1.2 2020-05-23 09:55:37 +02:00
Jason van Zyl 50938179cc Update properties path
Whatever
2020-05-23 09:55:36 +02:00
Jason van Zyl 01805863b4 [maven-release-plugin] prepare for next development iteration 2020-05-23 09:55:35 +02:00
Jason van Zyl c830673687 [maven-release-plugin] prepare release maven-wrapper-0.1.1 2020-05-23 09:55:34 +02:00
Jason van Zyl fcd0a69a15 Update location for searching for the version 2020-05-23 09:55:33 +02:00
Jason van Zyl 03bc10d19a [maven-release-plugin] prepare for next development iteration 2020-05-23 09:55:32 +02:00
Jason van Zyl 9fdaf2fa2c [maven-release-plugin] prepare release maven-wrapper-0.1.0 2020-05-23 09:55:31 +02:00
Jason van Zyl 5457a1bea2 Use a released version of provisio 2020-05-23 09:55:30 +02:00
Jason van Zyl d1bfe96618 Use provisio packaging to produce an archive that can be deployed for use in a Maven plugin 2020-05-23 09:55:29 +02:00
Jason van Zyl 5d40b536e3 Use the Maven 3.3.1 startup scripts to account for jvm.config and maven.config 2020-05-23 09:55:28 +02:00
Jason van Zyl 7bd43645a0 Use the now standard .mvn directory 2020-05-23 09:55:27 +02:00
Jason van Zyl 821bed19d6 Update the wrapper jar 2020-05-23 09:55:25 +02:00
Jason van Zyl 5deb2a60fc Make sure the maven.multiModuleProjectDirectory envar is set for proper 3.3.1+ execution 2020-05-23 09:55:24 +02:00
Jason van Zyl ff3e1148b2 Formatting 2020-05-23 09:55:23 +02:00
Jason van Zyl 2f07f99b51 Update to Maven 3.3.1 which resides in Maven Central 2020-05-23 09:55:22 +02:00
David Carver 3b0965dc82 Update properties file to point to maven 3.2.3
The properties file was pointing to 3.0.5 of maven, and the
latest version is now 3.2.3.  This commit updates to make sure
maven 3.2.3 is downloaded if if doesn't already exist.
2020-05-23 09:55:21 +02:00
bdemers 1457a7bd7f correcting README formatting 2020-05-23 09:55:20 +02:00
bdemers e210666f94 Adding simple README 2020-05-23 09:55:19 +02:00
bdemers df3fdc9d5c A copy of the gradle wrapper ported for use with maven
Lightly touched to better mesh with current maven builds. (some of which my not have been necessary in hind sight) 

Test it out with this build, run: "./mvnw clean install" at the root of this repo
This will download, install, and run maven 3.0.5 (as configured in maven/wrapper/maven-wrapper.properties)

NOTE: windows batch file is NOT tested


TODO: 
* Possibly extract these bits out into something both gradle and maven (and others) can use
* Port gradle IT's to this build
* See if anyone is interested in this project
2020-05-23 09:55:18 +02:00
huangkaifeng 5397fb66e7 [MNG-6873] Align JUnit version to 4.13
Closes #331
2020-05-09 21:19:41 +02:00
Sylwester Lachiewicz 5cf6d6b53d [MNG-6893] Super POM - upgrade maven-antrun-plugin to 3.0.0
Closes #343
2020-05-05 14:24:29 +02:00
Sylwester Lachiewicz eda1b92906 [MNG-6856] Remove dependency to Powermock 2020-05-03 22:09:25 +02:00
Maarten Mulders 70cee55688
[MNG-6891] Improve user-friendliness --fail-on-severity 2020-05-03 22:04:37 +02:00
Christian Schulte be16fc66b9 [MNG-2478] add "resources-filtered" filtered resource directories to super POM 2020-04-27 22:13:45 +02:00
Michael Osipov ecf8573602 [MNG-6672] Upgrade Maven Resolver to 1.4.2 2020-04-27 18:41:31 +02:00
Michael Osipov 672041efaf [MNG-6897] Upgrade Maven Wagon to 3.4.0 2020-04-27 10:57:50 +02:00
Sylwester Lachiewicz ca62152660 apache-rat-plugin - section not needed after upgrading the parent pom 2020-04-25 17:39:19 +02:00
Martin Kanters f6c07d9358
[MNG-6863] --also-make is being ignored when calling --resume-from
[MNG-6676] Resume reactor build after skipped project using -pl !X -rf X combination

Co-authored-by: Martin Kanters <Martin.Kanters@infosupport.com>
2020-04-24 12:01:27 +02:00
Maarten Mulders ec92934bf0
[MNG-4660] --resume-from flag resolves inter-module dependencies
Co-authored-by: Martin Kanters <Martin.Kanters@infosupport.com>
2020-04-14 22:04:55 +02:00
Hervé Boutemy e22b055b92 added Jira badge 2020-04-14 09:58:58 +02:00