| 组织ID: |
org.codehaus.plexus |
| 项目ID: |
plexus-compiler-javac-errorprone |
| 版本: |
2.8 |
| 最后修改时间: |
2018-07-24 05:46:42 |
| 包类型: |
jar |
| 标题: |
Plexus Javac+error-prone Component |
| 描述: |
Javac Compiler support for Plexus Compiler component,
with error-prone static analysis checks enabled.
See http://errorprone.info
|
| 大小: |
9.58KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac-errorprone</artifactId>
<version>2.8</version>
</dependency>
|
| Gradle引入代码: |
org.codehaus.plexus:plexus-compiler-javac-errorprone:2.8
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compilers</artifactId>
<version>2.8</version>
</parent>
<artifactId>plexus-compiler-javac-errorprone</artifactId>
<name>Plexus Javac+error-prone Component</name>
<description>Javac Compiler support for Plexus Compiler component,
with error-prone static analysis checks enabled.
See http://errorprone.info
</description>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId>
<version>2.0.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!--
FIXME enable that with fixing classloader hierarchy
it's a bit different from the one used by maven plugins
-->
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/plexus/components.xml
org.codehaus.plexus.compiler.javac.errorprone.JavacCompilerWithErrorProne$1.class
org.codehaus.plexus.compiler.javac.errorprone.JavacCompilerWithErrorProne$CompilerInvoker$MessageListener.class
org.codehaus.plexus.compiler.javac.errorprone.JavacCompilerWithErrorProne$CompilerInvoker.class
org.codehaus.plexus.compiler.javac.errorprone.JavacCompilerWithErrorProne$NonDelegatingClassLoader.class
org.codehaus.plexus.compiler.javac.errorprone.JavacCompilerWithErrorProne.class
META-INF/maven/org.codehaus.plexus/plexus-compiler-javac-errorprone/pom.xml
META-INF/maven/org.codehaus.plexus/plexus-compiler-javac-errorprone/pom.properties
|
| 依赖Jar: |
plexus-compiler-javac-${project.version}.jar
/org.codehaus.plexus/plexus-compiler-javac/${project.version}
查看plexus-compiler-javac所有版本文件
error_prone_core-2.0.5.jar
/com.google.errorprone/error_prone_core/2.0.5
查看error_prone_core所有版本文件
|