|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <parent> |
8 | | - <groupId>com.microsoft.playwright</groupId> |
9 | | - <artifactId>parent-pom</artifactId> |
10 | | - <version>0.170.3-SNAPSHOT</version> |
11 | | - </parent> |
12 | | - |
| 7 | + <groupId>com.microsoft.playwright</groupId> |
13 | 8 | <artifactId>api-generator</artifactId> |
| 9 | + <version>0.170.3-SNAPSHOT</version> |
14 | 10 | <name>Playwright - API Generator</name> |
15 | | - <description>Java library to automate Chromium, Firefox and WebKit with a single API. |
16 | | - Playwright is built to enable cross-browser web automation that is ever-green, capable, |
17 | | - reliable and fast. |
18 | | - |
| 11 | + <description> |
19 | 12 | This is an internal module used to generate Java API from the upstream Playwright |
20 | 13 | definitions. It's an internal development module not intended for external use. |
21 | 14 | </description> |
| 15 | + <properties> |
| 16 | + <compiler.version>1.8</compiler.version> |
| 17 | + <gson.version>2.8.6</gson.version> |
| 18 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + </properties> |
22 | 20 |
|
23 | 21 | <build> |
24 | 22 | <plugins> |
25 | 23 | <plugin> |
26 | 24 | <groupId>org.apache.maven.plugins</groupId> |
27 | | - <artifactId>maven-source-plugin</artifactId> |
28 | | - </plugin> |
29 | | - <plugin> |
30 | | - <groupId>org.apache.maven.plugins</groupId> |
31 | | - <artifactId>maven-javadoc-plugin</artifactId> |
| 25 | + <artifactId>maven-compiler-plugin</artifactId> |
| 26 | + <version>3.1</version> |
32 | 27 | <configuration> |
33 | | - <source>8</source> |
34 | | - <failOnError>false</failOnError> |
| 28 | + <source>${compiler.version}</source> |
| 29 | + <target>${compiler.version}</target> |
35 | 30 | </configuration> |
36 | | - <executions> |
37 | | - <execution> |
38 | | - <id>attach-javadocs</id> |
39 | | - <goals> |
40 | | - <goal>jar</goal> |
41 | | - </goals> |
42 | | - </execution> |
43 | | - </executions> |
44 | | - </plugin> |
45 | | - <plugin> |
46 | | - <groupId>org.apache.maven.plugins</groupId> |
47 | | - <artifactId>maven-compiler-plugin</artifactId> |
48 | 31 | </plugin> |
49 | 32 | </plugins> |
50 | 33 | </build> |
51 | 34 | <dependencies> |
52 | 35 | <dependency> |
53 | 36 | <groupId>com.google.code.gson</groupId> |
54 | 37 | <artifactId>gson</artifactId> |
| 38 | + <version>${gson.version}</version> |
55 | 39 | </dependency> |
56 | 40 | </dependencies> |
57 | 41 | </project> |
0 commit comments