|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <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/maven-v4_0_0.xsd "> |
3 | | - |
4 | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | + |
5 | 5 | <parent> |
6 | 6 | <groupId>org.assertj</groupId> |
7 | 7 | <artifactId>assertj-parent-pom</artifactId> |
8 | | - <version>2.2.10</version> |
| 8 | + <version>2.2.14</version> |
9 | 9 | </parent> |
| 10 | + |
10 | 11 | <artifactId>assertj-assertions-generator</artifactId> |
11 | 12 | <version>2.2.2-SNAPSHOT</version> |
| 13 | + |
12 | 14 | <name>AssertJ Assertions Generator</name> |
13 | 15 |
|
14 | 16 | <scm> |
|
18 | 20 | <tag>HEAD</tag> |
19 | 21 | </scm> |
20 | 22 |
|
| 23 | + <properties> |
| 24 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 25 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 26 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 27 | + </properties> |
| 28 | + |
21 | 29 | <dependencies> |
22 | 30 | <dependency> |
23 | 31 | <groupId>org.apache.commons</groupId> |
|
71 | 79 | <build> |
72 | 80 | <finalName>assertion-generator</finalName> |
73 | 81 | <plugins> |
74 | | - <plugin> |
75 | | - <groupId>org.apache.maven.plugins</groupId> |
76 | | - <artifactId>maven-compiler-plugin</artifactId> |
77 | | - <configuration> |
78 | | - <source>1.8</source> |
79 | | - <target>1.8</target> |
80 | | - <encoding>${project.build.sourceEncoding}</encoding> |
81 | | - </configuration> |
82 | | - </plugin> |
83 | | - <plugin> |
84 | | - <groupId>org.apache.maven.plugins</groupId> |
85 | | - <artifactId>maven-javadoc-plugin</artifactId> |
86 | | - <configuration> |
87 | | - <!-- needed to fix javadoc on java 11+ https://github.com/joel-costigliola/assertj-core/issues/1403 --> |
88 | | - <source>8</source> |
89 | | - </configuration> |
90 | | - <executions> |
91 | | - <execution> |
92 | | - <id>attach-javadocs</id> |
93 | | - <goals> |
94 | | - <goal>jar</goal> |
95 | | - </goals> |
96 | | - </execution> |
97 | | - </executions> |
98 | | - </plugin> |
99 | 82 | <plugin> |
100 | 83 | <groupId>org.apache.maven.plugins</groupId> |
101 | 84 | <artifactId>maven-assembly-plugin</artifactId> |
|
131 | 114 | <plugin> |
132 | 115 | <groupId>org.apache.maven.plugins</groupId> |
133 | 116 | <artifactId>maven-jar-plugin</artifactId> |
134 | | - <version>3.2.0</version> |
135 | 117 | <configuration> |
136 | 118 | <archive> |
137 | 119 | <manifest> |
|
0 commit comments