Skip to content

Commit

Permalink
Bugfix for RunScript
Browse files Browse the repository at this point in the history
  • Loading branch information
sjcross committed Jun 7, 2024
1 parent 0d9a9ef commit 9e93fab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -476,10 +476,10 @@ public MetadataRefs updateAndGetMetadataReferences() {

ParameterGroup group = parameters.getParameter(ADD_OUTPUT);
LinkedHashMap<Integer, Parameters> collections = group.getCollections(true);

for (Parameters collection : collections.values()) {
if (collection.getValue(OUTPUT_TYPE, workspace).equals(OutputTypes.METADATA)) {
String metadataName = collection.getValue(OBJECT_METADATA_NAME, workspace);
String metadataName = collection.getValue(METADATA_NAME, workspace);
MetadataRef ref = metadataRefs.getOrPut(metadataName);
returnedRefs.add(ref);
}
Expand Down
8 changes: 4 additions & 4 deletions mia-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<artifactId>maven-gpg-plugin</artifactId>
</plugin>

<!-- <plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
Expand All @@ -229,7 +229,7 @@
</manifest>
</archive>
</configuration>
</plugin> -->
</plugin>

<!-- To be uncommented when creating release, but commented when uploading to Maven Central -->
<!-- <plugin>
Expand Down Expand Up @@ -258,7 +258,7 @@
</configuration>
</plugin> -->

<!-- <plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.0</version>
Expand All @@ -284,7 +284,7 @@
</configuration>
</execution>
</executions>
</plugin> -->
</plugin>
</plugins>
</build>
</project>

0 comments on commit 9e93fab

Please sign in to comment.