Skip to content

Commit 4985cd6

Browse files
committed
7_7_deploy_Tomcat
1 parent 285aab6 commit 4985cd6

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

services/mail-service/pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,43 @@
3939
<type>test-jar</type>
4040
<scope>test</scope>
4141
</dependency>
42+
<dependency>
43+
<groupId>com.sun.xml.ws</groupId>
44+
<artifactId>jaxws-rt</artifactId>
45+
<version>2.3.0</version>
46+
<exclusions>
47+
<exclusion>
48+
<groupId>org.jvnet.mimepull</groupId>
49+
<artifactId>mimepull</artifactId>
50+
</exclusion>
51+
<exclusion>
52+
<groupId>javax.xml.bind</groupId>
53+
<artifactId>jaxb-api</artifactId>
54+
</exclusion>
55+
<exclusion>
56+
<groupId>javax.annotation</groupId>
57+
<artifactId>javax.annotation-api</artifactId>
58+
</exclusion>
59+
<exclusion>
60+
<groupId>org.jvnet.staxex</groupId>
61+
<artifactId>stax-ex</artifactId>
62+
</exclusion>
63+
<exclusion>
64+
<groupId>javax.xml.soap</groupId>
65+
<artifactId>javax.xml.soap-api</artifactId>
66+
</exclusion>
67+
</exclusions>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.jvnet.staxex</groupId>
71+
<artifactId>stax-ex</artifactId>
72+
<version>1.7.8</version>
73+
<exclusions>
74+
<exclusion>
75+
<groupId>javax.activation</groupId>
76+
<artifactId>activation</artifactId>
77+
</exclusion>
78+
</exclusions>
79+
</dependency>
4280
</dependencies>
4381
</project>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<endpoints xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime" version="2.0">
3+
<endpoint name="MailService" implementation="ru.javaops.masterjava.service.mail.MailServiceImpl"
4+
url-pattern="/mailService"/>
5+
</endpoints>

0 commit comments

Comments
 (0)