组织ID: |
io.mangoo |
项目ID: |
mangooio-maven-plugin |
版本: |
1.0.0 |
最后修改时间: |
2019-10-29 10:18:39 |
包类型: |
maven-plugin |
大小: |
18.75KB |
|
Maven引入代码: |
<dependency>
<groupId>io.mangoo</groupId>
<artifactId>mangooio-maven-plugin</artifactId>
<version>1.0.0</version>
</dependency>
|
Gradle引入代码: |
io.mangoo:mangooio-maven-plugin:1.0.0
|
下载Jar包: |
|
POM文件内容: |
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.mangoo</groupId>
<artifactId>mangooio</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>mangooio-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<prerequisites>
<maven>3.1.0</maven>
</prerequisites>
<properties>
<maven.version>3.3.3</maven.version>
</properties>
<dependencies>
<dependency>
<groupId>io.mangoo</groupId>
<artifactId>mangooio-core</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-exec</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.4</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<phase>process-classes</phase>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-maven-plugin</artifactId>
<version>1.3.8</version>
<executions>
<execution>
<goals>
<goal>descriptor</goal>
</goals>
<phase>generate-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-plugin-plugin
</artifactId>
<versionRange>
[3.4,)
</versionRange>
<goals>
<goal>descriptor</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.plexus
</groupId>
<artifactId>
plexus-maven-plugin
</artifactId>
<versionRange>
[1.3.8,)
</versionRange>
<goals>
<goal>descriptor</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
io.mangoo.build.Runner$1.class
io.mangoo.build.Runner.class
io.mangoo.build.Trigger.class
io.mangoo.build.Watcher$1.class
io.mangoo.build.Watcher$RuleMatch.class
io.mangoo.build.Watcher$RuleType.class
io.mangoo.build.Watcher.class
io.mangoo.maven.MangooMojo.class
META-INF/maven/io.mangoo/mangooio-maven-plugin/plugin-help.xml
META-INF/maven/plugin.xml
META-INF/maven/io.mangoo/mangooio-maven-plugin/pom.xml
META-INF/maven/io.mangoo/mangooio-maven-plugin/pom.properties
|
依赖Jar: |
mangooio-core-1.0.0.jar
/io.mangoo/mangooio-core/1.0.0
查看mangooio-core所有版本文件
zt-exec-1.8.jar
/org.zeroturnaround/zt-exec/1.8
查看zt-exec所有版本文件
maven-core-${maven.version}.jar
/org.apache.maven/maven-core/${maven.version}
查看maven-core所有版本文件
maven-plugin-api-${maven.version}.jar
/org.apache.maven/maven-plugin-api/${maven.version}
查看maven-plugin-api所有版本文件
maven-plugin-annotations-3.4.jar
/org.apache.maven.plugin-tools/maven-plugin-annotations/3.4
查看maven-plugin-annotations所有版本文件
|