|
111 | 111 | import org.codehaus.plexus.util.IOUtil;
|
112 | 112 | import org.codehaus.plexus.util.Os;
|
113 | 113 | import org.codehaus.plexus.util.PathTool;
|
114 |
| -import org.codehaus.plexus.util.PropertyUtils; |
115 | 114 | import org.codehaus.plexus.util.ReaderFactory;
|
116 | 115 | import org.codehaus.plexus.util.StringUtils;
|
117 | 116 | import org.codehaus.plexus.util.WriterFactory;
|
@@ -574,19 +573,23 @@ protected Context createDocumentVelocityContext( RenderingContext renderingConte
|
574 | 573 | // doxiaSiteRendererVersion
|
575 | 574 | InputStream inputStream = this.getClass().getResourceAsStream( "/META-INF/"
|
576 | 575 | + "maven/org.apache.maven.doxia/doxia-site-renderer/pom.properties" );
|
577 |
| - Properties properties = PropertyUtils.loadProperties( inputStream ); |
578 | 576 | if ( inputStream == null )
|
579 | 577 | {
|
580 | 578 | getLogger().debug( "pom.properties for doxia-site-renderer could not be found." );
|
581 | 579 | }
|
582 |
| - else if ( properties == null ) |
583 |
| - { |
584 |
| - getLogger().debug( "Failed to load pom.properties, so doxiaVersion is not available" |
585 |
| - + " in the Velocity context." ); |
586 |
| - } |
587 | 580 | else
|
588 | 581 | {
|
589 |
| - context.put( "doxiaSiteRendererVersion", properties.getProperty( "version" ) ); |
| 582 | + Properties properties = new Properties(); |
| 583 | + try ( InputStream in = inputStream ) |
| 584 | + { |
| 585 | + properties.load( in ); |
| 586 | + context.put( "doxiaSiteRendererVersion", properties.getProperty( "version" ) ); |
| 587 | + } |
| 588 | + catch ( IOException e ) |
| 589 | + { |
| 590 | + getLogger().debug( "Failed to load pom.properties, so doxiaVersion is not available" |
| 591 | + + " in the Velocity context." ); |
| 592 | + } |
590 | 593 | }
|
591 | 594 |
|
592 | 595 | // Add user properties
|
|
0 commit comments