|
1 |
| -<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"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - |
4 |
| - <parent> |
5 |
| - <groupId>io.cucumber</groupId> |
6 |
| - <artifactId>cucumber-jvm-groovy</artifactId> |
7 |
| - <version>5.1.3-SNAPSHOT</version> |
8 |
| - </parent> |
9 |
| - |
10 |
| - <artifactId>groovy-examples</artifactId> |
11 |
| - <packaging>jar</packaging> |
12 |
| - <name>Cucumber Groovy Examples</name> |
13 |
| - |
14 |
| - <properties> |
15 |
| - <gmaven.runtime>1.8</gmaven.runtime> |
16 |
| - <junit-jupiter.version>5.6.0</junit-jupiter.version> |
17 |
| - </properties> |
18 |
| - |
19 |
| - <dependencies> |
20 |
| - <dependency> |
21 |
| - <groupId>io.cucumber</groupId> |
22 |
| - <artifactId>cucumber-groovy</artifactId> |
23 |
| - <scope>test</scope> |
24 |
| - </dependency> |
25 |
| - <dependency> |
26 |
| - <groupId>io.cucumber</groupId> |
27 |
| - <artifactId>cucumber-junit</artifactId> |
28 |
| - <scope>test</scope> |
29 |
| - </dependency> |
30 |
| - <dependency> |
31 |
| - <groupId>org.junit.jupiter</groupId> |
32 |
| - <artifactId>junit-jupiter</artifactId> |
33 |
| - <version>${junit-jupiter.version}</version> |
34 |
| - <scope>test</scope> |
35 |
| - </dependency> |
36 |
| - <dependency> |
37 |
| - <groupId>org.codehaus.groovy</groupId> |
38 |
| - <artifactId>groovy-all</artifactId> |
39 |
| - <scope>provided</scope> |
40 |
| - </dependency> |
41 |
| - </dependencies> |
42 |
| - |
43 |
| - <build> |
44 |
| - <plugins> |
45 |
| - <plugin> |
46 |
| - <groupId>org.codehaus.gmaven</groupId> |
47 |
| - <artifactId>gmaven-plugin</artifactId> |
48 |
| - <executions> |
49 |
| - <execution> |
50 |
| - <goals> |
51 |
| - <goal>generateStubs</goal> |
52 |
| - <goal>compile</goal> |
53 |
| - <goal>generateTestStubs</goal> |
54 |
| - <goal>testCompile</goal> |
55 |
| - </goals> |
56 |
| - </execution> |
57 |
| - </executions> |
58 |
| - </plugin> |
59 |
| - </plugins> |
60 |
| - <pluginManagement> |
61 |
| - <plugins> |
62 |
| - <plugin> |
63 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
64 |
| - <configuration> |
65 |
| - <skip>true</skip> |
66 |
| - </configuration> |
67 |
| - </plugin> |
68 |
| - <plugin> |
69 |
| - <artifactId>maven-deploy-plugin</artifactId> |
70 |
| - <configuration> |
71 |
| - <skip>true</skip> |
72 |
| - </configuration> |
73 |
| - </plugin> |
74 |
| - <plugin> |
75 |
| - <groupId>org.sonatype.plugins</groupId> |
76 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
77 |
| - <configuration> |
78 |
| - <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
79 |
| - </configuration> |
80 |
| - </plugin> |
81 |
| - <plugin> |
82 |
| - <groupId>org.revapi</groupId> |
83 |
| - <artifactId>revapi-maven-plugin</artifactId> |
84 |
| - <configuration> |
85 |
| - <skip>true</skip> |
86 |
| - </configuration> |
87 |
| - </plugin> |
88 |
| - </plugins> |
89 |
| - </pluginManagement> |
90 |
| - </build> |
91 |
| -</project> |
| 1 | +<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"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + |
| 4 | + <parent> |
| 5 | + <groupId>io.cucumber</groupId> |
| 6 | + <artifactId>cucumber-jvm-groovy</artifactId> |
| 7 | + <version>5.1.3</version> |
| 8 | + </parent> |
| 9 | + |
| 10 | + <artifactId>groovy-examples</artifactId> |
| 11 | + <packaging>jar</packaging> |
| 12 | + <name>Cucumber Groovy Examples</name> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <gmaven.runtime>1.8</gmaven.runtime> |
| 16 | + <junit-jupiter.version>5.6.0</junit-jupiter.version> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>io.cucumber</groupId> |
| 22 | + <artifactId>cucumber-groovy</artifactId> |
| 23 | + <scope>test</scope> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>io.cucumber</groupId> |
| 27 | + <artifactId>cucumber-junit</artifactId> |
| 28 | + <scope>test</scope> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.junit.jupiter</groupId> |
| 32 | + <artifactId>junit-jupiter</artifactId> |
| 33 | + <version>${junit-jupiter.version}</version> |
| 34 | + <scope>test</scope> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.codehaus.groovy</groupId> |
| 38 | + <artifactId>groovy-all</artifactId> |
| 39 | + <scope>provided</scope> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.codehaus.gmaven</groupId> |
| 47 | + <artifactId>gmaven-plugin</artifactId> |
| 48 | + <executions> |
| 49 | + <execution> |
| 50 | + <goals> |
| 51 | + <goal>generateStubs</goal> |
| 52 | + <goal>compile</goal> |
| 53 | + <goal>generateTestStubs</goal> |
| 54 | + <goal>testCompile</goal> |
| 55 | + </goals> |
| 56 | + </execution> |
| 57 | + </executions> |
| 58 | + </plugin> |
| 59 | + </plugins> |
| 60 | + <pluginManagement> |
| 61 | + <plugins> |
| 62 | + <plugin> |
| 63 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 64 | + <configuration> |
| 65 | + <skip>true</skip> |
| 66 | + </configuration> |
| 67 | + </plugin> |
| 68 | + <plugin> |
| 69 | + <artifactId>maven-deploy-plugin</artifactId> |
| 70 | + <configuration> |
| 71 | + <skip>true</skip> |
| 72 | + </configuration> |
| 73 | + </plugin> |
| 74 | + <plugin> |
| 75 | + <groupId>org.sonatype.plugins</groupId> |
| 76 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 77 | + <configuration> |
| 78 | + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
| 79 | + </configuration> |
| 80 | + </plugin> |
| 81 | + <plugin> |
| 82 | + <groupId>org.revapi</groupId> |
| 83 | + <artifactId>revapi-maven-plugin</artifactId> |
| 84 | + <configuration> |
| 85 | + <skip>true</skip> |
| 86 | + </configuration> |
| 87 | + </plugin> |
| 88 | + </plugins> |
| 89 | + </pluginManagement> |
| 90 | + </build> |
| 91 | +</project> |
0 commit comments