Skip to content

Commit 276ccf8

Browse files
committed
Fix JsonLd Maven Plugin Tests
1 parent e81e3f6 commit 276ccf8

File tree

1 file changed

+1
-1
lines changed
  • tools/esmf-aspect-model-maven-plugin/src/main/java/org/eclipse/esmf/aspectmodel

1 file changed

+1
-1
lines changed

tools/esmf-aspect-model-maven-plugin/src/main/java/org/eclipse/esmf/aspectmodel/GenerateJsonLd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void executeGeneration() throws MojoExecutionException, MojoFailureExcept
3838
try {
3939
for ( final Aspect context : aspects ) {
4040
final AspectModelToJsonLdGenerator generator = new AspectModelToJsonLdGenerator( context );
41-
generator.generateJsonLd( name -> getOutputStreamForFile( name + ".json", outputDirectory ) );
41+
generator.generateJsonLd( name -> getOutputStreamForFile( name + ".jsonld", outputDirectory ) );
4242
}
4343
} catch ( final IOException exception ) {
4444
throw new MojoExecutionException( "Could not generate JSON-LD.", exception );

0 commit comments

Comments
 (0)