| 组织ID: |
com.zenjava |
| 项目ID: |
javafx-maven-plugin |
| 版本: |
1.1 |
| 最后修改时间: |
2019-04-03 14:06:16 |
| 包类型: |
maven-plugin |
| 标题: |
JavaFX Maven Plugin |
| 描述: |
The JavaFX Maven Plugin provides a way to to assemble distributable bundles for JavaFX applications from within
Maven. It provides a wrapper around the JavaFX packaging tools which are provided as part of the JavaFX
installation.
|
| 相关URL: |
https://github.com/zonski/javafx-maven-plugin |
| 大小: |
12.38KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>1.1</version>
</dependency>
|
| Gradle引入代码: |
com.zenjava:javafx-maven-plugin:1.1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2012 Daniel Zwolenski.
Licensed 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>1.1</version>
<packaging>maven-plugin</packaging>
<name>JavaFX Maven Plugin</name>
<url>https://github.com/zonski/javafx-maven-plugin</url>
<description>
The JavaFX Maven Plugin provides a way to to assemble distributable bundles for JavaFX applications from within
Maven. It provides a wrapper around the JavaFX packaging tools which are provided as part of the JavaFX
installation.
</description>
<inceptionYear>2012</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>zonski</id>
<name>Daniel Zwolenski</name>
<email>zonski@gmail.com</email>
<roles>
<role>Original Author</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/zonski/javafx-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com:zonski/javafx-maven-plugin.git</developerConnection>
<url>https://github.com/zonski/javafx-maven-plugin.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/zonski/javafx-maven-plugin/issues</url>
</issueManagement>
<repositories>
<repository>
<id>mojo-executor-repository</id>
<name>Mojo Executor Repository for Maven</name>
<url>http://twdata-m2-repository.googlecode.com/svn/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.3</version>
<configuration>
<goalPrefix>jfx</goalPrefix>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.twdata.maven</groupId>
<artifactId>mojo-executor</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.zenjava.javafx.maven.plugin.JavaFxFixClasspathMojo.class
com.zenjava.javafx.maven.plugin.JavaFxPackagerMojo.class
com.zenjava.javafx.maven.plugin.JfxToolsWrapper.class
META-INF/maven/plugin.xml
META-INF/maven/com.zenjava/javafx-maven-plugin/pom.xml
META-INF/maven/com.zenjava/javafx-maven-plugin/pom.properties
|
| 依赖Jar: |
mojo-executor-2.0.jar
/org.twdata.maven/mojo-executor/2.0
查看mojo-executor所有版本文件
|