|
27 | 27 | <name>MicroProfile OpenAPI TCK</name> |
28 | 28 | <description>MicroProfile OpenAPI :: TCK</description> |
29 | 29 |
|
30 | | - <properties> |
31 | | - <arquillian.version>1.1.13.Final</arquillian.version> |
32 | | - <testng.version>6.11</testng.version> |
33 | | - </properties> |
34 | | - |
35 | 30 | <build> |
36 | 31 | <plugins> |
37 | 32 | <plugin> |
38 | 33 | <groupId>org.apache.maven.plugins</groupId> |
39 | 34 | <artifactId>maven-compiler-plugin</artifactId> |
40 | | - <version>2.3.2</version> |
| 35 | + <version>${maven-compiler-plugin.version}</version> |
41 | 36 | <configuration> |
42 | | - <source>1.8</source> |
43 | | - <target>1.8</target> |
| 37 | + <source>${maven.compiler.source}</source> |
| 38 | + <target>${maven.compiler.target}</target> |
44 | 39 | </configuration> |
45 | 40 | </plugin> |
46 | 41 |
|
|
88 | 83 | <dependency> |
89 | 84 | <groupId>org.eclipse.microprofile.openapi</groupId> |
90 | 85 | <artifactId>microprofile-openapi-api</artifactId> |
91 | | - <version>1.0-SNAPSHOT</version> |
| 86 | + <version>${project.version}</version> |
92 | 87 | <scope>provided</scope> |
93 | 88 | </dependency> |
94 | 89 |
|
95 | 90 | <dependency> |
96 | 91 | <groupId>org.testng</groupId> |
97 | 92 | <artifactId>testng</artifactId> |
98 | | - <version>6.10</version> |
| 93 | + <version>${testng.version}</version> |
99 | 94 | </dependency> |
100 | 95 |
|
101 | 96 | <dependency> |
|
107 | 102 | <dependency> |
108 | 103 | <groupId>javax.ws.rs</groupId> |
109 | 104 | <artifactId>javax.ws.rs-api</artifactId> |
110 | | - <version>2.0</version> |
| 105 | + <version>${jaxrs.version}</version> |
111 | 106 | </dependency> |
112 | 107 |
|
113 | 108 | <dependency> |
114 | 109 | <groupId>io.rest-assured</groupId> |
115 | 110 | <artifactId>rest-assured</artifactId> |
116 | | - <version>3.0.6</version> |
| 111 | + <version>${rest-assured.version}</version> |
117 | 112 | </dependency> |
118 | 113 |
|
119 | 114 | <dependency> |
120 | 115 | <groupId>org.hamcrest</groupId> |
121 | 116 | <artifactId>hamcrest-all</artifactId> |
122 | | - <version>1.3</version> |
| 117 | + <version>${hamcrest-all.version}</version> |
123 | 118 | </dependency> |
124 | 119 |
|
125 | 120 | <dependency> |
126 | 121 | <groupId>org.hamcrest</groupId> |
127 | 122 | <artifactId>java-hamcrest</artifactId> |
128 | | - <version>2.0.0.0</version> |
| 123 | + <version>${java-hamcrest.version}</version> |
129 | 124 | </dependency> |
130 | 125 |
|
131 | 126 | <dependency> |
132 | 127 | <groupId>javax.servlet</groupId> |
133 | 128 | <artifactId>javax.servlet-api</artifactId> |
134 | | - <version>3.1.0</version> |
| 129 | + <version>${servlet.version}</version> |
135 | 130 | </dependency> |
136 | 131 |
|
137 | 132 | <dependency> |
138 | 133 | <groupId>org.apache.httpcomponents</groupId> |
139 | 134 | <artifactId>httpclient</artifactId> |
140 | | - <version>4.5.2</version> |
| 135 | + <version>${httpclient.version}</version> |
141 | 136 | </dependency> |
142 | 137 |
|
143 | 138 | <dependency> |
144 | 139 | <groupId>com.fasterxml.jackson.core</groupId> |
145 | 140 | <artifactId>jackson-databind</artifactId> |
146 | | - <version>2.8.6</version> |
| 141 | + <version>${jackson.version}</version> |
147 | 142 | </dependency> |
148 | 143 |
|
149 | 144 | <dependency> |
150 | 145 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
151 | 146 | <artifactId>jackson-dataformat-yaml</artifactId> |
152 | | - <version>2.8.6</version> |
| 147 | + <version>${jackson.version}</version> |
153 | 148 | </dependency> |
154 | 149 | </dependencies> |
155 | 150 | <profiles> |
|
0 commit comments