| 组织ID: |
org.apache.maven.plugins |
| 项目ID: |
maven-compiler-plugin |
| 版本: |
3.5 |
| 最后修改时间: |
2018-07-23 21:46:46 |
| 包类型: |
maven-plugin |
| 标题: |
Apache Maven Compiler Plugin |
| 描述: |
The Compiler Plugin is used to compile the sources of your project. |
| 大小: |
48.96KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
</dependency>
|
| Gradle引入代码: |
org.apache.maven.plugins:maven-compiler-plugin:3.5
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<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.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
<version>28</version>
<relativePath>../../pom/maven/maven-plugins/pom.xml</relativePath>
</parent>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<packaging>maven-plugin</packaging>
<name>Apache Maven Compiler Plugin</name>
<description>The Compiler Plugin is used to compile the sources of your project.</description>
<inceptionYear>2001</inceptionYear>
<prerequisites>
<maven>${mavenVersion}</maven>
</prerequisites>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.5</developerConnection>
<url>http://svn.apache.org/viewvc/maven/plugins/tags/maven-compiler-plugin-3.5</url>
</scm>
<issueManagement>
<system>JIRA</system>
<url>https://issues.apache.org/jira/browse/MCOMPILER</url>
</issueManagement>
<distributionManagement>
<site>
<id>apache.website</id>
<url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path}</url>
</site>
</distributionManagement>
<properties>
<mavenVersion>3.0</mavenVersion>
<!--
! The following property is used in the integration tests MCOMPILER-157
-->
<mavenPluginPluginVersion>3.3</mavenPluginPluginVersion>
<plexusCompilerVersion>2.7</plexusCompilerVersion>
<groovyVersion>1.8.0</groovyVersion>
<groovyEclipseCompilerVersion>2.7.0-01</groovyEclipseCompilerVersion>
<groovy-eclipse-batch>2.0.4-04</groovy-eclipse-batch>
<openJpaVersion>2.2.0</openJpaVersion>
</properties>
<contributors>
<contributor>
<name>Jan Sievers</name>
</contributor>
</contributors>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- Maven -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-toolchain</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-incremental</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
<version>${plexusCompilerVersion}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-manager</artifactId>
<version>${plexusCompilerVersion}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-javac</artifactId>
<version>${plexusCompilerVersion}</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>${mavenVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>.java-version</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce-bytecode-version</id>
<configuration>
<rules>
<enforceBytecodeVersion>
<maxJdkVersion>1.6</maxJdkVersion>
</enforceBytecodeVersion>
<requireSameVersions />
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>run-its</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<executions>
<execution>
<id>integration-test</id>
<configuration>
<debug>true</debug>
<projectsDirectory>src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<pomIncludes>
<pomInclude>*/pom.xml</pomInclude>
<pomInclude>extras/*/pom.xml</pomInclude>
</pomIncludes>
<postBuildHookScript>verify</postBuildHookScript>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<settingsFile>src/it/settings.xml</settingsFile>
<goals>
<goal>clean</goal>
<goal>test-compile</goal>
</goals>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<!--
add those dependency just to have faster it test (for folks who doesn't have those locally
they will be downloaded from local repo rather than central
-->
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>${groovyEclipseCompilerVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>${groovy-eclipse-batch}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovyVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa</artifactId>
<version>${openJpaVersion}</version>
<!-- TODO: scope test? -->
</dependency>
</dependencies>
</profile>
</profiles>
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>plexus-snapshots</id>
<name>Plexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/plexus-snapshots</url>
</repository>
</repositories>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/plugin-help.xml
META-INF/maven/plugin.xml
META-INF/NOTICE
org.apache.maven.plugin.AbstractCompilerMojo.class
org.apache.maven.plugin.CompilationFailureException.class
org.apache.maven.plugin.compiler.AbstractCompilerMojo$1.class
org.apache.maven.plugin.compiler.AbstractCompilerMojo.class
org.apache.maven.plugin.compiler.CompilationFailureException.class
org.apache.maven.plugin.compiler.CompilerMojo.class
org.apache.maven.plugin.compiler.DependencyCoordinate.class
org.apache.maven.plugin.compiler.HelpMojo.class
org.apache.maven.plugin.compiler.TestCompilerMojo.class
org.apache.maven.plugin.CompilerMojo.class
org.apache.maven.plugin.TestCompilerMojo.class
META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/pom.xml
META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/pom.properties
|
| 依赖Jar: |
maven-plugin-api-${mavenVersion}.jar
/org.apache.maven/maven-plugin-api/${mavenVersion}
查看maven-plugin-api所有版本文件
maven-artifact-${mavenVersion}.jar
/org.apache.maven/maven-artifact/${mavenVersion}
查看maven-artifact所有版本文件
maven-core-${mavenVersion}.jar
/org.apache.maven/maven-core/${mavenVersion}
查看maven-core所有版本文件
maven-toolchain-2.2.1.jar
/org.apache.maven/maven-toolchain/2.2.1
查看maven-toolchain所有版本文件
maven-shared-utils-3.0.0.jar
/org.apache.maven.shared/maven-shared-utils/3.0.0
查看maven-shared-utils所有版本文件
maven-shared-incremental-1.1.jar
/org.apache.maven.shared/maven-shared-incremental/1.1
查看maven-shared-incremental所有版本文件
plexus-compiler-api-${plexusCompilerVersion}.jar
/org.codehaus.plexus/plexus-compiler-api/${plexusCompilerVersion}
查看plexus-compiler-api所有版本文件
plexus-compiler-manager-${plexusCompilerVersion}.jar
/org.codehaus.plexus/plexus-compiler-manager/${plexusCompilerVersion}
查看plexus-compiler-manager所有版本文件
plexus-compiler-javac-${plexusCompilerVersion}.jar
/org.codehaus.plexus/plexus-compiler-javac/${plexusCompilerVersion}
查看plexus-compiler-javac所有版本文件
maven-plugin-testing-harness-2.1.jar
/org.apache.maven.plugin-testing/maven-plugin-testing-harness/2.1
查看maven-plugin-testing-harness所有版本文件
maven-compat-${mavenVersion}.jar
/org.apache.maven/maven-compat/${mavenVersion}
查看maven-compat所有版本文件
mockito-core-1.9.5.jar
/org.mockito/mockito-core/1.9.5
查看mockito-core所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|