Skip to content

Commit 743da56

Browse files
authored
Merge test-jdk17 tests into main post [databind#4820] (#694)
1 parent 821664e commit 743da56

File tree

3 files changed

+1
-55
lines changed

3 files changed

+1
-55
lines changed

pom.xml

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -145,60 +145,6 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
145145
</repository>
146146
</repositories>
147147

148-
<profiles>
149-
<profile>
150-
<!-- And different set up for JDK 17 -->
151-
<id>java17</id>
152-
<activation>
153-
<jdk>17</jdk>
154-
</activation>
155-
<build>
156-
<plugins>
157-
<plugin>
158-
<groupId>org.codehaus.mojo</groupId>
159-
<artifactId>build-helper-maven-plugin</artifactId>
160-
<executions>
161-
<execution>
162-
<id>add-test-source</id>
163-
<phase>generate-test-sources</phase>
164-
<goals>
165-
<goal>add-test-source</goal>
166-
</goals>
167-
<configuration>
168-
<sources>
169-
<source>src/test-jdk17/java</source>
170-
</sources>
171-
</configuration>
172-
</execution>
173-
</executions>
174-
</plugin>
175-
<plugin>
176-
<groupId>org.apache.maven.plugins</groupId>
177-
<artifactId>maven-compiler-plugin</artifactId>
178-
<inherited>true</inherited>
179-
<configuration>
180-
<!-- Enable Java 17 for all sources so that Intellij picks the right language level -->
181-
<source>17</source>
182-
<release>17</release>
183-
<compilerArgs>
184-
<arg>-parameters</arg>
185-
<arg>--add-opens=java.base/java.lang=ALL-UNNAMED</arg>
186-
<arg>--add-opens=java.base/java.util=ALL-UNNAMED</arg>
187-
</compilerArgs>
188-
</configuration>
189-
</plugin>
190-
<plugin>
191-
<groupId>org.apache.maven.plugins</groupId>
192-
<artifactId>maven-surefire-plugin</artifactId>
193-
<configuration>
194-
<argLine>--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED</argLine>
195-
</configuration>
196-
</plugin>
197-
</plugins>
198-
</build>
199-
</profile>
200-
</profiles>
201-
202148
<build>
203149
<plugins>
204150
<plugin>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package tools.jackson.dataformat.xml.records.failing;
1+
package tools.jackson.dataformat.xml.failing.records;
22

33
import java.util.List;
44

0 commit comments

Comments
 (0)