1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+ ~ Copyright (C) 2018 Lightbend Inc. <https://www.lightbend.com>
4
+ -->
5
+
6
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
7
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
8
+ <modelVersion >4.0.0</modelVersion >
9
+
10
+ <parent >
11
+ <groupId >com.lightbend.microprofile.reactive.streams</groupId >
12
+ <artifactId >lightbend-microprofile-reactive-streams-parent</artifactId >
13
+ <version >1.0-SNAPSHOT</version >
14
+ </parent >
15
+
16
+ <artifactId >lightbend-microprofile-reactive-streams-zerodep-cdi</artifactId >
17
+ <name >Lightbend MicroProfile Reactive Streams Operators Zero Dependency CDI</name >
18
+ <description >Lightbend MicroProfile Reactive Streams Operators :: Zero Dependency CDI Integration</description >
19
+ <dependencies >
20
+ <dependency >
21
+ <groupId >${project.groupId} </groupId >
22
+ <artifactId >lightbend-microprofile-reactive-streams-zerodep</artifactId >
23
+ <version >${project.version} </version >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >javax.enterprise</groupId >
27
+ <artifactId >cdi-api</artifactId >
28
+ </dependency >
29
+ <dependency >
30
+ <groupId >org.eclipse.microprofile.reactive.streams</groupId >
31
+ <artifactId >microprofile-reactive-streams-operators-tck-arquillian</artifactId >
32
+ <scope >test</scope >
33
+ </dependency >
34
+ <dependency >
35
+ <groupId >io.thorntail</groupId >
36
+ <artifactId >arquillian</artifactId >
37
+ <exclusions >
38
+ <exclusion >
39
+ <groupId >org.jboss.arquillian.junit</groupId >
40
+ <artifactId >arquillian-junit-container</artifactId >
41
+ </exclusion >
42
+ </exclusions >
43
+ <scope >test</scope >
44
+ </dependency >
45
+ </dependencies >
46
+
47
+ <dependencyManagement >
48
+ <dependencies >
49
+ <dependency >
50
+ <groupId >javax.enterprise</groupId >
51
+ <artifactId >cdi-api</artifactId >
52
+ <version >2.0</version >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >org.jboss.arquillian</groupId >
56
+ <artifactId >arquillian-bom</artifactId >
57
+ <version >1.1.15.Final</version >
58
+ <scope >import</scope >
59
+ <type >pom</type >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >io.thorntail</groupId >
63
+ <artifactId >bom</artifactId >
64
+ <version >2.0.0.Final</version >
65
+ <scope >import</scope >
66
+ <type >pom</type >
67
+ </dependency >
68
+ </dependencies >
69
+ </dependencyManagement >
70
+
71
+ <build >
72
+ <plugins >
73
+ <plugin >
74
+ <groupId >org.apache.maven.plugins</groupId >
75
+ <artifactId >maven-javadoc-plugin</artifactId >
76
+ <executions >
77
+ <execution >
78
+ <id >attach-javadocs</id >
79
+ <goals >
80
+ <goal >jar</goal >
81
+ </goals >
82
+ </execution >
83
+ </executions >
84
+ </plugin >
85
+ <plugin >
86
+ <groupId >org.apache.maven.plugins</groupId >
87
+ <artifactId >maven-source-plugin</artifactId >
88
+ <executions >
89
+ <execution >
90
+ <id >attach-sources</id >
91
+ <goals >
92
+ <goal >jar</goal >
93
+ </goals >
94
+ </execution >
95
+ </executions >
96
+ </plugin >
97
+ </plugins >
98
+ </build >
99
+ </project >
0 commit comments