Skip to content

Commit 46edd98

Browse files
committed
fix jaxb version
1 parent a752027 commit 46edd98

File tree

1 file changed

+21
-31
lines changed
  • dubbo-rpc/dubbo-rpc-webservice

1 file changed

+21
-31
lines changed

dubbo-rpc/dubbo-rpc-webservice/pom.xml

Lines changed: 21 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,26 @@
4040
<artifactId>dubbo-remoting-http</artifactId>
4141
<version>${project.parent.version}</version>
4242
</dependency>
43+
<dependency>
44+
<groupId>javax.xml.bind</groupId>
45+
<artifactId>jaxb-api</artifactId>
46+
<version>2.2.7</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>com.sun.xml.bind</groupId>
50+
<artifactId>jaxb-impl</artifactId>
51+
<version>2.2.7</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.sun.xml.bind</groupId>
55+
<artifactId>jaxb-core</artifactId>
56+
<version>2.2.7</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>javax.activation</groupId>
60+
<artifactId>javax.activation-api</artifactId>
61+
<version>1.2.0</version>
62+
</dependency>
4363
<dependency>
4464
<groupId>org.apache.cxf</groupId>
4565
<artifactId>cxf-rt-frontend-simple</artifactId>
@@ -54,35 +74,5 @@
5474
</dependency>
5575
</dependencies>
5676

57-
<profiles>
58-
<profile>
59-
<id>jdk9</id>
60-
<activation>
61-
<activeByDefault>true</activeByDefault>
62-
<jdk>1.9</jdk>
63-
</activation>
64-
<dependencies>
65-
<dependency>
66-
<groupId>javax.xml.bind</groupId>
67-
<artifactId>jaxb-api</artifactId>
68-
<version>2.3.0</version>
69-
</dependency>
70-
<dependency>
71-
<groupId>com.sun.xml.bind</groupId>
72-
<artifactId>jaxb-impl</artifactId>
73-
<version>2.3.0</version>
74-
</dependency>
75-
<dependency>
76-
<groupId>com.sun.xml.bind</groupId>
77-
<artifactId>jaxb-core</artifactId>
78-
<version>2.3.0</version>
79-
</dependency>
80-
<dependency>
81-
<groupId>javax.activation</groupId>
82-
<artifactId>javax.activation-api</artifactId>
83-
<version>1.2.0</version>
84-
</dependency>
85-
</dependencies>
86-
</profile>
87-
</profiles>
77+
8878
</project>

0 commit comments

Comments
 (0)