forked from eclipse-tycho/tycho
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently polyglot do not work with maven 3.9 because it extends an internal component ... this extends the polyglot component to enbedd updated metadata in tycho itself. See: - takari/polyglot-maven#256
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...xtras/tycho-pomless/src/main/java/org/eclipse/tycho/pomless/TychoTeslaProjectBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2023 Christoph Läubrich and others. | ||
* | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Christoph Läubrich - initial API and implementation | ||
* | ||
*******************************************************************************/ | ||
package org.eclipse.tycho.pomless; | ||
|
||
import javax.annotation.Priority; | ||
|
||
import org.apache.maven.project.ProjectBuilder; | ||
import org.codehaus.plexus.component.annotations.Component; | ||
import org.sonatype.maven.polyglot.TeslaProjectBuilder; | ||
|
||
@Component(role = ProjectBuilder.class) | ||
@Priority(10) | ||
//Workaround for https://github.com/takari/polyglot-maven/pull/256 | ||
public class TychoTeslaProjectBuilder extends TeslaProjectBuilder { | ||
|
||
} |