Skip to content

Commit 9566aba

Browse files
committed
[DOXIASITETOOLS-231] Upgrade Plexus Utils to 3.3.0
1 parent 47094ea commit 9566aba

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

doxia-site-renderer/src/main/java/org/apache/maven/doxia/siterenderer/DefaultSiteRenderer.java

+11-8
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@
111111
import org.codehaus.plexus.util.IOUtil;
112112
import org.codehaus.plexus.util.Os;
113113
import org.codehaus.plexus.util.PathTool;
114-
import org.codehaus.plexus.util.PropertyUtils;
115114
import org.codehaus.plexus.util.ReaderFactory;
116115
import org.codehaus.plexus.util.StringUtils;
117116
import org.codehaus.plexus.util.WriterFactory;
@@ -574,19 +573,23 @@ protected Context createDocumentVelocityContext( RenderingContext renderingConte
574573
// doxiaSiteRendererVersion
575574
InputStream inputStream = this.getClass().getResourceAsStream( "/META-INF/"
576575
+ "maven/org.apache.maven.doxia/doxia-site-renderer/pom.properties" );
577-
Properties properties = PropertyUtils.loadProperties( inputStream );
578576
if ( inputStream == null )
579577
{
580578
getLogger().debug( "pom.properties for doxia-site-renderer could not be found." );
581579
}
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-
}
587580
else
588581
{
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+
}
590593
}
591594

592595
// Add user properties

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ under the License.
173173
<dependency>
174174
<groupId>org.codehaus.plexus</groupId>
175175
<artifactId>plexus-utils</artifactId>
176-
<version>3.0.22</version>
176+
<version>3.3.0</version>
177177
</dependency>
178178
<!-- misc -->
179179
<dependency>

0 commit comments

Comments
 (0)