Skip to content

Commit a64ac4d

Browse files
authored
[JAVA-47202] Created new module core-java-lang-oop-generics-2 and moved code from core-java-lang-oop-generics (#18611)
1 parent dc285bd commit a64ac4d

File tree

21 files changed

+43
-9
lines changed

21 files changed

+43
-9
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>core-java-lang-oop-generics-2</artifactId>
7+
<packaging>jar</packaging>
8+
<name>core-java-lang-oop-generics-2</name>
9+
10+
<parent>
11+
<artifactId>core-java-modules</artifactId>
12+
<groupId>com.baeldung.core-java-modules</groupId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
</parent>
15+
16+
<build>
17+
<resources>
18+
<resource>
19+
<directory>src/main/resources</directory>
20+
<filtering>true</filtering>
21+
</resource>
22+
</resources>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-compiler-plugin</artifactId>
27+
<configuration>
28+
<compilerArguments>
29+
<Xlint:unchecked/>
30+
</compilerArguments>
31+
</configuration>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
36+
</project>

0 commit comments

Comments
 (0)