1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
+ <parent >
4
+ <artifactId >proteus-project</artifactId >
5
+ <groupId >io.sinistral</groupId >
6
+ <version >0.4.6-SNAPSHOT</version >
7
+
8
+ </parent >
9
+ <modelVersion >4.0.0</modelVersion >
10
+
11
+ <artifactId >proteus-swagger</artifactId >
12
+
13
+ <name >Proteus Swagger</name >
14
+
15
+ <packaging >jar</packaging >
16
+
17
+
18
+ <build >
19
+ <resources >
20
+ <resource >
21
+ <directory >src/main/resources</directory >
22
+ <filtering >false</filtering >
23
+ </resource >
24
+ </resources >
25
+ <testResources >
26
+ <testResource >
27
+ <directory >src/test/resources</directory >
28
+ </testResource >
29
+ <testResource >
30
+ <directory >src/test/java</directory >
31
+ <excludes >
32
+ <exclude >**/*.java</exclude >
33
+ </excludes >
34
+ </testResource >
35
+ </testResources >
36
+
37
+ <plugins >
38
+ <plugin >
39
+ <groupId >org.apache.maven.plugins</groupId >
40
+ <artifactId >maven-jar-plugin</artifactId >
41
+ <version >3.1.0</version >
42
+ <executions >
43
+ <execution >
44
+ <goals >
45
+ <goal >test-jar</goal >
46
+ </goals >
47
+ </execution >
48
+ </executions >
49
+ </plugin >
50
+ <plugin >
51
+ <groupId >org.apache.maven.plugins</groupId >
52
+ <artifactId >maven-source-plugin</artifactId >
53
+ </plugin >
54
+ <plugin >
55
+ <groupId >org.apache.maven.plugins</groupId >
56
+ <artifactId >maven-javadoc-plugin</artifactId >
57
+ </plugin >
58
+ <plugin >
59
+ <artifactId >maven-surefire-plugin</artifactId >
60
+ <groupId >org.apache.maven.plugins</groupId >
61
+
62
+ </plugin >
63
+ <plugin >
64
+ <groupId >org.apache.maven.plugins</groupId >
65
+ <artifactId >maven-gpg-plugin</artifactId >
66
+ </plugin >
67
+ <plugin >
68
+ <groupId >org.sonatype.plugins</groupId >
69
+ <artifactId >nexus-staging-maven-plugin</artifactId >
70
+ </plugin >
71
+ <plugin >
72
+ <groupId >org.apache.maven.plugins</groupId >
73
+ <artifactId >maven-release-plugin</artifactId >
74
+ </plugin >
75
+
76
+ <plugin >
77
+ <groupId >org.apache.maven.plugins</groupId >
78
+ <artifactId >maven-compiler-plugin</artifactId >
79
+ </plugin >
80
+ </plugins >
81
+ </build >
82
+
83
+
84
+ <dependencies >
85
+
86
+
87
+
88
+ <dependency >
89
+ <groupId >io.swagger</groupId >
90
+ <artifactId >swagger-annotations</artifactId >
91
+ <version >${swagger.version}</version >
92
+ </dependency >
93
+ <dependency >
94
+ <groupId >io.swagger</groupId >
95
+ <artifactId >swagger-core</artifactId >
96
+ <version >${swagger.version}</version >
97
+ <exclusions >
98
+ <exclusion >
99
+ <groupId >org.slf4j</groupId >
100
+ <artifactId >slf4j-api</artifactId >
101
+ </exclusion >
102
+ </exclusions >
103
+ </dependency >
104
+ <dependency >
105
+ <groupId >io.swagger</groupId >
106
+ <artifactId >swagger-jaxrs</artifactId >
107
+ <version >${swagger.version}</version >
108
+ </dependency >
109
+ <dependency >
110
+ <groupId >io.sinistral</groupId >
111
+ <artifactId >proteus-core</artifactId >
112
+ <version >${proteus.version}</version >
113
+ </dependency >
114
+
115
+ </dependencies >
116
+
117
+
118
+
119
+ <distributionManagement >
120
+ <downloadUrl >https://oss.sonatype.org/content/groups/public/io/sinistral/proteus-swagger</downloadUrl >
121
+ </distributionManagement >
122
+ </project >
0 commit comments