Skip to content

Commit

Permalink
Remove unknown parameters from mojos
Browse files Browse the repository at this point in the history
Fixes warnings in the log like:
```
12:44:26  [WARNING] Parameter 'includePackedArtifacts' is unknown for
plugin 'target-platform-configuration:4.0.10:target-platform
(default-target-platform)'
12:44:26  [WARNING] Parameter 'includePacked' is unknown for plugin
'tycho-p2-extras-plugin:4.0.10:mirror (mirror-org.eclipse.platform)'
12:44:26  [WARNING] Parameter 'includePacked' is unknown for plugin
'tycho-p2-extras-plugin:4.0.10:mirror
(mirror-org.eclipse.platform.source)'
```
  • Loading branch information
akurtakov committed Nov 28, 2024
1 parent c9f978c commit 992e0cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,10 @@
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<includePackedArtifacts>false</includePackedArtifacts>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<format>'${buildId}'</format>
</configuration>
Expand Down Expand Up @@ -223,7 +218,6 @@
<compress>true</compress>
<!-- whether to append to the target repository content -->
<append>true</append>
<includePacked>false</includePacked>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -275,7 +269,6 @@
<compress>true</compress>
<!-- whether to append to the target repository content -->
<append>true</append>
<includePacked>false</includePacked>
</configuration>
</execution>
</executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,6 @@
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<strictBinIncludes>true</strictBinIncludes>
<includePackedArtifacts>false</includePackedArtifacts>
<sourceReferences>
<generate>true</generate>
</sourceReferences>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 992e0cf

Please sign in to comment.