Skip to content

Commit

Permalink
Explicitly include ASM in our target platform
Browse files Browse the repository at this point in the history
My last attempt at this in 4aa5167 I had set
includeDependencyDepth="direct" but that pulled in a bunch
of unintended dependencies. Instead explicitly add the ASM
dependency.
  • Loading branch information
jonahgraham committed Jul 21, 2023
1 parent 4aa5167 commit 3d586dc
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion releng/org.eclipse.cdt.target/cdt.target
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<unit id="javax.xml.stream" version="0.0.0" />
<unit id="net.sourceforge.lpg.lpgjavaruntime" version="0.0.0" />
</location>
<location includeDependencyDepth="direct" includeDependencyScopes="compile" includeSource="true" missingManifest="error" type="Maven">
<location includeDependencyDepth="none" includeDependencyScopes="compile" includeSource="true" label="DirectFromMaven" missingManifest="error" type="Maven">
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -148,6 +148,40 @@
</dependency>
</dependencies>
</location>
<location includeDependencyDepth="none" includeDependencyScopes="compile" includeSource="true" label="ASM" missingManifest="error" type="Maven">
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.5</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>9.5</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.5</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.5</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>9.5</version>
<type>jar</type>
</dependency>
</dependencies>
</location>
</locations>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17" />
<launcherArgs>
Expand Down

0 comments on commit 3d586dc

Please sign in to comment.