|
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-scala</artifactId> |
7 | | - <version>5.6.0-SNAPSHOT</version> |
8 | | - </parent> |
9 | | - |
10 | | - <artifactId>cucumber-scala-aggregator</artifactId> |
11 | | - <packaging>pom</packaging> |
12 | | - <name>Cucumber-JVM: Scala Aggregator</name> |
13 | | - |
14 | | - <modules> |
15 | | - <module>scala_2.11</module> |
16 | | - <module>scala_2.12</module> |
17 | | - </modules> |
18 | | - |
19 | | - <profiles> |
20 | | - <profile> |
21 | | - <id>java8</id> |
22 | | - <activation> |
23 | | - <jdk>1.8</jdk> |
24 | | - </activation> |
25 | | - <modules> |
26 | | - <module>scala_2.13</module> |
27 | | - </modules> |
28 | | - </profile> |
29 | | - </profiles> |
30 | | - |
31 | | - <dependencies> |
32 | | - <dependency> |
33 | | - <groupId>io.cucumber</groupId> |
34 | | - <artifactId>cucumber-core</artifactId> |
35 | | - </dependency> |
36 | | - <dependency> |
37 | | - <groupId>com.fasterxml.jackson.core</groupId> |
38 | | - <artifactId>jackson-databind</artifactId> |
39 | | - <scope>provided</scope> |
40 | | - </dependency> |
41 | | - <dependency> |
42 | | - <groupId>io.cucumber</groupId> |
43 | | - <artifactId>cucumber-junit</artifactId> |
44 | | - <scope>test</scope> |
45 | | - </dependency> |
46 | | - <dependency> |
47 | | - <groupId>junit</groupId> |
48 | | - <artifactId>junit</artifactId> |
49 | | - <scope>test</scope> |
50 | | - </dependency> |
51 | | - </dependencies> |
52 | | - |
53 | | - <build> |
54 | | - <pluginManagement> |
55 | | - <plugins> |
56 | | - <plugin> |
57 | | - <groupId>net.alchim31.maven</groupId> |
58 | | - <artifactId>scala-maven-plugin</artifactId> |
59 | | - <version>${scala-maven-plugin.version}</version> |
60 | | - <configuration> |
61 | | - <args> |
62 | | - <arg>-feature</arg> |
63 | | - <arg>-deprecation</arg> |
64 | | - </args> |
65 | | - <excludes> |
66 | | - <exclude>**/*.java</exclude> |
67 | | - </excludes> |
68 | | - </configuration> |
69 | | - <executions> |
70 | | - <execution> |
71 | | - <id>regular-source-compilation</id> |
72 | | - <goals> |
73 | | - <goal>add-source</goal> |
74 | | - <goal>compile</goal> |
75 | | - <goal>testCompile</goal> |
76 | | - </goals> |
77 | | - </execution> |
78 | | - <execution> |
79 | | - <goals> |
80 | | - <goal>add-source</goal> |
81 | | - </goals> |
82 | | - <configuration> |
83 | | - <sourceDir>${basedir}/target/generated-sources/i18n</sourceDir> |
84 | | - </configuration> |
85 | | - </execution> |
86 | | - <execution> |
87 | | - <id>attach-javadocs</id> |
88 | | - <goals> |
89 | | - <goal>doc-jar</goal> |
90 | | - </goals> |
91 | | - </execution> |
92 | | - </executions> |
93 | | - </plugin> |
94 | | - |
95 | | - <plugin> |
96 | | - <groupId>org.apache.maven.plugins</groupId> |
97 | | - <artifactId>maven-antrun-plugin</artifactId> |
98 | | - <executions> |
99 | | - <execution> |
100 | | - <id>generate-i18n-sources</id> |
101 | | - <goals> |
102 | | - <goal>run</goal> |
103 | | - </goals> |
104 | | - <phase>generate-sources</phase> |
105 | | - <configuration> |
106 | | - <target> |
107 | | - <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="maven.plugin.classpath" /> |
108 | | - <groovy src="../sources/src/main/groovy/generate-i18n-dsl.groovy" /> |
109 | | - </target> |
110 | | - </configuration> |
111 | | - </execution> |
112 | | - </executions> |
113 | | - </plugin> |
114 | | - </plugins> |
115 | | - </pluginManagement> |
116 | | - </build> |
117 | | -</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-scala</artifactId> |
| 7 | + <version>5.6.0-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + |
| 10 | + <artifactId>cucumber-scala-aggregator</artifactId> |
| 11 | + <packaging>pom</packaging> |
| 12 | + <name>Cucumber-JVM: Scala Aggregator</name> |
| 13 | + |
| 14 | + <modules> |
| 15 | + <module>scala_2.11</module> |
| 16 | + <module>scala_2.12</module> |
| 17 | + <module>scala_2.13</module> |
| 18 | + </modules> |
| 19 | + |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>io.cucumber</groupId> |
| 23 | + <artifactId>cucumber-core</artifactId> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 27 | + <artifactId>jackson-databind</artifactId> |
| 28 | + <scope>provided</scope> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>io.cucumber</groupId> |
| 32 | + <artifactId>cucumber-junit</artifactId> |
| 33 | + <scope>test</scope> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>junit</groupId> |
| 37 | + <artifactId>junit</artifactId> |
| 38 | + <scope>test</scope> |
| 39 | + </dependency> |
| 40 | + </dependencies> |
| 41 | + |
| 42 | + <build> |
| 43 | + <pluginManagement> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>net.alchim31.maven</groupId> |
| 47 | + <artifactId>scala-maven-plugin</artifactId> |
| 48 | + <version>${scala-maven-plugin.version}</version> |
| 49 | + <configuration> |
| 50 | + <args> |
| 51 | + <arg>-feature</arg> |
| 52 | + <arg>-deprecation</arg> |
| 53 | + </args> |
| 54 | + <excludes> |
| 55 | + <exclude>**/*.java</exclude> |
| 56 | + </excludes> |
| 57 | + </configuration> |
| 58 | + <executions> |
| 59 | + <execution> |
| 60 | + <id>regular-source-compilation</id> |
| 61 | + <goals> |
| 62 | + <goal>add-source</goal> |
| 63 | + <goal>compile</goal> |
| 64 | + <goal>testCompile</goal> |
| 65 | + </goals> |
| 66 | + </execution> |
| 67 | + <execution> |
| 68 | + <goals> |
| 69 | + <goal>add-source</goal> |
| 70 | + </goals> |
| 71 | + <configuration> |
| 72 | + <sourceDir>${basedir}/target/generated-sources/i18n</sourceDir> |
| 73 | + </configuration> |
| 74 | + </execution> |
| 75 | + <execution> |
| 76 | + <id>attach-javadocs</id> |
| 77 | + <goals> |
| 78 | + <goal>doc-jar</goal> |
| 79 | + </goals> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + </plugin> |
| 83 | + |
| 84 | + <plugin> |
| 85 | + <groupId>org.apache.maven.plugins</groupId> |
| 86 | + <artifactId>maven-antrun-plugin</artifactId> |
| 87 | + <executions> |
| 88 | + <execution> |
| 89 | + <id>generate-i18n-sources</id> |
| 90 | + <goals> |
| 91 | + <goal>run</goal> |
| 92 | + </goals> |
| 93 | + <phase>generate-sources</phase> |
| 94 | + <configuration> |
| 95 | + <target> |
| 96 | + <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="maven.plugin.classpath" /> |
| 97 | + <groovy src="../sources/src/main/groovy/generate-i18n-dsl.groovy" /> |
| 98 | + </target> |
| 99 | + </configuration> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + </plugins> |
| 104 | + </pluginManagement> |
| 105 | + </build> |
| 106 | +</project> |
0 commit comments