-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #610 slicer requirements failure
make SlicerResolutionStrategy not consider warnings from slicer as failure to be consistent with eclipse update tests for target resolution to expect that slicer does not fail if dependencies are missing
- Loading branch information
Showing
37 changed files
with
831 additions
and
14 deletions.
There are no files selected for viewing
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
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
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
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
59 changes: 59 additions & 0 deletions
59
tycho-its/projects/target.plannerWithDependenciesInDifferentTargetLocation/pom.xml
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,59 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>aggregator</artifactId> | ||
<version>1.0.0</version> | ||
<packaging>pom</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>target-platform-configuration</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<resolver>p2</resolver> | ||
<pomDependencies>consider</pomDependencies> | ||
<executionEnvironment>JavaSE-11</executionEnvironment> | ||
<target> | ||
<artifact> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>targetplatform</artifactId> | ||
<version>1.0.0</version> | ||
</artifact> | ||
</target> | ||
<environments> | ||
<environment> | ||
<os>win32</os> | ||
<ws>win32</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
<environment> | ||
<os>linux</os> | ||
<ws>gtk</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
</environments> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<modules> | ||
<module>targetplatform</module> | ||
<module>project</module> | ||
</modules> | ||
|
||
</project> |
7 changes: 7 additions & 0 deletions
7
...ects/target.plannerWithDependenciesInDifferentTargetLocation/project/META-INF/MANIFEST.MF
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,7 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-SymbolicName: project | ||
Bundle-Version: 1.0.0 | ||
Automatic-Module-Name: bundle3 | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Require-Bundle: bundle2 |
2 changes: 2 additions & 0 deletions
2
...projects/target.plannerWithDependenciesInDifferentTargetLocation/project/build.properties
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,2 @@ | ||
source.. = src/ | ||
bin.includes = META-INF/,. |
16 changes: 16 additions & 0 deletions
16
tycho-its/projects/target.plannerWithDependenciesInDifferentTargetLocation/project/pom.xml
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,16 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | ||
http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>project</artifactId> | ||
<version>1.0.0</version> | ||
<packaging>eclipse-plugin</packaging> | ||
<parent> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>aggregator</artifactId> | ||
<version>1.0.0</version> | ||
</parent> | ||
|
||
</project> |
14 changes: 14 additions & 0 deletions
14
...s/projects/target.plannerWithDependenciesInDifferentTargetLocation/targetplatform/pom.xml
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,14 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | ||
http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>targetplatform</artifactId> | ||
<packaging>eclipse-target-definition</packaging> | ||
<parent> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>aggregator</artifactId> | ||
<version>1.0.0</version> | ||
</parent> | ||
|
||
</project> |
18 changes: 18 additions & 0 deletions
18
...get.plannerWithDependenciesInDifferentTargetLocation/targetplatform/targetplatform.target
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?pde?> | ||
<target name="p2Repository.slicerDependencies" sequenceNumber="1"> | ||
<locations> | ||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> | ||
<repository id="repoA" location="url"/> | ||
|
||
<unit id="bundle1" version="1.0.0"/> | ||
</location> | ||
|
||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> | ||
<repository id="repoB" location="url"/> | ||
|
||
<unit id="bundle2" version="1.0.0"/> | ||
<unit id="feature2.feature.group" version="1.0.0"/> | ||
</location> | ||
</locations> | ||
</target> |
59 changes: 59 additions & 0 deletions
59
tycho-its/projects/target.plannerWithMissingDependencies/pom.xml
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,59 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>aggregator</artifactId> | ||
<version>1.0.0</version> | ||
<packaging>pom</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>target-platform-configuration</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<resolver>p2</resolver> | ||
<pomDependencies>consider</pomDependencies> | ||
<executionEnvironment>JavaSE-11</executionEnvironment> | ||
<target> | ||
<artifact> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>targetplatform</artifactId> | ||
<version>1.0.0</version> | ||
</artifact> | ||
</target> | ||
<environments> | ||
<environment> | ||
<os>win32</os> | ||
<ws>win32</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
<environment> | ||
<os>linux</os> | ||
<ws>gtk</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
</environments> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<modules> | ||
<module>targetplatform</module> | ||
<module>project</module> | ||
</modules> | ||
|
||
</project> |
7 changes: 7 additions & 0 deletions
7
tycho-its/projects/target.plannerWithMissingDependencies/project/META-INF/MANIFEST.MF
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,7 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-SymbolicName: project | ||
Bundle-Version: 1.0.0 | ||
Automatic-Module-Name: bundle3 | ||
Bundle-RequiredExecutionEnvironment: JavaSE-11 | ||
Require-Bundle: bundle2 |
2 changes: 2 additions & 0 deletions
2
tycho-its/projects/target.plannerWithMissingDependencies/project/build.properties
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,2 @@ | ||
source.. = src/ | ||
bin.includes = META-INF/,. |
16 changes: 16 additions & 0 deletions
16
tycho-its/projects/target.plannerWithMissingDependencies/project/pom.xml
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,16 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | ||
http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>project</artifactId> | ||
<version>1.0.0</version> | ||
<packaging>eclipse-plugin</packaging> | ||
<parent> | ||
<groupId>tycho-its-project.p2Repository.slicerDependencies</groupId> | ||
<artifactId>aggregator</artifactId> | ||
<version>1.0.0</version> | ||
</parent> | ||
|
||
</project> |
Oops, something went wrong.