This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/master by this push:
new 9ec6886 No need for toolchains
9ec6886 is described below
commit 9ec6886f02d9b485ae08d451e0feca5b6ca3e2b5
Author: Ralph Goers <[email protected]>
AuthorDate: Tue Feb 1 00:25:13 2022 -0700
No need for toolchains
---
log4j-core/pom.xml | 35 -----------------------------------
1 file changed, 35 deletions(-)
diff --git a/log4j-core/pom.xml b/log4j-core/pom.xml
index 8b27a20..3b8342e 100644
--- a/log4j-core/pom.xml
+++ b/log4j-core/pom.xml
@@ -311,40 +311,5 @@
</plugin>
</plugins>
</reporting>
- <profiles>
- <!-- The javac compiler has a bug on MacOS that prevents compilations from
working in Java 11. It was fixed
- in Java 17 -->
- <profile>
- <id>MacOs</id>
- <activation>
- <os>
- <family>Mac</family>
- </os>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-toolchains-plugin</artifactId>
- <version>3.0.0</version>
- <executions>
- <execution>
- <goals>
- <goal>toolchain</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <toolchains>
- <jdk>
- <version>[17, )</version>
- </jdk>
- </toolchains>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>