Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit a62ea7c

Browse files
committed
Explicitly depend on javax.xml.bind in Java Debugger open source build. This is not about using the debugger with JDK9, but it's about building the debugger from open source using JDK9.
This is a no-op when building the debugger agent using JDK7-8. It is required with JDK9, because this dependency was moved into an external module in JDK9. This has the diffbase, because jaxb-api also comes with a module-info.class file, which is incompatible with maven-enforcer-plugin. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=174512537
1 parent 5a96bee commit a62ea7c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/agent/internals/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
<artifactId>gson</artifactId>
4040
<version>2.3.1</version>
4141
</dependency>
42+
<dependency>
43+
<groupId>javax.xml.bind</groupId>
44+
<artifactId>jaxb-api</artifactId>
45+
<version>2.3.0</version>
46+
</dependency>
4247
</dependencies>
4348

4449
<build>

0 commit comments

Comments
 (0)