@@ -1838,24 +1838,15 @@ private boolean runBuild(
1838
1838
}
1839
1839
1840
1840
Map <String , Object > context = new LinkedHashMap <>();
1841
+ Properties scriptUserProperties = new Properties ();
1842
+ context .put ("userProperties" , scriptUserProperties );
1841
1843
1842
- boolean selectorResult = true ;
1844
+ if (!runSelectorHook (basedir , context , logger )) {
1845
+ return false ;
1846
+ }
1843
1847
1844
1848
try {
1845
- try {
1846
- scriptRunner .run ("selector script" , basedir , selectorScript , context , logger );
1847
- } catch (ScriptReturnException e ) {
1848
- selectorResult = false ;
1849
- return false ;
1850
- } catch (ScriptException e ) {
1851
- throw new RunFailureException (BuildJob .Result .ERROR , e );
1852
- }
1853
-
1854
- try {
1855
- scriptRunner .run ("pre-build script" , basedir , preBuildHookScript , context , logger );
1856
- } catch (ScriptException e ) {
1857
- throw new RunFailureException (BuildJob .Result .FAILURE_PRE_HOOK , e );
1858
- }
1849
+ runPreBuildHook (basedir , context , logger );
1859
1850
1860
1851
for (int invocationIndex = 1 ; ; invocationIndex ++) {
1861
1852
if (invocationIndex > 1 && !invokerProperties .isInvocationDefined (invocationIndex )) {
@@ -1889,6 +1880,7 @@ private boolean runBuild(
1889
1880
1890
1881
Properties userProperties =
1891
1882
getUserProperties (basedir , invokerProperties .getUserPropertiesFile (invocationIndex ));
1883
+ userProperties .putAll (scriptUserProperties );
1892
1884
request .setProperties (userProperties );
1893
1885
1894
1886
invokerProperties .configureInvocation (request , invocationIndex );
@@ -1911,12 +1903,8 @@ private boolean runBuild(
1911
1903
"Maven invocation failed. " + e .getMessage (), BuildJob .Result .FAILURE_BUILD );
1912
1904
}
1913
1905
}
1914
- } catch (IOException e ) {
1915
- throw new MojoExecutionException (e .getMessage (), e );
1916
1906
} finally {
1917
- if (selectorResult ) {
1918
- runPostBuildHook (basedir , context , logger );
1919
- }
1907
+ runPostBuildHook (basedir , context , logger );
1920
1908
}
1921
1909
return true ;
1922
1910
}
@@ -1931,6 +1919,31 @@ int getParallelThreadsCount() {
1931
1919
}
1932
1920
}
1933
1921
1922
+ private boolean runSelectorHook (File basedir , Map <String , Object > context , FileLogger logger )
1923
+ throws MojoExecutionException , RunFailureException {
1924
+ try {
1925
+ scriptRunner .run ("selector script" , basedir , selectorScript , context , logger );
1926
+ } catch (ScriptReturnException e ) {
1927
+ return false ;
1928
+ } catch (ScriptException e ) {
1929
+ throw new RunFailureException (BuildJob .Result .ERROR , e );
1930
+ } catch (IOException e ) {
1931
+ throw new MojoExecutionException (e .getMessage (), e );
1932
+ }
1933
+ return true ;
1934
+ }
1935
+
1936
+ private void runPreBuildHook (File basedir , Map <String , Object > context , FileLogger logger )
1937
+ throws MojoExecutionException , RunFailureException {
1938
+ try {
1939
+ scriptRunner .run ("pre-build script" , basedir , preBuildHookScript , context , logger );
1940
+ } catch (ScriptException e ) {
1941
+ throw new RunFailureException (BuildJob .Result .FAILURE_PRE_HOOK , e );
1942
+ } catch (IOException e ) {
1943
+ throw new MojoExecutionException (e .getMessage (), e );
1944
+ }
1945
+ }
1946
+
1934
1947
private void runPostBuildHook (File basedir , Map <String , Object > context , FileLogger logger )
1935
1948
throws MojoExecutionException , RunFailureException {
1936
1949
try {
0 commit comments