Skip to content

Commit 9e2710e

Browse files
committed
Use older ECJ version and some configuration updates
Signed-off-by: Christoph Läubrich <[email protected]>
1 parent aff5a4e commit 9e2710e

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<extension>
44
<groupId>org.eclipse.tycho</groupId>
55
<artifactId>tycho-build</artifactId>
6-
<version>3.0.3</version>
6+
<version>3.0.4</version>
77
</extension>
88
</extensions>

.mvn/maven.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
--errors
33
--update-snapshots
44
--no-transfer-progress
5-
-Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true
6-
-Dtycho.resolver.classic=false
5+
-Dmaven.test.error.ignore=true
6+
-Dmaven.test.failure.ignore=true

org.eclipse.m2e.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="org.eclipse.m2e.feature"
44
label="%featureName"
5-
version="2.2.1.qualifier"
5+
version="2.2.2.qualifier"
66
provider-name="%providerName"
77
plugin="org.eclipse.m2e.core"
88
license-feature="org.eclipse.license"

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<jacoco.destFile>../target/jacoco.exec</jacoco.destFile>
3535
<tycho.scmUrl>scm:git:https://github.com/eclipse-m2e/m2e-core.git</tycho.scmUrl>
3636
<trimStackTrace>false</trimStackTrace>
37+
<ecjVersion>3.32.0</ecjVersion>
3738
</properties>
3839

3940
<modules>
@@ -129,6 +130,9 @@
129130
<version>2.1.0-SNAPSHOT</version>
130131
</artifact>
131132
</target>
133+
<dependency-resolution>
134+
<localArtifacts>ignore</localArtifacts>
135+
</dependency-resolution>
132136
<environments>
133137
<environment>
134138
<os>win32</os>
@@ -206,6 +210,13 @@
206210
<groupId>org.eclipse.tycho</groupId>
207211
<artifactId>tycho-compiler-plugin</artifactId>
208212
<version>${tycho-version}</version>
213+
<dependencies>
214+
<dependency>
215+
<groupId>org.eclipse.jdt</groupId>
216+
<artifactId>ecj</artifactId>
217+
<version>${ecjVersion}</version>
218+
</dependency>
219+
</dependencies>
209220
</plugin>
210221
<plugin>
211222
<groupId>org.eclipse.tycho</groupId>

0 commit comments

Comments
 (0)