|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 |
|
3 |
| -<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 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion>
|
5 | 6 |
|
6 | 7 | <groupId>com.google.pdsl</groupId>
|
7 | 8 | <artifactId>pdsl</artifactId>
|
8 |
| - <version>1.11</version> |
| 9 | + <version>1.11.1-SNAPSHOT</version> |
9 | 10 |
|
10 | 11 | <name>pdsl</name>
|
11 | 12 | <url>http://www.github.com/google/polymorphicDSL</url>
|
12 | 13 |
|
| 14 | + |
13 | 15 | <description>
|
14 |
| - The Polymorphic DSL test framework was designed to solve the challenges with testing large, complex systems. Modern architecture requires software to run as distrubited systems or on multiple platforms. The conventional cost of testing these systems is quite high. |
15 |
| - PDSL allows a user to describe the system under test using a DSL of some kind: a picture, |
16 |
| - sentences in natural languages, graphs, etc. Using a common DSL allows someone to make deeply scalable tests. A simple change to the DSL could generate dozens of tests providing coverage through many layers of the test pyramid or even multiple applications. |
| 16 | + The Polymorphic DSL test framework was designed to solve the challenges with testing large, complex systems. |
| 17 | + Modern architecture requires software to run as distrubited systems or on multiple platforms. The conventional |
| 18 | + cost of testing these systems is quite high. |
| 19 | + PDSL allows a user to describe the system under test using a DSL of some kind: a picture, |
| 20 | + sentences in natural languages, graphs, etc. Using a common DSL allows someone to make deeply scalable tests. A |
| 21 | + simple change to the DSL could generate dozens of tests providing coverage through many layers of the test |
| 22 | + pyramid or even multiple applications. |
17 | 23 | </description>
|
18 |
| - <parent> |
19 |
| - <groupId>org.sonatype.oss</groupId> |
20 |
| - <artifactId>oss-parent</artifactId> |
21 |
| - <version>7</version> |
22 |
| - </parent> |
23 | 24 |
|
24 | 25 | <properties>
|
25 | 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
26 | 27 | <maven.compiler.source>21</maven.compiler.source>
|
27 | 28 | <maven.compiler.target>21</maven.compiler.target>
|
28 | 29 | <jacoco.version>0.8.9</jacoco.version>
|
29 | 30 | <shade.version>3.3.0</shade.version>
|
30 |
| - <antlr.version>4.9.1</antlr.version> |
| 31 | + <antlr.version>4.13.2</antlr.version> |
31 | 32 | <mvn.jar.version>3.2.2</mvn.jar.version>
|
32 | 33 | </properties>
|
33 | 34 |
|
| 35 | + <licenses> |
| 36 | + <license> |
| 37 | + <name>The Apache Software License, Version 2.0</name> |
| 38 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 39 | + <distribution>repo</distribution> |
| 40 | + <comments>A business-friendly OSS license</comments> |
| 41 | + </license> |
| 42 | + </licenses> |
| 43 | + |
| 44 | + <developers> |
| 45 | + <developer> |
| 46 | + <name>Nelson Boyer</name> |
| 47 | + |
| 48 | + <organization>Google LLC</organization> |
| 49 | + <organizationUrl>http://www.google.com</organizationUrl> |
| 50 | + </developer> |
| 51 | + </developers> |
| 52 | + |
34 | 53 | <dependencies>
|
35 | 54 | <!-- code coverage -->
|
36 | 55 | <dependency>
|
|
149 | 168 | <id>test</id> <!-- needed to allow generation of ANTLR grammars used by test code -->
|
150 | 169 | <build>
|
151 | 170 | <plugins>
|
152 |
| -<!-- <plugin>--> |
153 |
| -<!-- <groupId>org.apache.maven.plugins</groupId>--> |
154 |
| -<!-- <artifactId>maven-surefire-plugin</artifactId>--> |
155 |
| -<!-- <configuration>--> |
156 |
| -<!-- <argLine>--> |
157 |
| -<!-- --add-opens nodatafound.mockito_jpms_usecase/nodatafound.mjpmsuc=ALL-UNNAMED--> |
158 |
| -<!-- --add-opens=java.base/java.lang=ALL-UNNAMED--> |
159 |
| -<!-- --add-opens=java.base/java.util=ALL-UNNAMED--> |
160 |
| - |
161 |
| -<!-- </argLine>--> |
162 |
| -<!-- <includes>--> |
163 |
| -<!-- <include>**/com/pdsl/tmp/SimpleHelloTest.java</include>--> |
164 |
| -<!-- <!– <include>**/myfiber/pdsl/*Test.java</include>–>--> |
165 |
| -<!-- </includes>--> |
166 |
| -<!-- </configuration>--> |
167 |
| -<!-- </plugin>--> |
168 | 171 | <plugin>
|
169 | 172 | <groupId>org.antlr</groupId>
|
170 | 173 | <artifactId>antlr4-maven-plugin</artifactId>
|
|
189 | 192 | <id>release</id>
|
190 | 193 | <build>
|
191 | 194 | <plugins>
|
192 |
| - <plugin> |
| 195 | + <plugin> |
193 | 196 | <groupId>org.apache.maven.plugins</groupId>
|
194 | 197 | <artifactId>maven-javadoc-plugin</artifactId>
|
195 | 198 | <version>3.8.0</version>
|
|
210 | 213 | </execution>
|
211 | 214 | </executions>
|
212 | 215 | </plugin>
|
213 |
| -<!-- <plugin>--> |
214 |
| -<!-- <groupId>org.apache.maven.plugins</groupId>--> |
215 |
| -<!-- <artifactId>maven-surefire-plugin</artifactId>--> |
216 |
| -<!-- <configuration>--> |
217 |
| -<!-- <argLine> --> |
218 |
| -<!-- --add-opens nodatafound.mockito_jpms_usecase/nodatafound.mjpmsuc=ALL-UNNAMED--> |
219 |
| -<!-- --add-opens=java.base/java.lang=ALL-UNNAMED--> |
220 |
| -<!-- --add-opens=java.base/java.util=ALL-UNNAMED--> |
221 |
| - |
222 |
| -<!-- </argLine>--> |
223 |
| -<!-- </configuration> --> |
224 |
| -<!-- </plugin>--> |
| 216 | + |
225 | 217 | <plugin>
|
226 | 218 | <groupId>org.antlr</groupId>
|
227 | 219 | <artifactId>antlr4-maven-plugin</artifactId>
|
228 | 220 | <version>${antlr.version}</version>
|
229 | 221 | <configuration>
|
230 |
| - <!-- |
231 |
| -<sourceDirectory>${basedir}/src/test/antlr4</sourceDirectory> |
232 |
| -<libDirectory>${basedir}/src/test/antlr4/com/pdsl/grammars</libDirectory> |
233 |
| - --> |
234 | 222 | <sourceDirectory>${basedir}/src/main/antlr4</sourceDirectory>
|
235 | 223 | <preparationGoals>antlr4</preparationGoals>
|
236 | 224 | </configuration>
|
|
258 | 246 | </executions>
|
259 | 247 | </plugin>
|
260 | 248 |
|
261 |
| - <plugin> |
262 |
| - <groupId>org.sonatype.plugins</groupId> |
263 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
264 |
| - <version>1.7.0</version> |
265 |
| - <extensions>true</extensions> |
266 |
| - <executions> |
267 |
| - <execution> |
268 |
| - <id>antlr4_deploy</id> |
269 |
| - <phase>antlr4</phase> |
270 |
| - <goals> |
271 |
| - <goal>antlr4</goal> |
272 |
| - </goals> |
273 |
| - </execution> |
274 |
| - <execution> |
275 |
| - <id>default_deploy</id> |
276 |
| - <phase>deploy</phase> |
277 |
| - <goals> |
278 |
| - <goal>deploy</goal> |
279 |
| - </goals> |
280 |
| - </execution> |
281 |
| - </executions> |
282 |
| - <configuration> |
283 |
| - <serverId>ossrh</serverId> |
284 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
285 |
| - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
286 |
| - </configuration> |
287 |
| - </plugin> |
| 249 | + |
288 | 250 | <plugin>
|
289 | 251 | <groupId>org.apache.maven.plugins</groupId>
|
290 | 252 | <artifactId>maven-source-plugin</artifactId>
|
291 |
| - <version>2.2.1</version> |
| 253 | + <version>3.3.1</version> |
292 | 254 | <executions>
|
293 | 255 | <execution>
|
294 | 256 | <id>attach-sources</id>
|
|
313 | 275 | </profile>
|
314 | 276 | </profiles>
|
315 | 277 |
|
316 |
| - <distributionManagement> |
317 |
| - <snapshotRepository> |
318 |
| - <id>ossrh</id> |
319 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
320 |
| - </snapshotRepository> |
321 |
| - <repository> |
322 |
| - <id>ossrh</id> |
323 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
324 |
| - </repository> |
325 |
| - |
326 |
| - </distributionManagement> |
327 |
| - |
328 | 278 | <build>
|
329 | 279 | <pluginManagement>
|
330 | 280 | <plugins>
|
| 281 | + <plugin> |
| 282 | + <groupId>org.sonatype.central</groupId> |
| 283 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 284 | + <version>0.8.0</version> |
| 285 | + <extensions>true</extensions> |
| 286 | + </plugin> |
| 287 | + |
331 | 288 | <plugin>
|
332 | 289 | <groupId>org.antlr</groupId>
|
333 | 290 | <artifactId>antlr4-maven-plugin</artifactId>
|
|
395 | 352 | </plugin>
|
396 | 353 | </plugins>
|
397 | 354 | </pluginManagement>
|
| 355 | + |
398 | 356 | <plugins>
|
| 357 | + <plugin> |
| 358 | + <groupId>org.sonatype.central</groupId> |
| 359 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 360 | + </plugin> |
399 | 361 |
|
400 | 362 | <plugin>
|
401 | 363 | <groupId>org.apache.maven.plugins</groupId>
|
|
410 | 372 | <plugin>
|
411 | 373 | <groupId>org.apache.maven.plugins</groupId>
|
412 | 374 | <artifactId>maven-surefire-plugin</artifactId>
|
413 |
| - <version>2.12.4</version> |
| 375 | + <version>3.5.3</version> |
414 | 376 | <configuration>
|
415 | 377 | <argLine>
|
416 |
| -<!-- --add-opens nodatafound.mockito_jpms_usecase/nodatafound.mjpmsuc=ALL-UNNAMED--> |
417 | 378 | --add-opens=java.base/java.lang=ALL-UNNAMED
|
418 | 379 | --add-opens=java.base/java.util=ALL-UNNAMED
|
419 | 380 | </argLine>
|
420 |
| - <!-- This section for debugging only --> |
421 |
| -<!-- <includes>--> |
422 |
| -<!-- <include>**/com/pdsl/interpreter/InterpreterSuiteTest.java</include>--> |
423 |
| -<!-- <include>**/com/pdsl/component/PreorderTestCaseFactoryTest.java</include>--> |
424 |
| -<!-- </includes>--> |
425 | 381 | </configuration>
|
426 | 382 | </plugin>
|
427 | 383 |
|
|
0 commit comments